blob: 53f81b3b3424cf0e9a39afacfebae5ab433a8a43 [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
Chris Wilsonf6e47882011-03-20 21:09:12 +00001430 if (obj->base.dev->dev_mapping)
1431 unmap_mapping_range(obj->base.dev->dev_mapping,
David Herrmann0de23972013-07-24 21:07:52 +02001432 (loff_t)drm_vma_node_offset_addr(&obj->base.vma_node),
Chris Wilsonf6e47882011-03-20 21:09:12 +00001433 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001434
Chris Wilson6299f992010-11-24 12:23:44 +00001435 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001436}
1437
Imre Deak0fa87792013-01-07 21:47:35 +02001438uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001439i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001440{
Chris Wilsone28f8712011-07-18 13:11:49 -07001441 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001442
1443 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001444 tiling_mode == I915_TILING_NONE)
1445 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001446
1447 /* Previous chips need a power-of-two fence region when tiling */
1448 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001449 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001450 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001451 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001452
Chris Wilsone28f8712011-07-18 13:11:49 -07001453 while (gtt_size < size)
1454 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001455
Chris Wilsone28f8712011-07-18 13:11:49 -07001456 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001457}
1458
Jesse Barnesde151cf2008-11-12 10:03:55 -08001459/**
1460 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1461 * @obj: object to check
1462 *
1463 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001464 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001465 */
Imre Deakd8651102013-01-07 21:47:33 +02001466uint32_t
1467i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1468 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001469{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001470 /*
1471 * Minimum alignment is 4k (GTT page size), but might be greater
1472 * if a fence register is needed for the object.
1473 */
Imre Deakd8651102013-01-07 21:47:33 +02001474 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001475 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001476 return 4096;
1477
1478 /*
1479 * Previous chips need to be aligned to the size of the smallest
1480 * fence register that can contain the object.
1481 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001482 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001483}
1484
Chris Wilsond8cb5082012-08-11 15:41:03 +01001485static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1486{
1487 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1488 int ret;
1489
David Herrmann0de23972013-07-24 21:07:52 +02001490 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001491 return 0;
1492
Daniel Vetterda494d72012-12-20 15:11:16 +01001493 dev_priv->mm.shrinker_no_lock_stealing = true;
1494
Chris Wilsond8cb5082012-08-11 15:41:03 +01001495 ret = drm_gem_create_mmap_offset(&obj->base);
1496 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001497 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001498
1499 /* Badly fragmented mmap space? The only way we can recover
1500 * space is by destroying unwanted objects. We can't randomly release
1501 * mmap_offsets as userspace expects them to be persistent for the
1502 * lifetime of the objects. The closest we can is to release the
1503 * offsets on purgeable objects by truncating it and marking it purged,
1504 * which prevents userspace from ever using that object again.
1505 */
1506 i915_gem_purge(dev_priv, obj->base.size >> PAGE_SHIFT);
1507 ret = drm_gem_create_mmap_offset(&obj->base);
1508 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001509 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001510
1511 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001512 ret = drm_gem_create_mmap_offset(&obj->base);
1513out:
1514 dev_priv->mm.shrinker_no_lock_stealing = false;
1515
1516 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001517}
1518
1519static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1520{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001521 drm_gem_free_mmap_offset(&obj->base);
1522}
1523
Jesse Barnesde151cf2008-11-12 10:03:55 -08001524int
Dave Airlieff72145b2011-02-07 12:16:14 +10001525i915_gem_mmap_gtt(struct drm_file *file,
1526 struct drm_device *dev,
1527 uint32_t handle,
1528 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001529{
Chris Wilsonda761a62010-10-27 17:37:08 +01001530 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001531 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001532 int ret;
1533
Chris Wilson76c1dec2010-09-25 11:22:51 +01001534 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001535 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001536 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001537
Dave Airlieff72145b2011-02-07 12:16:14 +10001538 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001539 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001540 ret = -ENOENT;
1541 goto unlock;
1542 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001543
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001544 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001545 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001546 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001547 }
1548
Chris Wilson05394f32010-11-08 19:18:58 +00001549 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001550 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001551 ret = -EINVAL;
1552 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001553 }
1554
Chris Wilsond8cb5082012-08-11 15:41:03 +01001555 ret = i915_gem_object_create_mmap_offset(obj);
1556 if (ret)
1557 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001558
David Herrmann0de23972013-07-24 21:07:52 +02001559 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001560
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001561out:
Chris Wilson05394f32010-11-08 19:18:58 +00001562 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001563unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001564 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001565 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001566}
1567
Dave Airlieff72145b2011-02-07 12:16:14 +10001568/**
1569 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1570 * @dev: DRM device
1571 * @data: GTT mapping ioctl data
1572 * @file: GEM object info
1573 *
1574 * Simply returns the fake offset to userspace so it can mmap it.
1575 * The mmap call will end up in drm_gem_mmap(), which will set things
1576 * up so we can get faults in the handler above.
1577 *
1578 * The fault handler will take care of binding the object into the GTT
1579 * (since it may have been evicted to make room for something), allocating
1580 * a fence register, and mapping the appropriate aperture address into
1581 * userspace.
1582 */
1583int
1584i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1585 struct drm_file *file)
1586{
1587 struct drm_i915_gem_mmap_gtt *args = data;
1588
Dave Airlieff72145b2011-02-07 12:16:14 +10001589 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1590}
1591
Daniel Vetter225067e2012-08-20 10:23:20 +02001592/* Immediately discard the backing storage */
1593static void
1594i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001595{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001596 struct inode *inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001597
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001598 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001599
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001600 if (obj->base.filp == NULL)
1601 return;
1602
Daniel Vetter225067e2012-08-20 10:23:20 +02001603 /* Our goal here is to return as much of the memory as
1604 * is possible back to the system as we are called from OOM.
1605 * To do this we must instruct the shmfs to drop all of its
1606 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001607 */
Al Viro496ad9a2013-01-23 17:07:38 -05001608 inode = file_inode(obj->base.filp);
Daniel Vetter225067e2012-08-20 10:23:20 +02001609 shmem_truncate_range(inode, 0, (loff_t)-1);
Hugh Dickins5949eac2011-06-27 16:18:18 -07001610
Daniel Vetter225067e2012-08-20 10:23:20 +02001611 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001612}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001613
Daniel Vetter225067e2012-08-20 10:23:20 +02001614static inline int
1615i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1616{
1617 return obj->madv == I915_MADV_DONTNEED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001618}
1619
Chris Wilson5cdf5882010-09-27 15:51:07 +01001620static void
Chris Wilson05394f32010-11-08 19:18:58 +00001621i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001622{
Imre Deak90797e62013-02-18 19:28:03 +02001623 struct sg_page_iter sg_iter;
1624 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001625
Chris Wilson05394f32010-11-08 19:18:58 +00001626 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001627
Chris Wilson6c085a72012-08-20 11:40:46 +02001628 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1629 if (ret) {
1630 /* In the event of a disaster, abandon all caches and
1631 * hope for the best.
1632 */
1633 WARN_ON(ret != -EIO);
1634 i915_gem_clflush_object(obj);
1635 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1636 }
1637
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001638 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001639 i915_gem_object_save_bit_17_swizzle(obj);
1640
Chris Wilson05394f32010-11-08 19:18:58 +00001641 if (obj->madv == I915_MADV_DONTNEED)
1642 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001643
Imre Deak90797e62013-02-18 19:28:03 +02001644 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001645 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001646
Chris Wilson05394f32010-11-08 19:18:58 +00001647 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001648 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001649
Chris Wilson05394f32010-11-08 19:18:58 +00001650 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001651 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001652
Chris Wilson9da3da62012-06-01 15:20:22 +01001653 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001654 }
Chris Wilson05394f32010-11-08 19:18:58 +00001655 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001656
Chris Wilson9da3da62012-06-01 15:20:22 +01001657 sg_free_table(obj->pages);
1658 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001659}
1660
Chris Wilsondd624af2013-01-15 12:39:35 +00001661int
Chris Wilson37e680a2012-06-07 15:38:42 +01001662i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1663{
1664 const struct drm_i915_gem_object_ops *ops = obj->ops;
1665
Chris Wilson2f745ad2012-09-04 21:02:58 +01001666 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01001667 return 0;
1668
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001669 BUG_ON(i915_gem_obj_ggtt_bound(obj));
Chris Wilson37e680a2012-06-07 15:38:42 +01001670
Chris Wilsona5570172012-09-04 21:02:54 +01001671 if (obj->pages_pin_count)
1672 return -EBUSY;
1673
Chris Wilsona2165e32012-12-03 11:49:00 +00001674 /* ->put_pages might need to allocate memory for the bit17 swizzle
1675 * array, hence protect them from being reaped by removing them from gtt
1676 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07001677 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00001678
Chris Wilson37e680a2012-06-07 15:38:42 +01001679 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001680 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02001681
Chris Wilson6c085a72012-08-20 11:40:46 +02001682 if (i915_gem_object_is_purgeable(obj))
1683 i915_gem_object_truncate(obj);
1684
1685 return 0;
1686}
1687
1688static long
Daniel Vetter93927ca2013-01-10 18:03:00 +01001689__i915_gem_shrink(struct drm_i915_private *dev_priv, long target,
1690 bool purgeable_only)
Chris Wilson6c085a72012-08-20 11:40:46 +02001691{
1692 struct drm_i915_gem_object *obj, *next;
1693 long count = 0;
1694
1695 list_for_each_entry_safe(obj, next,
1696 &dev_priv->mm.unbound_list,
Ben Widawsky35c20a62013-05-31 11:28:48 -07001697 global_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001698 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001699 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001700 count += obj->base.size >> PAGE_SHIFT;
1701 if (count >= target)
1702 return count;
1703 }
1704 }
1705
1706 list_for_each_entry_safe(obj, next,
1707 &dev_priv->mm.inactive_list,
1708 mm_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001709 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson6c085a72012-08-20 11:40:46 +02001710 i915_gem_object_unbind(obj) == 0 &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001711 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001712 count += obj->base.size >> PAGE_SHIFT;
1713 if (count >= target)
1714 return count;
1715 }
1716 }
1717
1718 return count;
1719}
1720
Daniel Vetter93927ca2013-01-10 18:03:00 +01001721static long
1722i915_gem_purge(struct drm_i915_private *dev_priv, long target)
1723{
1724 return __i915_gem_shrink(dev_priv, target, true);
1725}
1726
Chris Wilson6c085a72012-08-20 11:40:46 +02001727static void
1728i915_gem_shrink_all(struct drm_i915_private *dev_priv)
1729{
1730 struct drm_i915_gem_object *obj, *next;
1731
1732 i915_gem_evict_everything(dev_priv->dev);
1733
Ben Widawsky35c20a62013-05-31 11:28:48 -07001734 list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
1735 global_list)
Chris Wilson37e680a2012-06-07 15:38:42 +01001736 i915_gem_object_put_pages(obj);
Daniel Vetter225067e2012-08-20 10:23:20 +02001737}
1738
Chris Wilson37e680a2012-06-07 15:38:42 +01001739static int
Chris Wilson6c085a72012-08-20 11:40:46 +02001740i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001741{
Chris Wilson6c085a72012-08-20 11:40:46 +02001742 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001743 int page_count, i;
1744 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01001745 struct sg_table *st;
1746 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02001747 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07001748 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02001749 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02001750 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07001751
Chris Wilson6c085a72012-08-20 11:40:46 +02001752 /* Assert that the object is not currently in any GPU domain. As it
1753 * wasn't in the GTT, there shouldn't be any way it could have been in
1754 * a GPU cache
1755 */
1756 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
1757 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
1758
Chris Wilson9da3da62012-06-01 15:20:22 +01001759 st = kmalloc(sizeof(*st), GFP_KERNEL);
1760 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001761 return -ENOMEM;
1762
Chris Wilson9da3da62012-06-01 15:20:22 +01001763 page_count = obj->base.size / PAGE_SIZE;
1764 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
1765 sg_free_table(st);
1766 kfree(st);
1767 return -ENOMEM;
1768 }
1769
1770 /* Get the list of pages out of our struct file. They'll be pinned
1771 * at this point until we release them.
1772 *
1773 * Fail silently without starting the shrinker
1774 */
Al Viro496ad9a2013-01-23 17:07:38 -05001775 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02001776 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08001777 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001778 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02001779 sg = st->sgl;
1780 st->nents = 0;
1781 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001782 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1783 if (IS_ERR(page)) {
1784 i915_gem_purge(dev_priv, page_count);
1785 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1786 }
1787 if (IS_ERR(page)) {
1788 /* We've tried hard to allocate the memory by reaping
1789 * our own buffer, now let the real VM do its job and
1790 * go down in flames if truly OOM.
1791 */
Linus Torvaldscaf49192012-12-10 10:51:16 -08001792 gfp &= ~(__GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD);
Chris Wilson6c085a72012-08-20 11:40:46 +02001793 gfp |= __GFP_IO | __GFP_WAIT;
1794
1795 i915_gem_shrink_all(dev_priv);
1796 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1797 if (IS_ERR(page))
1798 goto err_pages;
1799
Linus Torvaldscaf49192012-12-10 10:51:16 -08001800 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001801 gfp &= ~(__GFP_IO | __GFP_WAIT);
1802 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001803#ifdef CONFIG_SWIOTLB
1804 if (swiotlb_nr_tbl()) {
1805 st->nents++;
1806 sg_set_page(sg, page, PAGE_SIZE, 0);
1807 sg = sg_next(sg);
1808 continue;
1809 }
1810#endif
Imre Deak90797e62013-02-18 19:28:03 +02001811 if (!i || page_to_pfn(page) != last_pfn + 1) {
1812 if (i)
1813 sg = sg_next(sg);
1814 st->nents++;
1815 sg_set_page(sg, page, PAGE_SIZE, 0);
1816 } else {
1817 sg->length += PAGE_SIZE;
1818 }
1819 last_pfn = page_to_pfn(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001820 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001821#ifdef CONFIG_SWIOTLB
1822 if (!swiotlb_nr_tbl())
1823#endif
1824 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01001825 obj->pages = st;
1826
Eric Anholt673a3942008-07-30 12:06:12 -07001827 if (i915_gem_object_needs_bit17_swizzle(obj))
1828 i915_gem_object_do_bit_17_swizzle(obj);
1829
1830 return 0;
1831
1832err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02001833 sg_mark_end(sg);
1834 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02001835 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01001836 sg_free_table(st);
1837 kfree(st);
Eric Anholt673a3942008-07-30 12:06:12 -07001838 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001839}
1840
Chris Wilson37e680a2012-06-07 15:38:42 +01001841/* Ensure that the associated pages are gathered from the backing storage
1842 * and pinned into our object. i915_gem_object_get_pages() may be called
1843 * multiple times before they are released by a single call to
1844 * i915_gem_object_put_pages() - once the pages are no longer referenced
1845 * either as a result of memory pressure (reaping pages under the shrinker)
1846 * or as the object is itself released.
1847 */
1848int
1849i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
1850{
1851 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1852 const struct drm_i915_gem_object_ops *ops = obj->ops;
1853 int ret;
1854
Chris Wilson2f745ad2012-09-04 21:02:58 +01001855 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01001856 return 0;
1857
Chris Wilson43e28f02013-01-08 10:53:09 +00001858 if (obj->madv != I915_MADV_WILLNEED) {
1859 DRM_ERROR("Attempting to obtain a purgeable object\n");
1860 return -EINVAL;
1861 }
1862
Chris Wilsona5570172012-09-04 21:02:54 +01001863 BUG_ON(obj->pages_pin_count);
1864
Chris Wilson37e680a2012-06-07 15:38:42 +01001865 ret = ops->get_pages(obj);
1866 if (ret)
1867 return ret;
1868
Ben Widawsky35c20a62013-05-31 11:28:48 -07001869 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01001870 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001871}
1872
Chris Wilson54cf91d2010-11-25 18:00:26 +00001873void
Chris Wilson05394f32010-11-08 19:18:58 +00001874i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson9d7730912012-11-27 16:22:52 +00001875 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001876{
Chris Wilson05394f32010-11-08 19:18:58 +00001877 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001878 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9d7730912012-11-27 16:22:52 +00001879 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001880
Zou Nan hai852835f2010-05-21 09:08:56 +08001881 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01001882 if (obj->ring != ring && obj->last_write_seqno) {
1883 /* Keep the seqno relative to the current ring */
1884 obj->last_write_seqno = seqno;
1885 }
Chris Wilson05394f32010-11-08 19:18:58 +00001886 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001887
1888 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001889 if (!obj->active) {
1890 drm_gem_object_reference(&obj->base);
1891 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001892 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001893
Eric Anholt673a3942008-07-30 12:06:12 -07001894 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001895 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1896 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001897
Chris Wilson0201f1e2012-07-20 12:41:01 +01001898 obj->last_read_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001899
Chris Wilsoncaea7472010-11-12 13:53:37 +00001900 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001901 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001902
Chris Wilson7dd49062012-03-21 10:48:18 +00001903 /* Bump MRU to take account of the delayed flush */
1904 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1905 struct drm_i915_fence_reg *reg;
1906
1907 reg = &dev_priv->fence_regs[obj->fence_reg];
1908 list_move_tail(&reg->lru_list,
1909 &dev_priv->mm.fence_list);
1910 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001911 }
1912}
1913
1914static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00001915i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1916{
1917 struct drm_device *dev = obj->base.dev;
1918 struct drm_i915_private *dev_priv = dev->dev_private;
1919
Chris Wilson65ce3022012-07-20 12:41:02 +01001920 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001921 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01001922
Chris Wilsoncaea7472010-11-12 13:53:37 +00001923 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1924
Chris Wilson65ce3022012-07-20 12:41:02 +01001925 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001926 obj->ring = NULL;
1927
Chris Wilson65ce3022012-07-20 12:41:02 +01001928 obj->last_read_seqno = 0;
1929 obj->last_write_seqno = 0;
1930 obj->base.write_domain = 0;
1931
1932 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001933 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001934
1935 obj->active = 0;
1936 drm_gem_object_unreference(&obj->base);
1937
1938 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001939}
Eric Anholt673a3942008-07-30 12:06:12 -07001940
Chris Wilson9d7730912012-11-27 16:22:52 +00001941static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001942i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001943{
Chris Wilson9d7730912012-11-27 16:22:52 +00001944 struct drm_i915_private *dev_priv = dev->dev_private;
1945 struct intel_ring_buffer *ring;
1946 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001947
Chris Wilson107f27a52012-12-10 13:56:17 +02001948 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00001949 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02001950 ret = intel_ring_idle(ring);
1951 if (ret)
1952 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00001953 }
Chris Wilson9d7730912012-11-27 16:22:52 +00001954 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02001955
1956 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00001957 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001958 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001959
Chris Wilson9d7730912012-11-27 16:22:52 +00001960 for (j = 0; j < ARRAY_SIZE(ring->sync_seqno); j++)
1961 ring->sync_seqno[j] = 0;
1962 }
1963
1964 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001965}
1966
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001967int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
1968{
1969 struct drm_i915_private *dev_priv = dev->dev_private;
1970 int ret;
1971
1972 if (seqno == 0)
1973 return -EINVAL;
1974
1975 /* HWS page needs to be set less than what we
1976 * will inject to ring
1977 */
1978 ret = i915_gem_init_seqno(dev, seqno - 1);
1979 if (ret)
1980 return ret;
1981
1982 /* Carefully set the last_seqno value so that wrap
1983 * detection still works
1984 */
1985 dev_priv->next_seqno = seqno;
1986 dev_priv->last_seqno = seqno - 1;
1987 if (dev_priv->last_seqno == 0)
1988 dev_priv->last_seqno--;
1989
1990 return 0;
1991}
1992
Chris Wilson9d7730912012-11-27 16:22:52 +00001993int
1994i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001995{
Chris Wilson9d7730912012-11-27 16:22:52 +00001996 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001997
Chris Wilson9d7730912012-11-27 16:22:52 +00001998 /* reserve 0 for non-seqno */
1999 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002000 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002001 if (ret)
2002 return ret;
2003
2004 dev_priv->next_seqno = 1;
2005 }
2006
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002007 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002008 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002009}
2010
Mika Kuoppala0025c072013-06-12 12:35:30 +03002011int __i915_add_request(struct intel_ring_buffer *ring,
2012 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002013 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002014 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002015{
Chris Wilsondb53a302011-02-03 11:57:46 +00002016 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002017 struct drm_i915_gem_request *request;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002018 u32 request_ring_position, request_start;
Eric Anholt673a3942008-07-30 12:06:12 -07002019 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01002020 int ret;
2021
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002022 request_start = intel_ring_get_tail(ring);
Daniel Vettercc889e02012-06-13 20:45:19 +02002023 /*
2024 * Emit any outstanding flushes - execbuf can fail to emit the flush
2025 * after having emitted the batchbuffer command. Hence we need to fix
2026 * things up similar to emitting the lazy request. The difference here
2027 * is that the flush _must_ happen before the next request, no matter
2028 * what.
2029 */
Chris Wilsona7b97612012-07-20 12:41:08 +01002030 ret = intel_ring_flush_all_caches(ring);
2031 if (ret)
2032 return ret;
Daniel Vettercc889e02012-06-13 20:45:19 +02002033
Chris Wilsonacb868d2012-09-26 13:47:30 +01002034 request = kmalloc(sizeof(*request), GFP_KERNEL);
2035 if (request == NULL)
2036 return -ENOMEM;
Daniel Vettercc889e02012-06-13 20:45:19 +02002037
Eric Anholt673a3942008-07-30 12:06:12 -07002038
Chris Wilsona71d8d92012-02-15 11:25:36 +00002039 /* Record the position of the start of the request so that
2040 * should we detect the updated seqno part-way through the
2041 * GPU processing the request, we never over-estimate the
2042 * position of the head.
2043 */
2044 request_ring_position = intel_ring_get_tail(ring);
2045
Chris Wilson9d7730912012-11-27 16:22:52 +00002046 ret = ring->add_request(ring);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002047 if (ret) {
2048 kfree(request);
2049 return ret;
2050 }
Eric Anholt673a3942008-07-30 12:06:12 -07002051
Chris Wilson9d7730912012-11-27 16:22:52 +00002052 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002053 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002054 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002055 request->tail = request_ring_position;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002056 request->ctx = ring->last_context;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002057 request->batch_obj = obj;
2058
2059 /* Whilst this request exists, batch_obj will be on the
2060 * active_list, and so will hold the active reference. Only when this
2061 * request is retired will the the batch_obj be moved onto the
2062 * inactive_list and lose its active reference. Hence we do not need
2063 * to explicitly hold another reference here.
2064 */
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002065
2066 if (request->ctx)
2067 i915_gem_context_reference(request->ctx);
2068
Eric Anholt673a3942008-07-30 12:06:12 -07002069 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002070 was_empty = list_empty(&ring->request_list);
2071 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002072 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002073
Chris Wilsondb53a302011-02-03 11:57:46 +00002074 if (file) {
2075 struct drm_i915_file_private *file_priv = file->driver_priv;
2076
Chris Wilson1c255952010-09-26 11:03:27 +01002077 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002078 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002079 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002080 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002081 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002082 }
Eric Anholt673a3942008-07-30 12:06:12 -07002083
Chris Wilson9d7730912012-11-27 16:22:52 +00002084 trace_i915_gem_request_add(ring, request->seqno);
Daniel Vetter5391d0c2012-01-25 14:03:57 +01002085 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00002086
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002087 if (!dev_priv->ums.mm_suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002088 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +01002089 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +01002090 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002091 }
Chris Wilsonf047e392012-07-21 12:31:41 +01002092 if (was_empty) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01002093 queue_delayed_work(dev_priv->wq,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002094 &dev_priv->mm.retire_work,
2095 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002096 intel_mark_busy(dev_priv->dev);
2097 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002098 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002099
Chris Wilsonacb868d2012-09-26 13:47:30 +01002100 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002101 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002102 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002103}
2104
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002105static inline void
2106i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002107{
Chris Wilson1c255952010-09-26 11:03:27 +01002108 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002109
Chris Wilson1c255952010-09-26 11:03:27 +01002110 if (!file_priv)
2111 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002112
Chris Wilson1c255952010-09-26 11:03:27 +01002113 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00002114 if (request->file_priv) {
2115 list_del(&request->client_list);
2116 request->file_priv = NULL;
2117 }
Chris Wilson1c255952010-09-26 11:03:27 +01002118 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002119}
2120
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002121static bool i915_head_inside_object(u32 acthd, struct drm_i915_gem_object *obj)
2122{
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002123 if (acthd >= i915_gem_obj_ggtt_offset(obj) &&
2124 acthd < i915_gem_obj_ggtt_offset(obj) + obj->base.size)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002125 return true;
2126
2127 return false;
2128}
2129
2130static bool i915_head_inside_request(const u32 acthd_unmasked,
2131 const u32 request_start,
2132 const u32 request_end)
2133{
2134 const u32 acthd = acthd_unmasked & HEAD_ADDR;
2135
2136 if (request_start < request_end) {
2137 if (acthd >= request_start && acthd < request_end)
2138 return true;
2139 } else if (request_start > request_end) {
2140 if (acthd >= request_start || acthd < request_end)
2141 return true;
2142 }
2143
2144 return false;
2145}
2146
2147static bool i915_request_guilty(struct drm_i915_gem_request *request,
2148 const u32 acthd, bool *inside)
2149{
2150 /* There is a possibility that unmasked head address
2151 * pointing inside the ring, matches the batch_obj address range.
2152 * However this is extremely unlikely.
2153 */
2154
2155 if (request->batch_obj) {
2156 if (i915_head_inside_object(acthd, request->batch_obj)) {
2157 *inside = true;
2158 return true;
2159 }
2160 }
2161
2162 if (i915_head_inside_request(acthd, request->head, request->tail)) {
2163 *inside = false;
2164 return true;
2165 }
2166
2167 return false;
2168}
2169
2170static void i915_set_reset_status(struct intel_ring_buffer *ring,
2171 struct drm_i915_gem_request *request,
2172 u32 acthd)
2173{
2174 struct i915_ctx_hang_stats *hs = NULL;
2175 bool inside, guilty;
2176
2177 /* Innocent until proven guilty */
2178 guilty = false;
2179
2180 if (ring->hangcheck.action != wait &&
2181 i915_request_guilty(request, acthd, &inside)) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002182 DRM_ERROR("%s hung %s bo (0x%lx ctx %d) at 0x%x\n",
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002183 ring->name,
2184 inside ? "inside" : "flushing",
2185 request->batch_obj ?
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002186 i915_gem_obj_ggtt_offset(request->batch_obj) : 0,
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002187 request->ctx ? request->ctx->id : 0,
2188 acthd);
2189
2190 guilty = true;
2191 }
2192
2193 /* If contexts are disabled or this is the default context, use
2194 * file_priv->reset_state
2195 */
2196 if (request->ctx && request->ctx->id != DEFAULT_CONTEXT_ID)
2197 hs = &request->ctx->hang_stats;
2198 else if (request->file_priv)
2199 hs = &request->file_priv->hang_stats;
2200
2201 if (hs) {
2202 if (guilty)
2203 hs->batch_active++;
2204 else
2205 hs->batch_pending++;
2206 }
2207}
2208
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002209static void i915_gem_free_request(struct drm_i915_gem_request *request)
2210{
2211 list_del(&request->list);
2212 i915_gem_request_remove_from_client(request);
2213
2214 if (request->ctx)
2215 i915_gem_context_unreference(request->ctx);
2216
2217 kfree(request);
2218}
2219
Chris Wilsondfaae392010-09-22 10:31:52 +01002220static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
2221 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002222{
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002223 u32 completed_seqno;
2224 u32 acthd;
2225
2226 acthd = intel_ring_get_active_head(ring);
2227 completed_seqno = ring->get_seqno(ring, false);
2228
Chris Wilsondfaae392010-09-22 10:31:52 +01002229 while (!list_empty(&ring->request_list)) {
2230 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01002231
Chris Wilsondfaae392010-09-22 10:31:52 +01002232 request = list_first_entry(&ring->request_list,
2233 struct drm_i915_gem_request,
2234 list);
2235
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002236 if (request->seqno > completed_seqno)
2237 i915_set_reset_status(ring, request, acthd);
2238
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002239 i915_gem_free_request(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01002240 }
2241
2242 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002243 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002244
Chris Wilson05394f32010-11-08 19:18:58 +00002245 obj = list_first_entry(&ring->active_list,
2246 struct drm_i915_gem_object,
2247 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002248
Chris Wilson05394f32010-11-08 19:18:58 +00002249 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002250 }
Eric Anholt673a3942008-07-30 12:06:12 -07002251}
2252
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002253void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002254{
2255 struct drm_i915_private *dev_priv = dev->dev_private;
2256 int i;
2257
Daniel Vetter4b9de732011-10-09 21:52:02 +02002258 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002259 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002260 i915_gem_write_fence(dev, i, reg->obj);
Chris Wilson312817a2010-11-22 11:50:11 +00002261 }
2262}
2263
Chris Wilson069efc12010-09-30 16:53:18 +01002264void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002265{
Chris Wilsondfaae392010-09-22 10:31:52 +01002266 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002267 struct drm_i915_gem_object *obj;
Chris Wilsonb4519512012-05-11 14:29:30 +01002268 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002269 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002270
Chris Wilsonb4519512012-05-11 14:29:30 +01002271 for_each_ring(ring, dev_priv, i)
2272 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002273
Chris Wilsondfaae392010-09-22 10:31:52 +01002274 /* Move everything out of the GPU domains to ensure we do any
2275 * necessary invalidation upon reuse.
2276 */
Chris Wilson05394f32010-11-08 19:18:58 +00002277 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01002278 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01002279 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01002280 {
Chris Wilson05394f32010-11-08 19:18:58 +00002281 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01002282 }
Chris Wilson069efc12010-09-30 16:53:18 +01002283
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002284 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002285}
2286
2287/**
2288 * This function clears the request list as sequence numbers are passed.
2289 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00002290void
Chris Wilsondb53a302011-02-03 11:57:46 +00002291i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002292{
Eric Anholt673a3942008-07-30 12:06:12 -07002293 uint32_t seqno;
2294
Chris Wilsondb53a302011-02-03 11:57:46 +00002295 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002296 return;
2297
Chris Wilsondb53a302011-02-03 11:57:46 +00002298 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002299
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002300 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002301
Zou Nan hai852835f2010-05-21 09:08:56 +08002302 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002303 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002304
Zou Nan hai852835f2010-05-21 09:08:56 +08002305 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002306 struct drm_i915_gem_request,
2307 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002308
Chris Wilsondfaae392010-09-22 10:31:52 +01002309 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002310 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002311
Chris Wilsondb53a302011-02-03 11:57:46 +00002312 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002313 /* We know the GPU must have read the request to have
2314 * sent us the seqno + interrupt, so use the position
2315 * of tail of the request to update the last known position
2316 * of the GPU head.
2317 */
2318 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002319
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002320 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002321 }
2322
2323 /* Move any buffers on the active list that are no longer referenced
2324 * by the ringbuffer to the flushing/inactive lists as appropriate.
2325 */
2326 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002327 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002328
Akshay Joshi0206e352011-08-16 15:34:10 -04002329 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002330 struct drm_i915_gem_object,
2331 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002332
Chris Wilson0201f1e2012-07-20 12:41:01 +01002333 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002334 break;
2335
Chris Wilson65ce3022012-07-20 12:41:02 +01002336 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002337 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002338
Chris Wilsondb53a302011-02-03 11:57:46 +00002339 if (unlikely(ring->trace_irq_seqno &&
2340 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002341 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002342 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002343 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002344
Chris Wilsondb53a302011-02-03 11:57:46 +00002345 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002346}
2347
2348void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002349i915_gem_retire_requests(struct drm_device *dev)
2350{
2351 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002352 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002353 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002354
Chris Wilsonb4519512012-05-11 14:29:30 +01002355 for_each_ring(ring, dev_priv, i)
2356 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002357}
2358
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002359static void
Eric Anholt673a3942008-07-30 12:06:12 -07002360i915_gem_retire_work_handler(struct work_struct *work)
2361{
2362 drm_i915_private_t *dev_priv;
2363 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01002364 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00002365 bool idle;
2366 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002367
2368 dev_priv = container_of(work, drm_i915_private_t,
2369 mm.retire_work.work);
2370 dev = dev_priv->dev;
2371
Chris Wilson891b48c2010-09-29 12:26:37 +01002372 /* Come back later if the device is busy... */
2373 if (!mutex_trylock(&dev->struct_mutex)) {
Chris Wilsonbcb45082012-10-05 17:02:57 +01002374 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2375 round_jiffies_up_relative(HZ));
Chris Wilson891b48c2010-09-29 12:26:37 +01002376 return;
2377 }
2378
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002379 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002380
Chris Wilson0a587052011-01-09 21:05:44 +00002381 /* Send a periodic flush down the ring so we don't hold onto GEM
2382 * objects indefinitely.
2383 */
2384 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002385 for_each_ring(ring, dev_priv, i) {
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002386 if (ring->gpu_caches_dirty)
Mika Kuoppala0025c072013-06-12 12:35:30 +03002387 i915_add_request(ring, NULL);
Chris Wilson0a587052011-01-09 21:05:44 +00002388
2389 idle &= list_empty(&ring->request_list);
2390 }
2391
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002392 if (!dev_priv->ums.mm_suspended && !idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002393 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2394 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002395 if (idle)
2396 intel_mark_idle(dev);
Chris Wilson0a587052011-01-09 21:05:44 +00002397
Eric Anholt673a3942008-07-30 12:06:12 -07002398 mutex_unlock(&dev->struct_mutex);
2399}
2400
Ben Widawsky5816d642012-04-11 11:18:19 -07002401/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002402 * Ensures that an object will eventually get non-busy by flushing any required
2403 * write domains, emitting any outstanding lazy request and retiring and
2404 * completed requests.
2405 */
2406static int
2407i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2408{
2409 int ret;
2410
2411 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002412 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002413 if (ret)
2414 return ret;
2415
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002416 i915_gem_retire_requests_ring(obj->ring);
2417 }
2418
2419 return 0;
2420}
2421
2422/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002423 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2424 * @DRM_IOCTL_ARGS: standard ioctl arguments
2425 *
2426 * Returns 0 if successful, else an error is returned with the remaining time in
2427 * the timeout parameter.
2428 * -ETIME: object is still busy after timeout
2429 * -ERESTARTSYS: signal interrupted the wait
2430 * -ENONENT: object doesn't exist
2431 * Also possible, but rare:
2432 * -EAGAIN: GPU wedged
2433 * -ENOMEM: damn
2434 * -ENODEV: Internal IRQ fail
2435 * -E?: The add request failed
2436 *
2437 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2438 * non-zero timeout parameter the wait ioctl will wait for the given number of
2439 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2440 * without holding struct_mutex the object may become re-busied before this
2441 * function completes. A similar but shorter * race condition exists in the busy
2442 * ioctl
2443 */
2444int
2445i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2446{
Daniel Vetterf69061b2012-12-06 09:01:42 +01002447 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002448 struct drm_i915_gem_wait *args = data;
2449 struct drm_i915_gem_object *obj;
2450 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002451 struct timespec timeout_stack, *timeout = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002452 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002453 u32 seqno = 0;
2454 int ret = 0;
2455
Ben Widawskyeac1f142012-06-05 15:24:24 -07002456 if (args->timeout_ns >= 0) {
2457 timeout_stack = ns_to_timespec(args->timeout_ns);
2458 timeout = &timeout_stack;
2459 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002460
2461 ret = i915_mutex_lock_interruptible(dev);
2462 if (ret)
2463 return ret;
2464
2465 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2466 if (&obj->base == NULL) {
2467 mutex_unlock(&dev->struct_mutex);
2468 return -ENOENT;
2469 }
2470
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002471 /* Need to make sure the object gets inactive eventually. */
2472 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002473 if (ret)
2474 goto out;
2475
2476 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002477 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002478 ring = obj->ring;
2479 }
2480
2481 if (seqno == 0)
2482 goto out;
2483
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002484 /* Do this after OLR check to make sure we make forward progress polling
2485 * on this IOCTL with a 0 timeout (like busy ioctl)
2486 */
2487 if (!args->timeout_ns) {
2488 ret = -ETIME;
2489 goto out;
2490 }
2491
2492 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002493 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002494 mutex_unlock(&dev->struct_mutex);
2495
Daniel Vetterf69061b2012-12-06 09:01:42 +01002496 ret = __wait_seqno(ring, seqno, reset_counter, true, timeout);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03002497 if (timeout)
Ben Widawskyeac1f142012-06-05 15:24:24 -07002498 args->timeout_ns = timespec_to_ns(timeout);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002499 return ret;
2500
2501out:
2502 drm_gem_object_unreference(&obj->base);
2503 mutex_unlock(&dev->struct_mutex);
2504 return ret;
2505}
2506
2507/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002508 * i915_gem_object_sync - sync an object to a ring.
2509 *
2510 * @obj: object which may be in use on another ring.
2511 * @to: ring we wish to use the object on. May be NULL.
2512 *
2513 * This code is meant to abstract object synchronization with the GPU.
2514 * Calling with NULL implies synchronizing the object with the CPU
2515 * rather than a particular GPU ring.
2516 *
2517 * Returns 0 if successful, else propagates up the lower layer error.
2518 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002519int
2520i915_gem_object_sync(struct drm_i915_gem_object *obj,
2521 struct intel_ring_buffer *to)
2522{
2523 struct intel_ring_buffer *from = obj->ring;
2524 u32 seqno;
2525 int ret, idx;
2526
2527 if (from == NULL || to == from)
2528 return 0;
2529
Ben Widawsky5816d642012-04-11 11:18:19 -07002530 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002531 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002532
2533 idx = intel_ring_sync_index(from, to);
2534
Chris Wilson0201f1e2012-07-20 12:41:01 +01002535 seqno = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002536 if (seqno <= from->sync_seqno[idx])
2537 return 0;
2538
Ben Widawskyb4aca012012-04-25 20:50:12 -07002539 ret = i915_gem_check_olr(obj->ring, seqno);
2540 if (ret)
2541 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002542
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002543 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002544 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002545 /* We use last_read_seqno because sync_to()
2546 * might have just caused seqno wrap under
2547 * the radar.
2548 */
2549 from->sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002550
Ben Widawskye3a5a222012-04-11 11:18:20 -07002551 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002552}
2553
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002554static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2555{
2556 u32 old_write_domain, old_read_domains;
2557
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002558 /* Force a pagefault for domain tracking on next user access */
2559 i915_gem_release_mmap(obj);
2560
Keith Packardb97c3d92011-06-24 21:02:59 -07002561 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2562 return;
2563
Chris Wilson97c809fd2012-10-09 19:24:38 +01002564 /* Wait for any direct GTT access to complete */
2565 mb();
2566
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002567 old_read_domains = obj->base.read_domains;
2568 old_write_domain = obj->base.write_domain;
2569
2570 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2571 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2572
2573 trace_i915_gem_object_change_domain(obj,
2574 old_read_domains,
2575 old_write_domain);
2576}
2577
Eric Anholt673a3942008-07-30 12:06:12 -07002578/**
2579 * Unbinds an object from the GTT aperture.
2580 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002581int
Chris Wilson05394f32010-11-08 19:18:58 +00002582i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002583{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002584 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00002585 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002586
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002587 if (!i915_gem_obj_ggtt_bound(obj))
Eric Anholt673a3942008-07-30 12:06:12 -07002588 return 0;
2589
Chris Wilson31d8d652012-05-24 19:11:20 +01002590 if (obj->pin_count)
2591 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002592
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002593 BUG_ON(obj->pages == NULL);
2594
Chris Wilsona8198ee2011-04-13 22:04:09 +01002595 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002596 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002597 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002598 /* Continue on if we fail due to EIO, the GPU is hung so we
2599 * should be safe and we need to cleanup or else we might
2600 * cause memory corruption through use-after-free.
2601 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002602
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002603 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002604
Daniel Vetter96b47b62009-12-15 17:50:00 +01002605 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002606 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002607 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002608 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002609
Chris Wilsondb53a302011-02-03 11:57:46 +00002610 trace_i915_gem_object_unbind(obj);
2611
Daniel Vetter74898d72012-02-15 23:50:22 +01002612 if (obj->has_global_gtt_mapping)
2613 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002614 if (obj->has_aliasing_ppgtt_mapping) {
2615 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2616 obj->has_aliasing_ppgtt_mapping = 0;
2617 }
Daniel Vetter74163902012-02-15 23:50:21 +01002618 i915_gem_gtt_finish_object(obj);
Ben Widawsky401c29f2013-05-31 11:28:47 -07002619 i915_gem_object_unpin_pages(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002620
Chris Wilson6c085a72012-08-20 11:40:46 +02002621 list_del(&obj->mm_list);
Ben Widawsky35c20a62013-05-31 11:28:48 -07002622 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002623 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002624 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002625
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002626 drm_mm_remove_node(&obj->gtt_space);
Eric Anholt673a3942008-07-30 12:06:12 -07002627
Chris Wilson88241782011-01-07 17:09:48 +00002628 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002629}
2630
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002631int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002632{
2633 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002634 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002635 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002636
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002637 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002638 for_each_ring(ring, dev_priv, i) {
Ben Widawskyb6c74882012-08-14 14:35:14 -07002639 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2640 if (ret)
2641 return ret;
2642
Chris Wilson3e960502012-11-27 16:22:54 +00002643 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002644 if (ret)
2645 return ret;
2646 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002647
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002648 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002649}
2650
Chris Wilson9ce079e2012-04-17 15:31:30 +01002651static void i965_write_fence_reg(struct drm_device *dev, int reg,
2652 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002653{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002654 drm_i915_private_t *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02002655 int fence_reg;
2656 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002657
Imre Deak56c844e2013-01-07 21:47:34 +02002658 if (INTEL_INFO(dev)->gen >= 6) {
2659 fence_reg = FENCE_REG_SANDYBRIDGE_0;
2660 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
2661 } else {
2662 fence_reg = FENCE_REG_965_0;
2663 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
2664 }
2665
Chris Wilsond18b9612013-07-10 13:36:23 +01002666 fence_reg += reg * 8;
2667
2668 /* To w/a incoherency with non-atomic 64-bit register updates,
2669 * we split the 64-bit update into two 32-bit writes. In order
2670 * for a partial fence not to be evaluated between writes, we
2671 * precede the update with write to turn off the fence register,
2672 * and only enable the fence as the last step.
2673 *
2674 * For extra levels of paranoia, we make sure each step lands
2675 * before applying the next step.
2676 */
2677 I915_WRITE(fence_reg, 0);
2678 POSTING_READ(fence_reg);
2679
Chris Wilson9ce079e2012-04-17 15:31:30 +01002680 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002681 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01002682 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002683
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002684 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01002685 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002686 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02002687 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002688 if (obj->tiling_mode == I915_TILING_Y)
2689 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2690 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00002691
Chris Wilsond18b9612013-07-10 13:36:23 +01002692 I915_WRITE(fence_reg + 4, val >> 32);
2693 POSTING_READ(fence_reg + 4);
2694
2695 I915_WRITE(fence_reg + 0, val);
2696 POSTING_READ(fence_reg);
2697 } else {
2698 I915_WRITE(fence_reg + 4, 0);
2699 POSTING_READ(fence_reg + 4);
2700 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002701}
2702
Chris Wilson9ce079e2012-04-17 15:31:30 +01002703static void i915_write_fence_reg(struct drm_device *dev, int reg,
2704 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002705{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002706 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002707 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002708
Chris Wilson9ce079e2012-04-17 15:31:30 +01002709 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002710 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002711 int pitch_val;
2712 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002713
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002714 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002715 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002716 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2717 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2718 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002719
2720 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2721 tile_width = 128;
2722 else
2723 tile_width = 512;
2724
2725 /* Note: pitch better be a power of two tile widths */
2726 pitch_val = obj->stride / tile_width;
2727 pitch_val = ffs(pitch_val) - 1;
2728
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002729 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002730 if (obj->tiling_mode == I915_TILING_Y)
2731 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2732 val |= I915_FENCE_SIZE_BITS(size);
2733 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2734 val |= I830_FENCE_REG_VALID;
2735 } else
2736 val = 0;
2737
2738 if (reg < 8)
2739 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002740 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002741 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002742
Chris Wilson9ce079e2012-04-17 15:31:30 +01002743 I915_WRITE(reg, val);
2744 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002745}
2746
Chris Wilson9ce079e2012-04-17 15:31:30 +01002747static void i830_write_fence_reg(struct drm_device *dev, int reg,
2748 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002749{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002750 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002751 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002752
Chris Wilson9ce079e2012-04-17 15:31:30 +01002753 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002754 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002755 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002756
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002757 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002758 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002759 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2760 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
2761 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002762
Chris Wilson9ce079e2012-04-17 15:31:30 +01002763 pitch_val = obj->stride / 128;
2764 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002765
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002766 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002767 if (obj->tiling_mode == I915_TILING_Y)
2768 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2769 val |= I830_FENCE_SIZE_BITS(size);
2770 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2771 val |= I830_FENCE_REG_VALID;
2772 } else
2773 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002774
Chris Wilson9ce079e2012-04-17 15:31:30 +01002775 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2776 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2777}
2778
Chris Wilsond0a57782012-10-09 19:24:37 +01002779inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
2780{
2781 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
2782}
2783
Chris Wilson9ce079e2012-04-17 15:31:30 +01002784static void i915_gem_write_fence(struct drm_device *dev, int reg,
2785 struct drm_i915_gem_object *obj)
2786{
Chris Wilsond0a57782012-10-09 19:24:37 +01002787 struct drm_i915_private *dev_priv = dev->dev_private;
2788
2789 /* Ensure that all CPU reads are completed before installing a fence
2790 * and all writes before removing the fence.
2791 */
2792 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
2793 mb();
2794
Chris Wilson9ce079e2012-04-17 15:31:30 +01002795 switch (INTEL_INFO(dev)->gen) {
2796 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02002797 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01002798 case 5:
2799 case 4: i965_write_fence_reg(dev, reg, obj); break;
2800 case 3: i915_write_fence_reg(dev, reg, obj); break;
2801 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08002802 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01002803 }
Chris Wilsond0a57782012-10-09 19:24:37 +01002804
2805 /* And similarly be paranoid that no direct access to this region
2806 * is reordered to before the fence is installed.
2807 */
2808 if (i915_gem_object_needs_mb(obj))
2809 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08002810}
2811
Chris Wilson61050802012-04-17 15:31:31 +01002812static inline int fence_number(struct drm_i915_private *dev_priv,
2813 struct drm_i915_fence_reg *fence)
2814{
2815 return fence - dev_priv->fence_regs;
2816}
2817
2818static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2819 struct drm_i915_fence_reg *fence,
2820 bool enable)
2821{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01002822 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01002823 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01002824
Chris Wilson46a0b632013-07-10 13:36:24 +01002825 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01002826
2827 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01002828 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01002829 fence->obj = obj;
2830 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2831 } else {
2832 obj->fence_reg = I915_FENCE_REG_NONE;
2833 fence->obj = NULL;
2834 list_del_init(&fence->lru_list);
2835 }
2836}
2837
Chris Wilsond9e86c02010-11-10 16:40:20 +00002838static int
Chris Wilsond0a57782012-10-09 19:24:37 +01002839i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002840{
Chris Wilson1c293ea2012-04-17 15:31:27 +01002841 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01002842 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002843 if (ret)
2844 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002845
2846 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002847 }
2848
Chris Wilson86d5bc32012-07-20 12:41:04 +01002849 obj->fenced_gpu_access = false;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002850 return 0;
2851}
2852
2853int
2854i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2855{
Chris Wilson61050802012-04-17 15:31:31 +01002856 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002857 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002858 int ret;
2859
Chris Wilsond0a57782012-10-09 19:24:37 +01002860 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002861 if (ret)
2862 return ret;
2863
Chris Wilson61050802012-04-17 15:31:31 +01002864 if (obj->fence_reg == I915_FENCE_REG_NONE)
2865 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002866
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002867 fence = &dev_priv->fence_regs[obj->fence_reg];
2868
Chris Wilson61050802012-04-17 15:31:31 +01002869 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002870 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002871
2872 return 0;
2873}
2874
2875static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002876i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002877{
Daniel Vetterae3db242010-02-19 11:51:58 +01002878 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002879 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002880 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002881
2882 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002883 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002884 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2885 reg = &dev_priv->fence_regs[i];
2886 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002887 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002888
Chris Wilson1690e1e2011-12-14 13:57:08 +01002889 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002890 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002891 }
2892
Chris Wilsond9e86c02010-11-10 16:40:20 +00002893 if (avail == NULL)
2894 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002895
2896 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002897 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002898 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002899 continue;
2900
Chris Wilson8fe301a2012-04-17 15:31:28 +01002901 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002902 }
2903
Chris Wilson8fe301a2012-04-17 15:31:28 +01002904 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002905}
2906
Jesse Barnesde151cf2008-11-12 10:03:55 -08002907/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002908 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002909 * @obj: object to map through a fence reg
2910 *
2911 * When mapping objects through the GTT, userspace wants to be able to write
2912 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002913 * This function walks the fence regs looking for a free one for @obj,
2914 * stealing one if it can't find any.
2915 *
2916 * It then sets up the reg based on the object's properties: address, pitch
2917 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002918 *
2919 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002920 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002921int
Chris Wilson06d98132012-04-17 15:31:24 +01002922i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002923{
Chris Wilson05394f32010-11-08 19:18:58 +00002924 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002925 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002926 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002927 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002928 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002929
Chris Wilson14415742012-04-17 15:31:33 +01002930 /* Have we updated the tiling parameters upon the object and so
2931 * will need to serialise the write to the associated fence register?
2932 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002933 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01002934 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01002935 if (ret)
2936 return ret;
2937 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002938
Chris Wilsond9e86c02010-11-10 16:40:20 +00002939 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002940 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2941 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002942 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002943 list_move_tail(&reg->lru_list,
2944 &dev_priv->mm.fence_list);
2945 return 0;
2946 }
2947 } else if (enable) {
2948 reg = i915_find_fence_reg(dev);
2949 if (reg == NULL)
2950 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002951
Chris Wilson14415742012-04-17 15:31:33 +01002952 if (reg->obj) {
2953 struct drm_i915_gem_object *old = reg->obj;
2954
Chris Wilsond0a57782012-10-09 19:24:37 +01002955 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002956 if (ret)
2957 return ret;
2958
Chris Wilson14415742012-04-17 15:31:33 +01002959 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002960 }
Chris Wilson14415742012-04-17 15:31:33 +01002961 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07002962 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002963
Chris Wilson14415742012-04-17 15:31:33 +01002964 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002965 obj->fence_dirty = false;
Chris Wilson14415742012-04-17 15:31:33 +01002966
Chris Wilson9ce079e2012-04-17 15:31:30 +01002967 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002968}
2969
Chris Wilson42d6ab42012-07-26 11:49:32 +01002970static bool i915_gem_valid_gtt_space(struct drm_device *dev,
2971 struct drm_mm_node *gtt_space,
2972 unsigned long cache_level)
2973{
2974 struct drm_mm_node *other;
2975
2976 /* On non-LLC machines we have to be careful when putting differing
2977 * types of snoopable memory together to avoid the prefetcher
Damien Lespiau4239ca72012-12-03 16:26:16 +00002978 * crossing memory domains and dying.
Chris Wilson42d6ab42012-07-26 11:49:32 +01002979 */
2980 if (HAS_LLC(dev))
2981 return true;
2982
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002983 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01002984 return true;
2985
2986 if (list_empty(&gtt_space->node_list))
2987 return true;
2988
2989 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
2990 if (other->allocated && !other->hole_follows && other->color != cache_level)
2991 return false;
2992
2993 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
2994 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
2995 return false;
2996
2997 return true;
2998}
2999
3000static void i915_gem_verify_gtt(struct drm_device *dev)
3001{
3002#if WATCH_GTT
3003 struct drm_i915_private *dev_priv = dev->dev_private;
3004 struct drm_i915_gem_object *obj;
3005 int err = 0;
3006
Ben Widawsky35c20a62013-05-31 11:28:48 -07003007 list_for_each_entry(obj, &dev_priv->mm.gtt_list, global_list) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003008 if (obj->gtt_space == NULL) {
3009 printk(KERN_ERR "object found on GTT list with no space reserved\n");
3010 err++;
3011 continue;
3012 }
3013
3014 if (obj->cache_level != obj->gtt_space->color) {
3015 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003016 i915_gem_obj_ggtt_offset(obj),
3017 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003018 obj->cache_level,
3019 obj->gtt_space->color);
3020 err++;
3021 continue;
3022 }
3023
3024 if (!i915_gem_valid_gtt_space(dev,
3025 obj->gtt_space,
3026 obj->cache_level)) {
3027 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003028 i915_gem_obj_ggtt_offset(obj),
3029 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003030 obj->cache_level);
3031 err++;
3032 continue;
3033 }
3034 }
3035
3036 WARN_ON(err);
3037#endif
3038}
3039
Jesse Barnesde151cf2008-11-12 10:03:55 -08003040/**
Eric Anholt673a3942008-07-30 12:06:12 -07003041 * Finds free space in the GTT aperture and binds the object there.
3042 */
3043static int
Chris Wilson05394f32010-11-08 19:18:58 +00003044i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02003045 unsigned alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003046 bool map_and_fenceable,
3047 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003048{
Chris Wilson05394f32010-11-08 19:18:58 +00003049 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003050 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003051 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003052 bool mappable, fenceable;
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003053 size_t gtt_max = map_and_fenceable ?
3054 dev_priv->gtt.mappable_end : dev_priv->gtt.total;
Chris Wilson07f73f62009-09-14 16:50:30 +01003055 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003056
Chris Wilsone28f8712011-07-18 13:11:49 -07003057 fence_size = i915_gem_get_gtt_size(dev,
3058 obj->base.size,
3059 obj->tiling_mode);
3060 fence_alignment = i915_gem_get_gtt_alignment(dev,
3061 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003062 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003063 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003064 i915_gem_get_gtt_alignment(dev,
Chris Wilsone28f8712011-07-18 13:11:49 -07003065 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003066 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003067
Eric Anholt673a3942008-07-30 12:06:12 -07003068 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01003069 alignment = map_and_fenceable ? fence_alignment :
3070 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003071 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003072 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
3073 return -EINVAL;
3074 }
3075
Chris Wilson05394f32010-11-08 19:18:58 +00003076 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003077
Chris Wilson654fc602010-05-27 13:18:21 +01003078 /* If the object is bigger than the entire aperture, reject it early
3079 * before evicting everything in a vain attempt to find space.
3080 */
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003081 if (obj->base.size > gtt_max) {
Jani Nikula3765f302013-06-07 16:03:50 +03003082 DRM_ERROR("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%zu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003083 obj->base.size,
3084 map_and_fenceable ? "mappable" : "total",
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003085 gtt_max);
Chris Wilson654fc602010-05-27 13:18:21 +01003086 return -E2BIG;
3087 }
3088
Chris Wilson37e680a2012-06-07 15:38:42 +01003089 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003090 if (ret)
3091 return ret;
3092
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003093 i915_gem_object_pin_pages(obj);
3094
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003095search_free:
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003096 ret = drm_mm_insert_node_in_range_generic(&dev_priv->mm.gtt_space,
3097 &obj->gtt_space,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003098 size, alignment,
3099 obj->cache_level, 0, gtt_max);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003100 if (ret) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003101 ret = i915_gem_evict_something(dev, size, alignment,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003102 obj->cache_level,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003103 map_and_fenceable,
3104 nonblocking);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003105 if (ret == 0)
3106 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003107
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003108 i915_gem_object_unpin_pages(obj);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003109 return ret;
3110 }
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003111 if (WARN_ON(!i915_gem_valid_gtt_space(dev, &obj->gtt_space,
3112 obj->cache_level))) {
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003113 i915_gem_object_unpin_pages(obj);
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003114 drm_mm_remove_node(&obj->gtt_space);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003115 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -07003116 }
3117
Daniel Vetter74163902012-02-15 23:50:21 +01003118 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01003119 if (ret) {
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003120 i915_gem_object_unpin_pages(obj);
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003121 drm_mm_remove_node(&obj->gtt_space);
Chris Wilson6c085a72012-08-20 11:40:46 +02003122 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003123 }
Eric Anholt673a3942008-07-30 12:06:12 -07003124
Ben Widawsky35c20a62013-05-31 11:28:48 -07003125 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilson05394f32010-11-08 19:18:58 +00003126 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003127
Daniel Vetter75e9e912010-11-04 17:11:09 +01003128 fenceable =
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003129 i915_gem_obj_ggtt_size(obj) == fence_size &&
3130 (i915_gem_obj_ggtt_offset(obj) & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003131
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003132 mappable = i915_gem_obj_ggtt_offset(obj) + obj->base.size <=
3133 dev_priv->gtt.mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003134
Chris Wilson05394f32010-11-08 19:18:58 +00003135 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003136
Chris Wilsondb53a302011-02-03 11:57:46 +00003137 trace_i915_gem_object_bind(obj, map_and_fenceable);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003138 i915_gem_verify_gtt(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003139 return 0;
3140}
3141
3142void
Chris Wilson05394f32010-11-08 19:18:58 +00003143i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003144{
Eric Anholt673a3942008-07-30 12:06:12 -07003145 /* If we don't have a page list set up, then we're not pinned
3146 * to GPU, and we can ignore the cache flush because it'll happen
3147 * again at bind time.
3148 */
Chris Wilson05394f32010-11-08 19:18:58 +00003149 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07003150 return;
3151
Imre Deak769ce462013-02-13 21:56:05 +02003152 /*
3153 * Stolen memory is always coherent with the GPU as it is explicitly
3154 * marked as wc by the system, or the system is cache-coherent.
3155 */
3156 if (obj->stolen)
3157 return;
3158
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003159 /* If the GPU is snooping the contents of the CPU cache,
3160 * we do not need to manually clear the CPU cache lines. However,
3161 * the caches are only snooped when the render cache is
3162 * flushed/invalidated. As we always have to emit invalidations
3163 * and flushes when moving into and out of the RENDER domain, correct
3164 * snooping behaviour occurs naturally as the result of our domain
3165 * tracking.
3166 */
3167 if (obj->cache_level != I915_CACHE_NONE)
3168 return;
3169
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003170 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07003171
Chris Wilson9da3da62012-06-01 15:20:22 +01003172 drm_clflush_sg(obj->pages);
Eric Anholte47c68e2008-11-14 13:35:19 -08003173}
3174
3175/** Flushes the GTT write domain for the object if it's dirty. */
3176static void
Chris Wilson05394f32010-11-08 19:18:58 +00003177i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003178{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003179 uint32_t old_write_domain;
3180
Chris Wilson05394f32010-11-08 19:18:58 +00003181 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003182 return;
3183
Chris Wilson63256ec2011-01-04 18:42:07 +00003184 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003185 * to it immediately go to main memory as far as we know, so there's
3186 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003187 *
3188 * However, we do have to enforce the order so that all writes through
3189 * the GTT land before any writes to the device, such as updates to
3190 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003191 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003192 wmb();
3193
Chris Wilson05394f32010-11-08 19:18:58 +00003194 old_write_domain = obj->base.write_domain;
3195 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003196
3197 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003198 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003199 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003200}
3201
3202/** Flushes the CPU write domain for the object if it's dirty. */
3203static void
Chris Wilson05394f32010-11-08 19:18:58 +00003204i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003205{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003206 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003207
Chris Wilson05394f32010-11-08 19:18:58 +00003208 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003209 return;
3210
3211 i915_gem_clflush_object(obj);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003212 i915_gem_chipset_flush(obj->base.dev);
Chris Wilson05394f32010-11-08 19:18:58 +00003213 old_write_domain = obj->base.write_domain;
3214 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003215
3216 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003217 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003218 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003219}
3220
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003221/**
3222 * Moves a single object to the GTT read, and possibly write domain.
3223 *
3224 * This function returns when the move is complete, including waiting on
3225 * flushes to occur.
3226 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003227int
Chris Wilson20217462010-11-23 15:26:33 +00003228i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003229{
Chris Wilson8325a092012-04-24 15:52:35 +01003230 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003231 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003232 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003233
Eric Anholt02354392008-11-26 13:58:13 -08003234 /* Not valid to be called on unbound objects. */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003235 if (!i915_gem_obj_ggtt_bound(obj))
Eric Anholt02354392008-11-26 13:58:13 -08003236 return -EINVAL;
3237
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003238 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3239 return 0;
3240
Chris Wilson0201f1e2012-07-20 12:41:01 +01003241 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003242 if (ret)
3243 return ret;
3244
Chris Wilson72133422010-09-13 23:56:38 +01003245 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003246
Chris Wilsond0a57782012-10-09 19:24:37 +01003247 /* Serialise direct access to this object with the barriers for
3248 * coherent writes from the GPU, by effectively invalidating the
3249 * GTT domain upon first access.
3250 */
3251 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3252 mb();
3253
Chris Wilson05394f32010-11-08 19:18:58 +00003254 old_write_domain = obj->base.write_domain;
3255 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003256
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003257 /* It should now be out of any other write domains, and we can update
3258 * the domain values for our changes.
3259 */
Chris Wilson05394f32010-11-08 19:18:58 +00003260 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3261 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003262 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003263 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3264 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3265 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003266 }
3267
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003268 trace_i915_gem_object_change_domain(obj,
3269 old_read_domains,
3270 old_write_domain);
3271
Chris Wilson8325a092012-04-24 15:52:35 +01003272 /* And bump the LRU for this access */
3273 if (i915_gem_object_is_inactive(obj))
3274 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
3275
Eric Anholte47c68e2008-11-14 13:35:19 -08003276 return 0;
3277}
3278
Chris Wilsone4ffd172011-04-04 09:44:39 +01003279int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3280 enum i915_cache_level cache_level)
3281{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003282 struct drm_device *dev = obj->base.dev;
3283 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003284 int ret;
3285
3286 if (obj->cache_level == cache_level)
3287 return 0;
3288
3289 if (obj->pin_count) {
3290 DRM_DEBUG("can not change the cache level of pinned objects\n");
3291 return -EBUSY;
3292 }
3293
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003294 if (!i915_gem_valid_gtt_space(dev, &obj->gtt_space, cache_level)) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003295 ret = i915_gem_object_unbind(obj);
3296 if (ret)
3297 return ret;
3298 }
3299
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003300 if (i915_gem_obj_ggtt_bound(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003301 ret = i915_gem_object_finish_gpu(obj);
3302 if (ret)
3303 return ret;
3304
3305 i915_gem_object_finish_gtt(obj);
3306
3307 /* Before SandyBridge, you could not use tiling or fence
3308 * registers with snooped memory, so relinquish any fences
3309 * currently pointing to our region in the aperture.
3310 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003311 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003312 ret = i915_gem_object_put_fence(obj);
3313 if (ret)
3314 return ret;
3315 }
3316
Daniel Vetter74898d72012-02-15 23:50:22 +01003317 if (obj->has_global_gtt_mapping)
3318 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003319 if (obj->has_aliasing_ppgtt_mapping)
3320 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3321 obj, cache_level);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003322
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003323 i915_gem_obj_ggtt_set_color(obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003324 }
3325
3326 if (cache_level == I915_CACHE_NONE) {
3327 u32 old_read_domains, old_write_domain;
3328
3329 /* If we're coming from LLC cached, then we haven't
3330 * actually been tracking whether the data is in the
3331 * CPU cache or not, since we only allow one bit set
3332 * in obj->write_domain and have been skipping the clflushes.
3333 * Just set it to the CPU cache for now.
3334 */
3335 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
3336 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
3337
3338 old_read_domains = obj->base.read_domains;
3339 old_write_domain = obj->base.write_domain;
3340
3341 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3342 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3343
3344 trace_i915_gem_object_change_domain(obj,
3345 old_read_domains,
3346 old_write_domain);
3347 }
3348
3349 obj->cache_level = cache_level;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003350 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003351 return 0;
3352}
3353
Ben Widawsky199adf42012-09-21 17:01:20 -07003354int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3355 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003356{
Ben Widawsky199adf42012-09-21 17:01:20 -07003357 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003358 struct drm_i915_gem_object *obj;
3359 int ret;
3360
3361 ret = i915_mutex_lock_interruptible(dev);
3362 if (ret)
3363 return ret;
3364
3365 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3366 if (&obj->base == NULL) {
3367 ret = -ENOENT;
3368 goto unlock;
3369 }
3370
Ben Widawsky199adf42012-09-21 17:01:20 -07003371 args->caching = obj->cache_level != I915_CACHE_NONE;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003372
3373 drm_gem_object_unreference(&obj->base);
3374unlock:
3375 mutex_unlock(&dev->struct_mutex);
3376 return ret;
3377}
3378
Ben Widawsky199adf42012-09-21 17:01:20 -07003379int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3380 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003381{
Ben Widawsky199adf42012-09-21 17:01:20 -07003382 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003383 struct drm_i915_gem_object *obj;
3384 enum i915_cache_level level;
3385 int ret;
3386
Ben Widawsky199adf42012-09-21 17:01:20 -07003387 switch (args->caching) {
3388 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003389 level = I915_CACHE_NONE;
3390 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003391 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003392 level = I915_CACHE_LLC;
3393 break;
3394 default:
3395 return -EINVAL;
3396 }
3397
Ben Widawsky3bc29132012-09-26 16:15:20 -07003398 ret = i915_mutex_lock_interruptible(dev);
3399 if (ret)
3400 return ret;
3401
Chris Wilsone6994ae2012-07-10 10:27:08 +01003402 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3403 if (&obj->base == NULL) {
3404 ret = -ENOENT;
3405 goto unlock;
3406 }
3407
3408 ret = i915_gem_object_set_cache_level(obj, level);
3409
3410 drm_gem_object_unreference(&obj->base);
3411unlock:
3412 mutex_unlock(&dev->struct_mutex);
3413 return ret;
3414}
3415
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003416/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003417 * Prepare buffer for display plane (scanout, cursors, etc).
3418 * Can be called from an uninterruptible phase (modesetting) and allows
3419 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003420 */
3421int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003422i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3423 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003424 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003425{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003426 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003427 int ret;
3428
Chris Wilson0be73282010-12-06 14:36:27 +00003429 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003430 ret = i915_gem_object_sync(obj, pipelined);
3431 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003432 return ret;
3433 }
3434
Eric Anholta7ef0642011-03-29 16:59:54 -07003435 /* The display engine is not coherent with the LLC cache on gen6. As
3436 * a result, we make sure that the pinning that is about to occur is
3437 * done with uncached PTEs. This is lowest common denominator for all
3438 * chipsets.
3439 *
3440 * However for gen6+, we could do better by using the GFDT bit instead
3441 * of uncaching, which would allow us to flush all the LLC-cached data
3442 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3443 */
3444 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3445 if (ret)
3446 return ret;
3447
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003448 /* As the user may map the buffer once pinned in the display plane
3449 * (e.g. libkms for the bootup splash), we have to ensure that we
3450 * always use map_and_fenceable for all scanout buffers.
3451 */
Chris Wilson86a1ee22012-08-11 15:41:04 +01003452 ret = i915_gem_object_pin(obj, alignment, true, false);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003453 if (ret)
3454 return ret;
3455
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003456 i915_gem_object_flush_cpu_write_domain(obj);
3457
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003458 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003459 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003460
3461 /* It should now be out of any other write domains, and we can update
3462 * the domain values for our changes.
3463 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003464 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003465 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003466
3467 trace_i915_gem_object_change_domain(obj,
3468 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003469 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003470
3471 return 0;
3472}
3473
Chris Wilson85345512010-11-13 09:49:11 +00003474int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003475i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003476{
Chris Wilson88241782011-01-07 17:09:48 +00003477 int ret;
3478
Chris Wilsona8198ee2011-04-13 22:04:09 +01003479 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003480 return 0;
3481
Chris Wilson0201f1e2012-07-20 12:41:01 +01003482 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003483 if (ret)
3484 return ret;
3485
Chris Wilsona8198ee2011-04-13 22:04:09 +01003486 /* Ensure that we invalidate the GPU's caches and TLBs. */
3487 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003488 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003489}
3490
Eric Anholte47c68e2008-11-14 13:35:19 -08003491/**
3492 * Moves a single object to the CPU read, and possibly write domain.
3493 *
3494 * This function returns when the move is complete, including waiting on
3495 * flushes to occur.
3496 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003497int
Chris Wilson919926a2010-11-12 13:42:53 +00003498i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003499{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003500 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003501 int ret;
3502
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003503 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3504 return 0;
3505
Chris Wilson0201f1e2012-07-20 12:41:01 +01003506 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003507 if (ret)
3508 return ret;
3509
Eric Anholte47c68e2008-11-14 13:35:19 -08003510 i915_gem_object_flush_gtt_write_domain(obj);
3511
Chris Wilson05394f32010-11-08 19:18:58 +00003512 old_write_domain = obj->base.write_domain;
3513 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003514
Eric Anholte47c68e2008-11-14 13:35:19 -08003515 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003516 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003517 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003518
Chris Wilson05394f32010-11-08 19:18:58 +00003519 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003520 }
3521
3522 /* It should now be out of any other write domains, and we can update
3523 * the domain values for our changes.
3524 */
Chris Wilson05394f32010-11-08 19:18:58 +00003525 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003526
3527 /* If we're writing through the CPU, then the GPU read domains will
3528 * need to be invalidated at next use.
3529 */
3530 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003531 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3532 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003533 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003534
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003535 trace_i915_gem_object_change_domain(obj,
3536 old_read_domains,
3537 old_write_domain);
3538
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003539 return 0;
3540}
3541
Eric Anholt673a3942008-07-30 12:06:12 -07003542/* Throttle our rendering by waiting until the ring has completed our requests
3543 * emitted over 20 msec ago.
3544 *
Eric Anholtb9624422009-06-03 07:27:35 +00003545 * Note that if we were to use the current jiffies each time around the loop,
3546 * we wouldn't escape the function with any frames outstanding if the time to
3547 * render a frame was over 20ms.
3548 *
Eric Anholt673a3942008-07-30 12:06:12 -07003549 * This should get us reasonable parallelism between CPU and GPU but also
3550 * relatively low latency when blocking on a particular request to finish.
3551 */
3552static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003553i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003554{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003555 struct drm_i915_private *dev_priv = dev->dev_private;
3556 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003557 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003558 struct drm_i915_gem_request *request;
3559 struct intel_ring_buffer *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01003560 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003561 u32 seqno = 0;
3562 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003563
Daniel Vetter308887a2012-11-14 17:14:06 +01003564 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
3565 if (ret)
3566 return ret;
3567
3568 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
3569 if (ret)
3570 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003571
Chris Wilson1c255952010-09-26 11:03:27 +01003572 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003573 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003574 if (time_after_eq(request->emitted_jiffies, recent_enough))
3575 break;
3576
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003577 ring = request->ring;
3578 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003579 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01003580 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01003581 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003582
3583 if (seqno == 0)
3584 return 0;
3585
Daniel Vetterf69061b2012-12-06 09:01:42 +01003586 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003587 if (ret == 0)
3588 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003589
Eric Anholt673a3942008-07-30 12:06:12 -07003590 return ret;
3591}
3592
Eric Anholt673a3942008-07-30 12:06:12 -07003593int
Chris Wilson05394f32010-11-08 19:18:58 +00003594i915_gem_object_pin(struct drm_i915_gem_object *obj,
3595 uint32_t alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003596 bool map_and_fenceable,
3597 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003598{
Eric Anholt673a3942008-07-30 12:06:12 -07003599 int ret;
3600
Chris Wilson7e81a422012-09-15 09:41:57 +01003601 if (WARN_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
3602 return -EBUSY;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003603
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003604 if (i915_gem_obj_ggtt_bound(obj)) {
3605 if ((alignment && i915_gem_obj_ggtt_offset(obj) & (alignment - 1)) ||
Chris Wilson05394f32010-11-08 19:18:58 +00003606 (map_and_fenceable && !obj->map_and_fenceable)) {
3607 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003608 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003609 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003610 " obj->map_and_fenceable=%d\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003611 i915_gem_obj_ggtt_offset(obj), alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003612 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003613 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003614 ret = i915_gem_object_unbind(obj);
3615 if (ret)
3616 return ret;
3617 }
3618 }
3619
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003620 if (!i915_gem_obj_ggtt_bound(obj)) {
Chris Wilson87422672012-11-21 13:04:03 +00003621 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3622
Chris Wilsona00b10c2010-09-24 21:15:47 +01003623 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003624 map_and_fenceable,
3625 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01003626 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003627 return ret;
Chris Wilson87422672012-11-21 13:04:03 +00003628
3629 if (!dev_priv->mm.aliasing_ppgtt)
3630 i915_gem_gtt_bind_object(obj, obj->cache_level);
Chris Wilson22c344e2009-02-11 14:26:45 +00003631 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003632
Daniel Vetter74898d72012-02-15 23:50:22 +01003633 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3634 i915_gem_gtt_bind_object(obj, obj->cache_level);
3635
Chris Wilson1b502472012-04-24 15:47:30 +01003636 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003637 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003638
3639 return 0;
3640}
3641
3642void
Chris Wilson05394f32010-11-08 19:18:58 +00003643i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003644{
Chris Wilson05394f32010-11-08 19:18:58 +00003645 BUG_ON(obj->pin_count == 0);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003646 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
Eric Anholt673a3942008-07-30 12:06:12 -07003647
Chris Wilson1b502472012-04-24 15:47:30 +01003648 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003649 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003650}
3651
3652int
3653i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003654 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003655{
3656 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003657 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003658 int ret;
3659
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003660 ret = i915_mutex_lock_interruptible(dev);
3661 if (ret)
3662 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003663
Chris Wilson05394f32010-11-08 19:18:58 +00003664 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003665 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003666 ret = -ENOENT;
3667 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003668 }
Eric Anholt673a3942008-07-30 12:06:12 -07003669
Chris Wilson05394f32010-11-08 19:18:58 +00003670 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003671 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003672 ret = -EINVAL;
3673 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003674 }
3675
Chris Wilson05394f32010-11-08 19:18:58 +00003676 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003677 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3678 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003679 ret = -EINVAL;
3680 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003681 }
3682
Chris Wilson93be8782013-01-02 10:31:22 +00003683 if (obj->user_pin_count == 0) {
Chris Wilson86a1ee22012-08-11 15:41:04 +01003684 ret = i915_gem_object_pin(obj, args->alignment, true, false);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003685 if (ret)
3686 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003687 }
3688
Chris Wilson93be8782013-01-02 10:31:22 +00003689 obj->user_pin_count++;
3690 obj->pin_filp = file;
3691
Eric Anholt673a3942008-07-30 12:06:12 -07003692 /* XXX - flush the CPU caches for pinned objects
3693 * as the X server doesn't manage domains yet
3694 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003695 i915_gem_object_flush_cpu_write_domain(obj);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003696 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003697out:
Chris Wilson05394f32010-11-08 19:18:58 +00003698 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003699unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003700 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003701 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003702}
3703
3704int
3705i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003706 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003707{
3708 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003709 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003710 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003711
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003712 ret = i915_mutex_lock_interruptible(dev);
3713 if (ret)
3714 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003715
Chris Wilson05394f32010-11-08 19:18:58 +00003716 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003717 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003718 ret = -ENOENT;
3719 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003720 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003721
Chris Wilson05394f32010-11-08 19:18:58 +00003722 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003723 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3724 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003725 ret = -EINVAL;
3726 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003727 }
Chris Wilson05394f32010-11-08 19:18:58 +00003728 obj->user_pin_count--;
3729 if (obj->user_pin_count == 0) {
3730 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003731 i915_gem_object_unpin(obj);
3732 }
Eric Anholt673a3942008-07-30 12:06:12 -07003733
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003734out:
Chris Wilson05394f32010-11-08 19:18:58 +00003735 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003736unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003737 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003738 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003739}
3740
3741int
3742i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003743 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003744{
3745 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003746 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003747 int ret;
3748
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003749 ret = i915_mutex_lock_interruptible(dev);
3750 if (ret)
3751 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003752
Chris Wilson05394f32010-11-08 19:18:58 +00003753 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003754 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003755 ret = -ENOENT;
3756 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003757 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003758
Chris Wilson0be555b2010-08-04 15:36:30 +01003759 /* Count all active objects as busy, even if they are currently not used
3760 * by the gpu. Users of this interface expect objects to eventually
3761 * become non-busy without any further actions, therefore emit any
3762 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003763 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003764 ret = i915_gem_object_flush_active(obj);
3765
Chris Wilson05394f32010-11-08 19:18:58 +00003766 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01003767 if (obj->ring) {
3768 BUILD_BUG_ON(I915_NUM_RINGS > 16);
3769 args->busy |= intel_ring_flag(obj->ring) << 16;
3770 }
Eric Anholt673a3942008-07-30 12:06:12 -07003771
Chris Wilson05394f32010-11-08 19:18:58 +00003772 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003773unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003774 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003775 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003776}
3777
3778int
3779i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3780 struct drm_file *file_priv)
3781{
Akshay Joshi0206e352011-08-16 15:34:10 -04003782 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003783}
3784
Chris Wilson3ef94da2009-09-14 16:50:29 +01003785int
3786i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3787 struct drm_file *file_priv)
3788{
3789 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003790 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003791 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003792
3793 switch (args->madv) {
3794 case I915_MADV_DONTNEED:
3795 case I915_MADV_WILLNEED:
3796 break;
3797 default:
3798 return -EINVAL;
3799 }
3800
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003801 ret = i915_mutex_lock_interruptible(dev);
3802 if (ret)
3803 return ret;
3804
Chris Wilson05394f32010-11-08 19:18:58 +00003805 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003806 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003807 ret = -ENOENT;
3808 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003809 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003810
Chris Wilson05394f32010-11-08 19:18:58 +00003811 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003812 ret = -EINVAL;
3813 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003814 }
3815
Chris Wilson05394f32010-11-08 19:18:58 +00003816 if (obj->madv != __I915_MADV_PURGED)
3817 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003818
Chris Wilson6c085a72012-08-20 11:40:46 +02003819 /* if the object is no longer attached, discard its backing storage */
3820 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003821 i915_gem_object_truncate(obj);
3822
Chris Wilson05394f32010-11-08 19:18:58 +00003823 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003824
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003825out:
Chris Wilson05394f32010-11-08 19:18:58 +00003826 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003827unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003828 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003829 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003830}
3831
Chris Wilson37e680a2012-06-07 15:38:42 +01003832void i915_gem_object_init(struct drm_i915_gem_object *obj,
3833 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003834{
Chris Wilson0327d6b2012-08-11 15:41:06 +01003835 INIT_LIST_HEAD(&obj->mm_list);
Ben Widawsky35c20a62013-05-31 11:28:48 -07003836 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003837 INIT_LIST_HEAD(&obj->ring_list);
3838 INIT_LIST_HEAD(&obj->exec_list);
3839
Chris Wilson37e680a2012-06-07 15:38:42 +01003840 obj->ops = ops;
3841
Chris Wilson0327d6b2012-08-11 15:41:06 +01003842 obj->fence_reg = I915_FENCE_REG_NONE;
3843 obj->madv = I915_MADV_WILLNEED;
3844 /* Avoid an unnecessary call to unbind on the first bind. */
3845 obj->map_and_fenceable = true;
3846
3847 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
3848}
3849
Chris Wilson37e680a2012-06-07 15:38:42 +01003850static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
3851 .get_pages = i915_gem_object_get_pages_gtt,
3852 .put_pages = i915_gem_object_put_pages_gtt,
3853};
3854
Chris Wilson05394f32010-11-08 19:18:58 +00003855struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3856 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003857{
Daniel Vetterc397b902010-04-09 19:05:07 +00003858 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003859 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01003860 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00003861
Chris Wilson42dcedd2012-11-15 11:32:30 +00003862 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00003863 if (obj == NULL)
3864 return NULL;
3865
3866 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00003867 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00003868 return NULL;
3869 }
3870
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003871 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
3872 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
3873 /* 965gm cannot relocate objects above 4GiB. */
3874 mask &= ~__GFP_HIGHMEM;
3875 mask |= __GFP_DMA32;
3876 }
3877
Al Viro496ad9a2013-01-23 17:07:38 -05003878 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003879 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07003880
Chris Wilson37e680a2012-06-07 15:38:42 +01003881 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01003882
Daniel Vetterc397b902010-04-09 19:05:07 +00003883 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3884 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3885
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003886 if (HAS_LLC(dev)) {
3887 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003888 * cache) for about a 10% performance improvement
3889 * compared to uncached. Graphics requests other than
3890 * display scanout are coherent with the CPU in
3891 * accessing this cache. This means in this mode we
3892 * don't need to clflush on the CPU side, and on the
3893 * GPU side we only need to flush internal caches to
3894 * get data visible to the CPU.
3895 *
3896 * However, we maintain the display planes as UC, and so
3897 * need to rebind when first used as such.
3898 */
3899 obj->cache_level = I915_CACHE_LLC;
3900 } else
3901 obj->cache_level = I915_CACHE_NONE;
3902
Chris Wilson05394f32010-11-08 19:18:58 +00003903 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003904}
3905
Eric Anholt673a3942008-07-30 12:06:12 -07003906int i915_gem_init_object(struct drm_gem_object *obj)
3907{
Daniel Vetterc397b902010-04-09 19:05:07 +00003908 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003909
Eric Anholt673a3942008-07-30 12:06:12 -07003910 return 0;
3911}
3912
Chris Wilson1488fc02012-04-24 15:47:31 +01003913void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003914{
Chris Wilson1488fc02012-04-24 15:47:31 +01003915 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003916 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003917 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003918
Chris Wilson26e12f892011-03-20 11:20:19 +00003919 trace_i915_gem_object_destroy(obj);
3920
Chris Wilson1488fc02012-04-24 15:47:31 +01003921 if (obj->phys_obj)
3922 i915_gem_detach_phys_object(dev, obj);
3923
3924 obj->pin_count = 0;
3925 if (WARN_ON(i915_gem_object_unbind(obj) == -ERESTARTSYS)) {
3926 bool was_interruptible;
3927
3928 was_interruptible = dev_priv->mm.interruptible;
3929 dev_priv->mm.interruptible = false;
3930
3931 WARN_ON(i915_gem_object_unbind(obj));
3932
3933 dev_priv->mm.interruptible = was_interruptible;
3934 }
3935
Ben Widawsky1d64ae72013-05-31 14:46:20 -07003936 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
3937 * before progressing. */
3938 if (obj->stolen)
3939 i915_gem_object_unpin_pages(obj);
3940
Ben Widawsky401c29f2013-05-31 11:28:47 -07003941 if (WARN_ON(obj->pages_pin_count))
3942 obj->pages_pin_count = 0;
Chris Wilson37e680a2012-06-07 15:38:42 +01003943 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01003944 i915_gem_object_free_mmap_offset(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +00003945 i915_gem_object_release_stolen(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003946
Chris Wilson9da3da62012-06-01 15:20:22 +01003947 BUG_ON(obj->pages);
3948
Chris Wilson2f745ad2012-09-04 21:02:58 +01003949 if (obj->base.import_attach)
3950 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01003951
Chris Wilson05394f32010-11-08 19:18:58 +00003952 drm_gem_object_release(&obj->base);
3953 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003954
Chris Wilson05394f32010-11-08 19:18:58 +00003955 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00003956 i915_gem_object_free(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003957}
3958
Jesse Barnes5669fca2009-02-17 15:13:31 -08003959int
Eric Anholt673a3942008-07-30 12:06:12 -07003960i915_gem_idle(struct drm_device *dev)
3961{
3962 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003963 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003964
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02003965 if (dev_priv->ums.mm_suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003966 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003967 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003968 }
Eric Anholt673a3942008-07-30 12:06:12 -07003969
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003970 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003971 if (ret) {
3972 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003973 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003974 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003975 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003976
Chris Wilson29105cc2010-01-07 10:39:13 +00003977 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01003978 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02003979 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003980
Daniel Vetter99584db2012-11-14 17:14:04 +01003981 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003982
3983 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003984 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003985
Chris Wilson29105cc2010-01-07 10:39:13 +00003986 /* Cancel the retire work handler, which should be idle now. */
3987 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3988
Eric Anholt673a3942008-07-30 12:06:12 -07003989 return 0;
3990}
3991
Ben Widawskyb9524a12012-05-25 16:56:24 -07003992void i915_gem_l3_remap(struct drm_device *dev)
3993{
3994 drm_i915_private_t *dev_priv = dev->dev_private;
3995 u32 misccpctl;
3996 int i;
3997
Daniel Vettereb32e452013-02-14 19:46:07 +01003998 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskyb9524a12012-05-25 16:56:24 -07003999 return;
4000
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004001 if (!dev_priv->l3_parity.remap_info)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004002 return;
4003
4004 misccpctl = I915_READ(GEN7_MISCCPCTL);
4005 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
4006 POSTING_READ(GEN7_MISCCPCTL);
4007
4008 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
4009 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004010 if (remap && remap != dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004011 DRM_DEBUG("0x%x was already programmed to %x\n",
4012 GEN7_L3LOG_BASE + i, remap);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004013 if (remap && !dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004014 DRM_DEBUG_DRIVER("Clearing remapped register\n");
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004015 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->l3_parity.remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004016 }
4017
4018 /* Make sure all the writes land before disabling dop clock gating */
4019 POSTING_READ(GEN7_L3LOG_BASE);
4020
4021 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
4022}
4023
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004024void i915_gem_init_swizzling(struct drm_device *dev)
4025{
4026 drm_i915_private_t *dev_priv = dev->dev_private;
4027
Daniel Vetter11782b02012-01-31 16:47:55 +01004028 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004029 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4030 return;
4031
4032 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4033 DISP_TILE_SURFACE_SWIZZLING);
4034
Daniel Vetter11782b02012-01-31 16:47:55 +01004035 if (IS_GEN5(dev))
4036 return;
4037
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004038 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4039 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004040 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004041 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004042 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004043 else
4044 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004045}
Daniel Vettere21af882012-02-09 20:53:27 +01004046
Chris Wilson67b1b572012-07-05 23:49:40 +01004047static bool
4048intel_enable_blt(struct drm_device *dev)
4049{
4050 if (!HAS_BLT(dev))
4051 return false;
4052
4053 /* The blitter was dysfunctional on early prototypes */
4054 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4055 DRM_INFO("BLT not supported on this pre-production hardware;"
4056 " graphics performance will be degraded.\n");
4057 return false;
4058 }
4059
4060 return true;
4061}
4062
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004063static int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004064{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004065 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004066 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004067
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004068 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004069 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004070 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004071
4072 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004073 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004074 if (ret)
4075 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004076 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004077
Chris Wilson67b1b572012-07-05 23:49:40 +01004078 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004079 ret = intel_init_blt_ring_buffer(dev);
4080 if (ret)
4081 goto cleanup_bsd_ring;
4082 }
4083
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004084 if (HAS_VEBOX(dev)) {
4085 ret = intel_init_vebox_ring_buffer(dev);
4086 if (ret)
4087 goto cleanup_blt_ring;
4088 }
4089
4090
Mika Kuoppala99433932013-01-22 14:12:17 +02004091 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4092 if (ret)
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004093 goto cleanup_vebox_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004094
4095 return 0;
4096
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004097cleanup_vebox_ring:
4098 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004099cleanup_blt_ring:
4100 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4101cleanup_bsd_ring:
4102 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4103cleanup_render_ring:
4104 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4105
4106 return ret;
4107}
4108
4109int
4110i915_gem_init_hw(struct drm_device *dev)
4111{
4112 drm_i915_private_t *dev_priv = dev->dev_private;
4113 int ret;
4114
4115 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4116 return -EIO;
4117
4118 if (IS_HASWELL(dev) && (I915_READ(0x120010) == 1))
4119 I915_WRITE(0x9008, I915_READ(0x9008) | 0xf0000);
4120
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004121 if (HAS_PCH_NOP(dev)) {
4122 u32 temp = I915_READ(GEN7_MSG_CTL);
4123 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4124 I915_WRITE(GEN7_MSG_CTL, temp);
4125 }
4126
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004127 i915_gem_l3_remap(dev);
4128
4129 i915_gem_init_swizzling(dev);
4130
4131 ret = i915_gem_init_rings(dev);
4132 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004133 return ret;
4134
Ben Widawsky254f9652012-06-04 14:42:42 -07004135 /*
4136 * XXX: There was some w/a described somewhere suggesting loading
4137 * contexts before PPGTT.
4138 */
4139 i915_gem_context_init(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004140 if (dev_priv->mm.aliasing_ppgtt) {
4141 ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
4142 if (ret) {
4143 i915_gem_cleanup_aliasing_ppgtt(dev);
4144 DRM_INFO("PPGTT enable failed. This is not fatal, but unexpected\n");
4145 }
4146 }
Daniel Vettere21af882012-02-09 20:53:27 +01004147
Chris Wilson68f95ba2010-05-27 13:18:22 +01004148 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004149}
4150
Chris Wilson1070a422012-04-24 15:47:41 +01004151int i915_gem_init(struct drm_device *dev)
4152{
4153 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004154 int ret;
4155
Chris Wilson1070a422012-04-24 15:47:41 +01004156 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004157
4158 if (IS_VALLEYVIEW(dev)) {
4159 /* VLVA0 (potential hack), BIOS isn't actually waking us */
4160 I915_WRITE(VLV_GTLC_WAKE_CTRL, 1);
4161 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) & 1) == 1, 10))
4162 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4163 }
4164
Ben Widawskyd7e50082012-12-18 10:31:25 -08004165 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004166
Chris Wilson1070a422012-04-24 15:47:41 +01004167 ret = i915_gem_init_hw(dev);
4168 mutex_unlock(&dev->struct_mutex);
4169 if (ret) {
4170 i915_gem_cleanup_aliasing_ppgtt(dev);
4171 return ret;
4172 }
4173
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004174 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4175 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4176 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01004177 return 0;
4178}
4179
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004180void
4181i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4182{
4183 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004184 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004185 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004186
Chris Wilsonb4519512012-05-11 14:29:30 +01004187 for_each_ring(ring, dev_priv, i)
4188 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004189}
4190
4191int
Eric Anholt673a3942008-07-30 12:06:12 -07004192i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4193 struct drm_file *file_priv)
4194{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004195 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004196 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004197
Jesse Barnes79e53942008-11-07 14:24:08 -08004198 if (drm_core_check_feature(dev, DRIVER_MODESET))
4199 return 0;
4200
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004201 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004202 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004203 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004204 }
4205
Eric Anholt673a3942008-07-30 12:06:12 -07004206 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004207 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004208
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004209 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004210 if (ret != 0) {
4211 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004212 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004213 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004214
Chris Wilson69dc4982010-10-19 10:36:51 +01004215 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004216 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004217
Chris Wilson5f353082010-06-07 14:03:03 +01004218 ret = drm_irq_install(dev);
4219 if (ret)
4220 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004221
Eric Anholt673a3942008-07-30 12:06:12 -07004222 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004223
4224cleanup_ringbuffer:
4225 mutex_lock(&dev->struct_mutex);
4226 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004227 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01004228 mutex_unlock(&dev->struct_mutex);
4229
4230 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004231}
4232
4233int
4234i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4235 struct drm_file *file_priv)
4236{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004237 struct drm_i915_private *dev_priv = dev->dev_private;
4238 int ret;
4239
Jesse Barnes79e53942008-11-07 14:24:08 -08004240 if (drm_core_check_feature(dev, DRIVER_MODESET))
4241 return 0;
4242
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004243 drm_irq_uninstall(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004244
4245 mutex_lock(&dev->struct_mutex);
4246 ret = i915_gem_idle(dev);
4247
4248 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4249 * We need to replace this with a semaphore, or something.
4250 * And not confound ums.mm_suspended!
4251 */
4252 if (ret != 0)
4253 dev_priv->ums.mm_suspended = 1;
4254 mutex_unlock(&dev->struct_mutex);
4255
4256 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004257}
4258
4259void
4260i915_gem_lastclose(struct drm_device *dev)
4261{
4262 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004263
Eric Anholte806b492009-01-22 09:56:58 -08004264 if (drm_core_check_feature(dev, DRIVER_MODESET))
4265 return;
4266
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004267 mutex_lock(&dev->struct_mutex);
Keith Packard6dbe2772008-10-14 21:41:13 -07004268 ret = i915_gem_idle(dev);
4269 if (ret)
4270 DRM_ERROR("failed to idle hardware: %d\n", ret);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004271 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004272}
4273
Chris Wilson64193402010-10-24 12:38:05 +01004274static void
4275init_ring_lists(struct intel_ring_buffer *ring)
4276{
4277 INIT_LIST_HEAD(&ring->active_list);
4278 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004279}
4280
Eric Anholt673a3942008-07-30 12:06:12 -07004281void
4282i915_gem_load(struct drm_device *dev)
4283{
4284 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004285 int i;
4286
4287 dev_priv->slab =
4288 kmem_cache_create("i915_gem_object",
4289 sizeof(struct drm_i915_gem_object), 0,
4290 SLAB_HWCACHE_ALIGN,
4291 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004292
Chris Wilson69dc4982010-10-19 10:36:51 +01004293 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004294 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004295 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4296 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004297 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004298 for (i = 0; i < I915_NUM_RINGS; i++)
4299 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004300 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004301 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004302 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4303 i915_gem_retire_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004304 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004305
Dave Airlie94400122010-07-20 13:15:31 +10004306 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4307 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004308 I915_WRITE(MI_ARB_STATE,
4309 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004310 }
4311
Chris Wilson72bfa192010-12-19 11:42:05 +00004312 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4313
Jesse Barnesde151cf2008-11-12 10:03:55 -08004314 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004315 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4316 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004317
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004318 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4319 dev_priv->num_fence_regs = 32;
4320 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004321 dev_priv->num_fence_regs = 16;
4322 else
4323 dev_priv->num_fence_regs = 8;
4324
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004325 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004326 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4327 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004328
Eric Anholt673a3942008-07-30 12:06:12 -07004329 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004330 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004331
Chris Wilsonce453d82011-02-21 14:43:56 +00004332 dev_priv->mm.interruptible = true;
4333
Chris Wilson17250b72010-10-28 12:51:39 +01004334 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4335 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4336 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004337}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004338
4339/*
4340 * Create a physically contiguous memory object for this object
4341 * e.g. for cursor + overlay regs
4342 */
Chris Wilson995b6762010-08-20 13:23:26 +01004343static int i915_gem_init_phys_object(struct drm_device *dev,
4344 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004345{
4346 drm_i915_private_t *dev_priv = dev->dev_private;
4347 struct drm_i915_gem_phys_object *phys_obj;
4348 int ret;
4349
4350 if (dev_priv->mm.phys_objs[id - 1] || !size)
4351 return 0;
4352
Eric Anholt9a298b22009-03-24 12:23:04 -07004353 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004354 if (!phys_obj)
4355 return -ENOMEM;
4356
4357 phys_obj->id = id;
4358
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004359 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004360 if (!phys_obj->handle) {
4361 ret = -ENOMEM;
4362 goto kfree_obj;
4363 }
4364#ifdef CONFIG_X86
4365 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4366#endif
4367
4368 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4369
4370 return 0;
4371kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004372 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004373 return ret;
4374}
4375
Chris Wilson995b6762010-08-20 13:23:26 +01004376static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004377{
4378 drm_i915_private_t *dev_priv = dev->dev_private;
4379 struct drm_i915_gem_phys_object *phys_obj;
4380
4381 if (!dev_priv->mm.phys_objs[id - 1])
4382 return;
4383
4384 phys_obj = dev_priv->mm.phys_objs[id - 1];
4385 if (phys_obj->cur_obj) {
4386 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4387 }
4388
4389#ifdef CONFIG_X86
4390 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4391#endif
4392 drm_pci_free(dev, phys_obj->handle);
4393 kfree(phys_obj);
4394 dev_priv->mm.phys_objs[id - 1] = NULL;
4395}
4396
4397void i915_gem_free_all_phys_object(struct drm_device *dev)
4398{
4399 int i;
4400
Dave Airlie260883c2009-01-22 17:58:49 +10004401 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004402 i915_gem_free_phys_object(dev, i);
4403}
4404
4405void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004406 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004407{
Al Viro496ad9a2013-01-23 17:07:38 -05004408 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004409 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004410 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004411 int page_count;
4412
Chris Wilson05394f32010-11-08 19:18:58 +00004413 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004414 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004415 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004416
Chris Wilson05394f32010-11-08 19:18:58 +00004417 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004418 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004419 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004420 if (!IS_ERR(page)) {
4421 char *dst = kmap_atomic(page);
4422 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4423 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004424
Chris Wilsone5281cc2010-10-28 13:45:36 +01004425 drm_clflush_pages(&page, 1);
4426
4427 set_page_dirty(page);
4428 mark_page_accessed(page);
4429 page_cache_release(page);
4430 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004431 }
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004432 i915_gem_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004433
Chris Wilson05394f32010-11-08 19:18:58 +00004434 obj->phys_obj->cur_obj = NULL;
4435 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004436}
4437
4438int
4439i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004440 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004441 int id,
4442 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004443{
Al Viro496ad9a2013-01-23 17:07:38 -05004444 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004445 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004446 int ret = 0;
4447 int page_count;
4448 int i;
4449
4450 if (id > I915_MAX_PHYS_OBJECT)
4451 return -EINVAL;
4452
Chris Wilson05394f32010-11-08 19:18:58 +00004453 if (obj->phys_obj) {
4454 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004455 return 0;
4456 i915_gem_detach_phys_object(dev, obj);
4457 }
4458
Dave Airlie71acb5e2008-12-30 20:31:46 +10004459 /* create a new object */
4460 if (!dev_priv->mm.phys_objs[id - 1]) {
4461 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004462 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004463 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004464 DRM_ERROR("failed to init phys object %d size: %zu\n",
4465 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004466 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004467 }
4468 }
4469
4470 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004471 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4472 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004473
Chris Wilson05394f32010-11-08 19:18:58 +00004474 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004475
4476 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004477 struct page *page;
4478 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004479
Hugh Dickins5949eac2011-06-27 16:18:18 -07004480 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004481 if (IS_ERR(page))
4482 return PTR_ERR(page);
4483
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004484 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004485 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004486 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004487 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004488
4489 mark_page_accessed(page);
4490 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004491 }
4492
4493 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004494}
4495
4496static int
Chris Wilson05394f32010-11-08 19:18:58 +00004497i915_gem_phys_pwrite(struct drm_device *dev,
4498 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004499 struct drm_i915_gem_pwrite *args,
4500 struct drm_file *file_priv)
4501{
Chris Wilson05394f32010-11-08 19:18:58 +00004502 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Ville Syrjälä2bb46292013-02-22 16:12:51 +02004503 char __user *user_data = to_user_ptr(args->data_ptr);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004504
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004505 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4506 unsigned long unwritten;
4507
4508 /* The physical object once assigned is fixed for the lifetime
4509 * of the obj, so we can safely drop the lock and continue
4510 * to access vaddr.
4511 */
4512 mutex_unlock(&dev->struct_mutex);
4513 unwritten = copy_from_user(vaddr, user_data, args->size);
4514 mutex_lock(&dev->struct_mutex);
4515 if (unwritten)
4516 return -EFAULT;
4517 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004518
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004519 i915_gem_chipset_flush(dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004520 return 0;
4521}
Eric Anholtb9624422009-06-03 07:27:35 +00004522
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004523void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004524{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004525 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004526
4527 /* Clean up our request list when the client is going away, so that
4528 * later retire_requests won't dereference our soon-to-be-gone
4529 * file_priv.
4530 */
Chris Wilson1c255952010-09-26 11:03:27 +01004531 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004532 while (!list_empty(&file_priv->mm.request_list)) {
4533 struct drm_i915_gem_request *request;
4534
4535 request = list_first_entry(&file_priv->mm.request_list,
4536 struct drm_i915_gem_request,
4537 client_list);
4538 list_del(&request->client_list);
4539 request->file_priv = NULL;
4540 }
Chris Wilson1c255952010-09-26 11:03:27 +01004541 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004542}
Chris Wilson31169712009-09-14 16:50:28 +01004543
Chris Wilson57745062012-11-21 13:04:04 +00004544static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
4545{
4546 if (!mutex_is_locked(mutex))
4547 return false;
4548
4549#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
4550 return mutex->owner == task;
4551#else
4552 /* Since UP may be pre-empted, we cannot assume that we own the lock */
4553 return false;
4554#endif
4555}
4556
Chris Wilson31169712009-09-14 16:50:28 +01004557static int
Ying Han1495f232011-05-24 17:12:27 -07004558i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004559{
Chris Wilson17250b72010-10-28 12:51:39 +01004560 struct drm_i915_private *dev_priv =
4561 container_of(shrinker,
4562 struct drm_i915_private,
4563 mm.inactive_shrinker);
4564 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02004565 struct drm_i915_gem_object *obj;
Ying Han1495f232011-05-24 17:12:27 -07004566 int nr_to_scan = sc->nr_to_scan;
Chris Wilson57745062012-11-21 13:04:04 +00004567 bool unlock = true;
Chris Wilson17250b72010-10-28 12:51:39 +01004568 int cnt;
4569
Chris Wilson57745062012-11-21 13:04:04 +00004570 if (!mutex_trylock(&dev->struct_mutex)) {
4571 if (!mutex_is_locked_by(&dev->struct_mutex, current))
4572 return 0;
4573
Daniel Vetter677feac2012-12-19 14:33:45 +01004574 if (dev_priv->mm.shrinker_no_lock_stealing)
4575 return 0;
4576
Chris Wilson57745062012-11-21 13:04:04 +00004577 unlock = false;
4578 }
Chris Wilson31169712009-09-14 16:50:28 +01004579
Chris Wilson6c085a72012-08-20 11:40:46 +02004580 if (nr_to_scan) {
4581 nr_to_scan -= i915_gem_purge(dev_priv, nr_to_scan);
4582 if (nr_to_scan > 0)
Daniel Vetter93927ca2013-01-10 18:03:00 +01004583 nr_to_scan -= __i915_gem_shrink(dev_priv, nr_to_scan,
4584 false);
4585 if (nr_to_scan > 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004586 i915_gem_shrink_all(dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +01004587 }
4588
Chris Wilson17250b72010-10-28 12:51:39 +01004589 cnt = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07004590 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004591 if (obj->pages_pin_count == 0)
4592 cnt += obj->base.size >> PAGE_SHIFT;
Xiong Zhang06755602013-07-05 18:53:29 +08004593 list_for_each_entry(obj, &dev_priv->mm.inactive_list, mm_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004594 if (obj->pin_count == 0 && obj->pages_pin_count == 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004595 cnt += obj->base.size >> PAGE_SHIFT;
Chris Wilson31169712009-09-14 16:50:28 +01004596
Chris Wilson57745062012-11-21 13:04:04 +00004597 if (unlock)
4598 mutex_unlock(&dev->struct_mutex);
Chris Wilson6c085a72012-08-20 11:40:46 +02004599 return cnt;
Chris Wilson31169712009-09-14 16:50:28 +01004600}