blob: 1ec5f7ef2cc2417b32cccdf55de09ec84649d608 [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
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#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
91i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010092{
93 struct drm_i915_private *dev_priv = dev->dev_private;
94 struct completion *x = &dev_priv->error_completion;
95 unsigned long flags;
96 int ret;
97
98 if (!atomic_read(&dev_priv->mm.wedged))
99 return 0;
100
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200101 /*
102 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
103 * userspace. If it takes that long something really bad is going on and
104 * we should simply try to bail out and fail as gracefully as possible.
105 */
106 ret = wait_for_completion_interruptible_timeout(x, 10*HZ);
107 if (ret == 0) {
108 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
109 return -EIO;
110 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100111 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200112 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113
Chris Wilson21dd3732011-01-26 15:55:56 +0000114 if (atomic_read(&dev_priv->mm.wedged)) {
115 /* GPU is hung, bump the completion count to account for
116 * the token we just consumed so that we never hit zero and
117 * end up waiting upon a subsequent completion event that
118 * will never happen.
119 */
120 spin_lock_irqsave(&x->wait.lock, flags);
121 x->done++;
122 spin_unlock_irqrestore(&x->wait.lock, flags);
123 }
124 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100125}
126
Chris Wilson54cf91d2010-11-25 18:00:26 +0000127int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100128{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100129 int ret;
130
Chris Wilson21dd3732011-01-26 15:55:56 +0000131 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100132 if (ret)
133 return ret;
134
135 ret = mutex_lock_interruptible(&dev->struct_mutex);
136 if (ret)
137 return ret;
138
Chris Wilson23bc5982010-09-29 16:10:57 +0100139 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100140 return 0;
141}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100142
Chris Wilson7d1c4802010-08-07 21:45:03 +0100143static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000144i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100145{
Chris Wilson6c085a72012-08-20 11:40:46 +0200146 return obj->gtt_space && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100147}
148
Eric Anholt673a3942008-07-30 12:06:12 -0700149int
150i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000151 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700152{
Eric Anholt673a3942008-07-30 12:06:12 -0700153 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000154
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200155 if (drm_core_check_feature(dev, DRIVER_MODESET))
156 return -ENODEV;
157
Chris Wilson20217462010-11-23 15:26:33 +0000158 if (args->gtt_start >= args->gtt_end ||
159 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
160 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700161
Daniel Vetterf534bc02012-03-26 22:37:04 +0200162 /* GEM with user mode setting was never supported on ilk and later. */
163 if (INTEL_INFO(dev)->gen >= 5)
164 return -ENODEV;
165
Eric Anholt673a3942008-07-30 12:06:12 -0700166 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200167 i915_gem_init_global_gtt(dev, args->gtt_start,
168 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700169 mutex_unlock(&dev->struct_mutex);
170
Chris Wilson20217462010-11-23 15:26:33 +0000171 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700172}
173
Eric Anholt5a125c32008-10-22 21:40:13 -0700174int
175i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000176 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700177{
Chris Wilson73aa8082010-09-30 11:46:12 +0100178 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700179 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000180 struct drm_i915_gem_object *obj;
181 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700182
Chris Wilson6299f992010-11-24 12:23:44 +0000183 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100184 mutex_lock(&dev->struct_mutex);
Chris Wilson6c085a72012-08-20 11:40:46 +0200185 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list)
Chris Wilson1b502472012-04-24 15:47:30 +0100186 if (obj->pin_count)
187 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100188 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700189
Chris Wilson6299f992010-11-24 12:23:44 +0000190 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400191 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000192
Eric Anholt5a125c32008-10-22 21:40:13 -0700193 return 0;
194}
195
Dave Airlieff72145b2011-02-07 12:16:14 +1000196static int
197i915_gem_create(struct drm_file *file,
198 struct drm_device *dev,
199 uint64_t size,
200 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700201{
Chris Wilson05394f32010-11-08 19:18:58 +0000202 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300203 int ret;
204 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700205
Dave Airlieff72145b2011-02-07 12:16:14 +1000206 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200207 if (size == 0)
208 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700209
210 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000211 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700212 if (obj == NULL)
213 return -ENOMEM;
214
Chris Wilson05394f32010-11-08 19:18:58 +0000215 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100216 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000217 drm_gem_object_release(&obj->base);
218 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100219 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700220 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100221 }
222
Chris Wilson202f2fe2010-10-14 13:20:40 +0100223 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000224 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100225 trace_i915_gem_object_create(obj);
226
Dave Airlieff72145b2011-02-07 12:16:14 +1000227 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700228 return 0;
229}
230
Dave Airlieff72145b2011-02-07 12:16:14 +1000231int
232i915_gem_dumb_create(struct drm_file *file,
233 struct drm_device *dev,
234 struct drm_mode_create_dumb *args)
235{
236 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000237 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000238 args->size = args->pitch * args->height;
239 return i915_gem_create(file, dev,
240 args->size, &args->handle);
241}
242
243int i915_gem_dumb_destroy(struct drm_file *file,
244 struct drm_device *dev,
245 uint32_t handle)
246{
247 return drm_gem_handle_delete(file, handle);
248}
249
250/**
251 * Creates a new mm object and returns a handle to it.
252 */
253int
254i915_gem_create_ioctl(struct drm_device *dev, void *data,
255 struct drm_file *file)
256{
257 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200258
Dave Airlieff72145b2011-02-07 12:16:14 +1000259 return i915_gem_create(file, dev,
260 args->size, &args->handle);
261}
262
Chris Wilson05394f32010-11-08 19:18:58 +0000263static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700264{
Chris Wilson05394f32010-11-08 19:18:58 +0000265 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700266
267 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000268 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700269}
270
Daniel Vetter8c599672011-12-14 13:57:31 +0100271static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100272__copy_to_user_swizzled(char __user *cpu_vaddr,
273 const char *gpu_vaddr, int gpu_offset,
274 int length)
275{
276 int ret, cpu_offset = 0;
277
278 while (length > 0) {
279 int cacheline_end = ALIGN(gpu_offset + 1, 64);
280 int this_length = min(cacheline_end - gpu_offset, length);
281 int swizzled_gpu_offset = gpu_offset ^ 64;
282
283 ret = __copy_to_user(cpu_vaddr + cpu_offset,
284 gpu_vaddr + swizzled_gpu_offset,
285 this_length);
286 if (ret)
287 return ret + length;
288
289 cpu_offset += this_length;
290 gpu_offset += this_length;
291 length -= this_length;
292 }
293
294 return 0;
295}
296
297static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700298__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
299 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100300 int length)
301{
302 int ret, cpu_offset = 0;
303
304 while (length > 0) {
305 int cacheline_end = ALIGN(gpu_offset + 1, 64);
306 int this_length = min(cacheline_end - gpu_offset, length);
307 int swizzled_gpu_offset = gpu_offset ^ 64;
308
309 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
310 cpu_vaddr + cpu_offset,
311 this_length);
312 if (ret)
313 return ret + length;
314
315 cpu_offset += this_length;
316 gpu_offset += this_length;
317 length -= this_length;
318 }
319
320 return 0;
321}
322
Daniel Vetterd174bd62012-03-25 19:47:40 +0200323/* Per-page copy function for the shmem pread fastpath.
324 * Flushes invalid cachelines before reading the target if
325 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700326static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200327shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
328 char __user *user_data,
329 bool page_do_bit17_swizzling, bool needs_clflush)
330{
331 char *vaddr;
332 int ret;
333
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200334 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200335 return -EINVAL;
336
337 vaddr = kmap_atomic(page);
338 if (needs_clflush)
339 drm_clflush_virt_range(vaddr + shmem_page_offset,
340 page_length);
341 ret = __copy_to_user_inatomic(user_data,
342 vaddr + shmem_page_offset,
343 page_length);
344 kunmap_atomic(vaddr);
345
346 return ret;
347}
348
Daniel Vetter23c18c72012-03-25 19:47:42 +0200349static void
350shmem_clflush_swizzled_range(char *addr, unsigned long length,
351 bool swizzled)
352{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200353 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200354 unsigned long start = (unsigned long) addr;
355 unsigned long end = (unsigned long) addr + length;
356
357 /* For swizzling simply ensure that we always flush both
358 * channels. Lame, but simple and it works. Swizzled
359 * pwrite/pread is far from a hotpath - current userspace
360 * doesn't use it at all. */
361 start = round_down(start, 128);
362 end = round_up(end, 128);
363
364 drm_clflush_virt_range((void *)start, end - start);
365 } else {
366 drm_clflush_virt_range(addr, length);
367 }
368
369}
370
Daniel Vetterd174bd62012-03-25 19:47:40 +0200371/* Only difference to the fast-path function is that this can handle bit17
372 * and uses non-atomic copy and kmap functions. */
373static int
374shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
375 char __user *user_data,
376 bool page_do_bit17_swizzling, bool needs_clflush)
377{
378 char *vaddr;
379 int ret;
380
381 vaddr = kmap(page);
382 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200383 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
384 page_length,
385 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200386
387 if (page_do_bit17_swizzling)
388 ret = __copy_to_user_swizzled(user_data,
389 vaddr, shmem_page_offset,
390 page_length);
391 else
392 ret = __copy_to_user(user_data,
393 vaddr + shmem_page_offset,
394 page_length);
395 kunmap(page);
396
397 return ret;
398}
399
Eric Anholteb014592009-03-10 11:44:52 -0700400static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200401i915_gem_shmem_pread(struct drm_device *dev,
402 struct drm_i915_gem_object *obj,
403 struct drm_i915_gem_pread *args,
404 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700405{
Chris Wilson05394f32010-11-08 19:18:58 +0000406 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100407 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700408 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100409 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100410 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100411 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200412 int hit_slowpath = 0;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200413 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200414 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200415 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700416
Daniel Vetter8461d222011-12-14 13:57:32 +0100417 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700418 remain = args->size;
419
Daniel Vetter8461d222011-12-14 13:57:32 +0100420 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700421
Daniel Vetter84897312012-03-25 19:47:31 +0200422 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
423 /* If we're not in the cpu read domain, set ourself into the gtt
424 * read domain and manually flush cachelines (if required). This
425 * optimizes for the case when the gpu will dirty the data
426 * anyway again before the next pread happens. */
427 if (obj->cache_level == I915_CACHE_NONE)
428 needs_clflush = 1;
Chris Wilson6c085a72012-08-20 11:40:46 +0200429 if (obj->gtt_space) {
430 ret = i915_gem_object_set_to_gtt_domain(obj, false);
431 if (ret)
432 return ret;
433 }
Daniel Vetter84897312012-03-25 19:47:31 +0200434 }
Eric Anholteb014592009-03-10 11:44:52 -0700435
Eric Anholteb014592009-03-10 11:44:52 -0700436 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100437
Eric Anholteb014592009-03-10 11:44:52 -0700438 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100439 struct page *page;
440
Eric Anholteb014592009-03-10 11:44:52 -0700441 /* Operation in this page
442 *
Eric Anholteb014592009-03-10 11:44:52 -0700443 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700444 * page_length = bytes to copy for this page
445 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100446 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700447 page_length = remain;
448 if ((shmem_page_offset + page_length) > PAGE_SIZE)
449 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700450
Daniel Vetter692a5762012-03-25 19:47:34 +0200451 if (obj->pages) {
452 page = obj->pages[offset >> PAGE_SHIFT];
453 release_page = 0;
454 } else {
455 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
456 if (IS_ERR(page)) {
457 ret = PTR_ERR(page);
458 goto out;
459 }
460 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000461 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100462
Daniel Vetter8461d222011-12-14 13:57:32 +0100463 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
464 (page_to_phys(page) & (1 << 17)) != 0;
465
Daniel Vetterd174bd62012-03-25 19:47:40 +0200466 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
467 user_data, page_do_bit17_swizzling,
468 needs_clflush);
469 if (ret == 0)
470 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700471
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200472 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200473 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200474 mutex_unlock(&dev->struct_mutex);
475
Daniel Vetter96d79b52012-03-25 19:47:36 +0200476 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200477 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200478 /* Userspace is tricking us, but we've already clobbered
479 * its pages with the prefault and promised to write the
480 * data up to the first fault. Hence ignore any errors
481 * and just continue. */
482 (void)ret;
483 prefaulted = 1;
484 }
485
Daniel Vetterd174bd62012-03-25 19:47:40 +0200486 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
487 user_data, page_do_bit17_swizzling,
488 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700489
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200490 mutex_lock(&dev->struct_mutex);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100491 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200492next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100493 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200494 if (release_page)
495 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100496
Daniel Vetter8461d222011-12-14 13:57:32 +0100497 if (ret) {
498 ret = -EFAULT;
499 goto out;
500 }
501
Eric Anholteb014592009-03-10 11:44:52 -0700502 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100503 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700504 offset += page_length;
505 }
506
Chris Wilson4f27b752010-10-14 15:26:45 +0100507out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200508 if (hit_slowpath) {
509 /* Fixup: Kill any reinstated backing storage pages */
510 if (obj->madv == __I915_MADV_PURGED)
511 i915_gem_object_truncate(obj);
512 }
Eric Anholteb014592009-03-10 11:44:52 -0700513
514 return ret;
515}
516
Eric Anholt673a3942008-07-30 12:06:12 -0700517/**
518 * Reads data from the object referenced by handle.
519 *
520 * On error, the contents of *data are undefined.
521 */
522int
523i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000524 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700525{
526 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000527 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100528 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700529
Chris Wilson51311d02010-11-17 09:10:42 +0000530 if (args->size == 0)
531 return 0;
532
533 if (!access_ok(VERIFY_WRITE,
534 (char __user *)(uintptr_t)args->data_ptr,
535 args->size))
536 return -EFAULT;
537
Chris Wilson4f27b752010-10-14 15:26:45 +0100538 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100539 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100540 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700541
Chris Wilson05394f32010-11-08 19:18:58 +0000542 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000543 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100544 ret = -ENOENT;
545 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100546 }
Eric Anholt673a3942008-07-30 12:06:12 -0700547
Chris Wilson7dcd2492010-09-26 20:21:44 +0100548 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000549 if (args->offset > obj->base.size ||
550 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100551 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100552 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100553 }
554
Daniel Vetter1286ff72012-05-10 15:25:09 +0200555 /* prime objects have no backing filp to GEM pread/pwrite
556 * pages from.
557 */
558 if (!obj->base.filp) {
559 ret = -EINVAL;
560 goto out;
561 }
562
Chris Wilsondb53a302011-02-03 11:57:46 +0000563 trace_i915_gem_object_pread(obj, args->offset, args->size);
564
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200565 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700566
Chris Wilson35b62a82010-09-26 20:23:38 +0100567out:
Chris Wilson05394f32010-11-08 19:18:58 +0000568 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100569unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100570 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700571 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700572}
573
Keith Packard0839ccb2008-10-30 19:38:48 -0700574/* This is the fast write path which cannot handle
575 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700576 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700577
Keith Packard0839ccb2008-10-30 19:38:48 -0700578static inline int
579fast_user_write(struct io_mapping *mapping,
580 loff_t page_base, int page_offset,
581 char __user *user_data,
582 int length)
583{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700584 void __iomem *vaddr_atomic;
585 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700586 unsigned long unwritten;
587
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700588 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700589 /* We can use the cpu mem copy function because this is X86. */
590 vaddr = (void __force*)vaddr_atomic + page_offset;
591 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700592 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700593 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100594 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700595}
596
Eric Anholt3de09aa2009-03-09 09:42:23 -0700597/**
598 * This is the fast pwrite path, where we copy the data directly from the
599 * user into the GTT, uncached.
600 */
Eric Anholt673a3942008-07-30 12:06:12 -0700601static int
Chris Wilson05394f32010-11-08 19:18:58 +0000602i915_gem_gtt_pwrite_fast(struct drm_device *dev,
603 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700604 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000605 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700606{
Keith Packard0839ccb2008-10-30 19:38:48 -0700607 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700608 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700609 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700610 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200611 int page_offset, page_length, ret;
612
Chris Wilson86a1ee22012-08-11 15:41:04 +0100613 ret = i915_gem_object_pin(obj, 0, true, true);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200614 if (ret)
615 goto out;
616
617 ret = i915_gem_object_set_to_gtt_domain(obj, true);
618 if (ret)
619 goto out_unpin;
620
621 ret = i915_gem_object_put_fence(obj);
622 if (ret)
623 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700624
625 user_data = (char __user *) (uintptr_t) args->data_ptr;
626 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700627
Chris Wilson05394f32010-11-08 19:18:58 +0000628 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700629
630 while (remain > 0) {
631 /* Operation in this page
632 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700633 * page_base = page offset within aperture
634 * page_offset = offset within page
635 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700636 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100637 page_base = offset & PAGE_MASK;
638 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700639 page_length = remain;
640 if ((page_offset + remain) > PAGE_SIZE)
641 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700642
Keith Packard0839ccb2008-10-30 19:38:48 -0700643 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700644 * source page isn't available. Return the error and we'll
645 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700646 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100647 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200648 page_offset, user_data, page_length)) {
649 ret = -EFAULT;
650 goto out_unpin;
651 }
Eric Anholt673a3942008-07-30 12:06:12 -0700652
Keith Packard0839ccb2008-10-30 19:38:48 -0700653 remain -= page_length;
654 user_data += page_length;
655 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700656 }
Eric Anholt673a3942008-07-30 12:06:12 -0700657
Daniel Vetter935aaa62012-03-25 19:47:35 +0200658out_unpin:
659 i915_gem_object_unpin(obj);
660out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700661 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700662}
663
Daniel Vetterd174bd62012-03-25 19:47:40 +0200664/* Per-page copy function for the shmem pwrite fastpath.
665 * Flushes invalid cachelines before writing to the target if
666 * needs_clflush_before is set and flushes out any written cachelines after
667 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700668static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200669shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
670 char __user *user_data,
671 bool page_do_bit17_swizzling,
672 bool needs_clflush_before,
673 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700674{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200675 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700676 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700677
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200678 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200679 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700680
Daniel Vetterd174bd62012-03-25 19:47:40 +0200681 vaddr = kmap_atomic(page);
682 if (needs_clflush_before)
683 drm_clflush_virt_range(vaddr + shmem_page_offset,
684 page_length);
685 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
686 user_data,
687 page_length);
688 if (needs_clflush_after)
689 drm_clflush_virt_range(vaddr + shmem_page_offset,
690 page_length);
691 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700692
693 return ret;
694}
695
Daniel Vetterd174bd62012-03-25 19:47:40 +0200696/* Only difference to the fast-path function is that this can handle bit17
697 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700698static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200699shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
700 char __user *user_data,
701 bool page_do_bit17_swizzling,
702 bool needs_clflush_before,
703 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700704{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200705 char *vaddr;
706 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700707
Daniel Vetterd174bd62012-03-25 19:47:40 +0200708 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200709 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200710 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
711 page_length,
712 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200713 if (page_do_bit17_swizzling)
714 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100715 user_data,
716 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200717 else
718 ret = __copy_from_user(vaddr + shmem_page_offset,
719 user_data,
720 page_length);
721 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200722 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
723 page_length,
724 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200725 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100726
Daniel Vetterd174bd62012-03-25 19:47:40 +0200727 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700728}
729
Eric Anholt40123c12009-03-09 13:42:30 -0700730static int
Daniel Vettere244a442012-03-25 19:47:28 +0200731i915_gem_shmem_pwrite(struct drm_device *dev,
732 struct drm_i915_gem_object *obj,
733 struct drm_i915_gem_pwrite *args,
734 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700735{
Chris Wilson05394f32010-11-08 19:18:58 +0000736 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700737 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100738 loff_t offset;
739 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100740 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100741 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200742 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200743 int needs_clflush_after = 0;
744 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200745 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700746
Daniel Vetter8c599672011-12-14 13:57:31 +0100747 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700748 remain = args->size;
749
Daniel Vetter8c599672011-12-14 13:57:31 +0100750 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700751
Daniel Vetter58642882012-03-25 19:47:37 +0200752 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
753 /* If we're not in the cpu write domain, set ourself into the gtt
754 * write domain and manually flush cachelines (if required). This
755 * optimizes for the case when the gpu will use the data
756 * right away and we therefore have to clflush anyway. */
757 if (obj->cache_level == I915_CACHE_NONE)
758 needs_clflush_after = 1;
Chris Wilson6c085a72012-08-20 11:40:46 +0200759 if (obj->gtt_space) {
760 ret = i915_gem_object_set_to_gtt_domain(obj, true);
761 if (ret)
762 return ret;
763 }
Daniel Vetter58642882012-03-25 19:47:37 +0200764 }
765 /* Same trick applies for invalidate partially written cachelines before
766 * writing. */
767 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
768 && obj->cache_level == I915_CACHE_NONE)
769 needs_clflush_before = 1;
770
Eric Anholt40123c12009-03-09 13:42:30 -0700771 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000772 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700773
774 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100775 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200776 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100777
Eric Anholt40123c12009-03-09 13:42:30 -0700778 /* Operation in this page
779 *
Eric Anholt40123c12009-03-09 13:42:30 -0700780 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700781 * page_length = bytes to copy for this page
782 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100783 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700784
785 page_length = remain;
786 if ((shmem_page_offset + page_length) > PAGE_SIZE)
787 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700788
Daniel Vetter58642882012-03-25 19:47:37 +0200789 /* If we don't overwrite a cacheline completely we need to be
790 * careful to have up-to-date data by first clflushing. Don't
791 * overcomplicate things and flush the entire patch. */
792 partial_cacheline_write = needs_clflush_before &&
793 ((shmem_page_offset | page_length)
794 & (boot_cpu_data.x86_clflush_size - 1));
795
Daniel Vetter692a5762012-03-25 19:47:34 +0200796 if (obj->pages) {
797 page = obj->pages[offset >> PAGE_SHIFT];
798 release_page = 0;
799 } else {
800 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
801 if (IS_ERR(page)) {
802 ret = PTR_ERR(page);
803 goto out;
804 }
805 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100806 }
807
Daniel Vetter8c599672011-12-14 13:57:31 +0100808 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
809 (page_to_phys(page) & (1 << 17)) != 0;
810
Daniel Vetterd174bd62012-03-25 19:47:40 +0200811 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
812 user_data, page_do_bit17_swizzling,
813 partial_cacheline_write,
814 needs_clflush_after);
815 if (ret == 0)
816 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700817
Daniel Vettere244a442012-03-25 19:47:28 +0200818 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200819 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200820 mutex_unlock(&dev->struct_mutex);
821
Daniel Vetterd174bd62012-03-25 19:47:40 +0200822 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
823 user_data, page_do_bit17_swizzling,
824 partial_cacheline_write,
825 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700826
Daniel Vettere244a442012-03-25 19:47:28 +0200827 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200828 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200829next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100830 set_page_dirty(page);
831 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200832 if (release_page)
833 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100834
Daniel Vetter8c599672011-12-14 13:57:31 +0100835 if (ret) {
836 ret = -EFAULT;
837 goto out;
838 }
839
Eric Anholt40123c12009-03-09 13:42:30 -0700840 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100841 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700842 offset += page_length;
843 }
844
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100845out:
Daniel Vettere244a442012-03-25 19:47:28 +0200846 if (hit_slowpath) {
847 /* Fixup: Kill any reinstated backing storage pages */
848 if (obj->madv == __I915_MADV_PURGED)
849 i915_gem_object_truncate(obj);
850 /* and flush dirty cachelines in case the object isn't in the cpu write
851 * domain anymore. */
852 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
853 i915_gem_clflush_object(obj);
854 intel_gtt_chipset_flush();
855 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100856 }
Eric Anholt40123c12009-03-09 13:42:30 -0700857
Daniel Vetter58642882012-03-25 19:47:37 +0200858 if (needs_clflush_after)
859 intel_gtt_chipset_flush();
860
Eric Anholt40123c12009-03-09 13:42:30 -0700861 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700862}
863
864/**
865 * Writes data to the object referenced by handle.
866 *
867 * On error, the contents of the buffer that were to be modified are undefined.
868 */
869int
870i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100871 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700872{
873 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000874 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000875 int ret;
876
877 if (args->size == 0)
878 return 0;
879
880 if (!access_ok(VERIFY_READ,
881 (char __user *)(uintptr_t)args->data_ptr,
882 args->size))
883 return -EFAULT;
884
Daniel Vetterf56f8212012-03-25 19:47:41 +0200885 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
886 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000887 if (ret)
888 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700889
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100890 ret = i915_mutex_lock_interruptible(dev);
891 if (ret)
892 return ret;
893
Chris Wilson05394f32010-11-08 19:18:58 +0000894 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000895 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100896 ret = -ENOENT;
897 goto unlock;
898 }
Eric Anholt673a3942008-07-30 12:06:12 -0700899
Chris Wilson7dcd2492010-09-26 20:21:44 +0100900 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000901 if (args->offset > obj->base.size ||
902 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100903 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100904 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100905 }
906
Daniel Vetter1286ff72012-05-10 15:25:09 +0200907 /* prime objects have no backing filp to GEM pread/pwrite
908 * pages from.
909 */
910 if (!obj->base.filp) {
911 ret = -EINVAL;
912 goto out;
913 }
914
Chris Wilsondb53a302011-02-03 11:57:46 +0000915 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
916
Daniel Vetter935aaa62012-03-25 19:47:35 +0200917 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700918 /* We can only do the GTT pwrite on untiled buffers, as otherwise
919 * it would end up going through the fenced access, and we'll get
920 * different detiling behavior between reading and writing.
921 * pread/pwrite currently are reading and writing from the CPU
922 * perspective, requiring manual detiling by the client.
923 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100924 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100925 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100926 goto out;
927 }
928
Chris Wilson86a1ee22012-08-11 15:41:04 +0100929 if (obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200930 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100931 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100932 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200933 /* Note that the gtt paths might fail with non-page-backed user
934 * pointers (e.g. gtt mappings when moving data between
935 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700936 }
Eric Anholt673a3942008-07-30 12:06:12 -0700937
Chris Wilson86a1ee22012-08-11 15:41:04 +0100938 if (ret == -EFAULT || ret == -ENOSPC)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200939 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100940
Chris Wilson35b62a82010-09-26 20:23:38 +0100941out:
Chris Wilson05394f32010-11-08 19:18:58 +0000942 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100943unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100944 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700945 return ret;
946}
947
948/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800949 * Called when user space prepares to use an object with the CPU, either
950 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700951 */
952int
953i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000954 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700955{
956 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000957 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800958 uint32_t read_domains = args->read_domains;
959 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700960 int ret;
961
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800962 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100963 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800964 return -EINVAL;
965
Chris Wilson21d509e2009-06-06 09:46:02 +0100966 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800967 return -EINVAL;
968
969 /* Having something in the write domain implies it's in the read
970 * domain, and only that read domain. Enforce that in the request.
971 */
972 if (write_domain != 0 && read_domains != write_domain)
973 return -EINVAL;
974
Chris Wilson76c1dec2010-09-25 11:22:51 +0100975 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100976 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100977 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700978
Chris Wilson05394f32010-11-08 19:18:58 +0000979 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000980 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100981 ret = -ENOENT;
982 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100983 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700984
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800985 if (read_domains & I915_GEM_DOMAIN_GTT) {
986 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800987
988 /* Silently promote "you're not bound, there was nothing to do"
989 * to success, since the client was just asking us to
990 * make sure everything was done.
991 */
992 if (ret == -EINVAL)
993 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800994 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800995 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800996 }
997
Chris Wilson05394f32010-11-08 19:18:58 +0000998 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100999unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001000 mutex_unlock(&dev->struct_mutex);
1001 return ret;
1002}
1003
1004/**
1005 * Called when user space has done writes to this buffer
1006 */
1007int
1008i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001009 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001010{
1011 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001012 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001013 int ret = 0;
1014
Chris Wilson76c1dec2010-09-25 11:22:51 +01001015 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001016 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001017 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001018
Chris Wilson05394f32010-11-08 19:18:58 +00001019 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001020 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001021 ret = -ENOENT;
1022 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001023 }
1024
Eric Anholt673a3942008-07-30 12:06:12 -07001025 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001026 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001027 i915_gem_object_flush_cpu_write_domain(obj);
1028
Chris Wilson05394f32010-11-08 19:18:58 +00001029 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001030unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001031 mutex_unlock(&dev->struct_mutex);
1032 return ret;
1033}
1034
1035/**
1036 * Maps the contents of an object, returning the address it is mapped
1037 * into.
1038 *
1039 * While the mapping holds a reference on the contents of the object, it doesn't
1040 * imply a ref on the object itself.
1041 */
1042int
1043i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001044 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001045{
1046 struct drm_i915_gem_mmap *args = data;
1047 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001048 unsigned long addr;
1049
Chris Wilson05394f32010-11-08 19:18:58 +00001050 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001051 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001052 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001053
Daniel Vetter1286ff72012-05-10 15:25:09 +02001054 /* prime objects have no backing filp to GEM mmap
1055 * pages from.
1056 */
1057 if (!obj->filp) {
1058 drm_gem_object_unreference_unlocked(obj);
1059 return -EINVAL;
1060 }
1061
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001062 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001063 PROT_READ | PROT_WRITE, MAP_SHARED,
1064 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001065 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001066 if (IS_ERR((void *)addr))
1067 return addr;
1068
1069 args->addr_ptr = (uint64_t) addr;
1070
1071 return 0;
1072}
1073
Jesse Barnesde151cf2008-11-12 10:03:55 -08001074/**
1075 * i915_gem_fault - fault a page into the GTT
1076 * vma: VMA in question
1077 * vmf: fault info
1078 *
1079 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1080 * from userspace. The fault handler takes care of binding the object to
1081 * the GTT (if needed), allocating and programming a fence register (again,
1082 * only if needed based on whether the old reg is still valid or the object
1083 * is tiled) and inserting a new PTE into the faulting process.
1084 *
1085 * Note that the faulting process may involve evicting existing objects
1086 * from the GTT and/or fence registers to make room. So performance may
1087 * suffer if the GTT working set is large or there are few fence registers
1088 * left.
1089 */
1090int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1091{
Chris Wilson05394f32010-11-08 19:18:58 +00001092 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1093 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001094 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001095 pgoff_t page_offset;
1096 unsigned long pfn;
1097 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001098 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001099
1100 /* We don't use vmf->pgoff since that has the fake offset */
1101 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1102 PAGE_SHIFT;
1103
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001104 ret = i915_mutex_lock_interruptible(dev);
1105 if (ret)
1106 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001107
Chris Wilsondb53a302011-02-03 11:57:46 +00001108 trace_i915_gem_object_fault(obj, page_offset, true, write);
1109
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001110 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001111 if (!obj->map_and_fenceable) {
1112 ret = i915_gem_object_unbind(obj);
1113 if (ret)
1114 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001115 }
Chris Wilson05394f32010-11-08 19:18:58 +00001116 if (!obj->gtt_space) {
Chris Wilson86a1ee22012-08-11 15:41:04 +01001117 ret = i915_gem_object_bind_to_gtt(obj, 0, true, false);
Chris Wilsonc7150892009-09-23 00:43:56 +01001118 if (ret)
1119 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001120
Eric Anholte92d03b2011-06-14 16:43:09 -07001121 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1122 if (ret)
1123 goto unlock;
1124 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001125
Daniel Vetter74898d72012-02-15 23:50:22 +01001126 if (!obj->has_global_gtt_mapping)
1127 i915_gem_gtt_bind_object(obj, obj->cache_level);
1128
Chris Wilson06d98132012-04-17 15:31:24 +01001129 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001130 if (ret)
1131 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001132
Chris Wilson05394f32010-11-08 19:18:58 +00001133 if (i915_gem_object_is_inactive(obj))
1134 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001135
Chris Wilson6299f992010-11-24 12:23:44 +00001136 obj->fault_mappable = true;
1137
Daniel Vetterdd2757f2012-06-07 15:55:57 +02001138 pfn = ((dev_priv->mm.gtt_base_addr + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001139 page_offset;
1140
1141 /* Finally, remap it using the new GTT offset */
1142 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001143unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001144 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001145out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001146 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001147 case -EIO:
Daniel Vettera9340cc2012-07-04 22:18:42 +02001148 /* If this -EIO is due to a gpu hang, give the reset code a
1149 * chance to clean up the mess. Otherwise return the proper
1150 * SIGBUS. */
1151 if (!atomic_read(&dev_priv->mm.wedged))
1152 return VM_FAULT_SIGBUS;
Chris Wilson045e7692010-11-07 09:18:22 +00001153 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001154 /* Give the error handler a chance to run and move the
1155 * objects off the GPU active list. Next time we service the
1156 * fault, we should be able to transition the page into the
1157 * GTT without touching the GPU (and so avoid further
1158 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1159 * with coherency, just lost writes.
1160 */
Chris Wilson045e7692010-11-07 09:18:22 +00001161 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001162 case 0:
1163 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001164 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001165 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001166 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001167 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001168 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001169 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001170 }
1171}
1172
1173/**
Chris Wilson901782b2009-07-10 08:18:50 +01001174 * i915_gem_release_mmap - remove physical page mappings
1175 * @obj: obj in question
1176 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001177 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001178 * relinquish ownership of the pages back to the system.
1179 *
1180 * It is vital that we remove the page mapping if we have mapped a tiled
1181 * object through the GTT and then lose the fence register due to
1182 * resource pressure. Similarly if the object has been moved out of the
1183 * aperture, than pages mapped into userspace must be revoked. Removing the
1184 * mapping will then trigger a page fault on the next user access, allowing
1185 * fixup by i915_gem_fault().
1186 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001187void
Chris Wilson05394f32010-11-08 19:18:58 +00001188i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001189{
Chris Wilson6299f992010-11-24 12:23:44 +00001190 if (!obj->fault_mappable)
1191 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001192
Chris Wilsonf6e47882011-03-20 21:09:12 +00001193 if (obj->base.dev->dev_mapping)
1194 unmap_mapping_range(obj->base.dev->dev_mapping,
1195 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1196 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001197
Chris Wilson6299f992010-11-24 12:23:44 +00001198 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001199}
1200
Chris Wilson92b88ae2010-11-09 11:47:32 +00001201static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001202i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001203{
Chris Wilsone28f8712011-07-18 13:11:49 -07001204 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001205
1206 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001207 tiling_mode == I915_TILING_NONE)
1208 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001209
1210 /* Previous chips need a power-of-two fence region when tiling */
1211 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001212 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001213 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001214 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001215
Chris Wilsone28f8712011-07-18 13:11:49 -07001216 while (gtt_size < size)
1217 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001218
Chris Wilsone28f8712011-07-18 13:11:49 -07001219 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001220}
1221
Jesse Barnesde151cf2008-11-12 10:03:55 -08001222/**
1223 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1224 * @obj: object to check
1225 *
1226 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001227 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001228 */
1229static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001230i915_gem_get_gtt_alignment(struct drm_device *dev,
1231 uint32_t size,
1232 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001233{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001234 /*
1235 * Minimum alignment is 4k (GTT page size), but might be greater
1236 * if a fence register is needed for the object.
1237 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001238 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001239 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001240 return 4096;
1241
1242 /*
1243 * Previous chips need to be aligned to the size of the smallest
1244 * fence register that can contain the object.
1245 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001246 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001247}
1248
Daniel Vetter5e783302010-11-14 22:32:36 +01001249/**
1250 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1251 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001252 * @dev: the device
1253 * @size: size of the object
1254 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001255 *
1256 * Return the required GTT alignment for an object, only taking into account
1257 * unfenced tiled surface requirements.
1258 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001259uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001260i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1261 uint32_t size,
1262 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001263{
Daniel Vetter5e783302010-11-14 22:32:36 +01001264 /*
1265 * Minimum alignment is 4k (GTT page size) for sane hw.
1266 */
1267 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001268 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001269 return 4096;
1270
Chris Wilsone28f8712011-07-18 13:11:49 -07001271 /* Previous hardware however needs to be aligned to a power-of-two
1272 * tile height. The simplest method for determining this is to reuse
1273 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001274 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001275 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001276}
1277
Chris Wilsond8cb5082012-08-11 15:41:03 +01001278static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1279{
1280 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1281 int ret;
1282
1283 if (obj->base.map_list.map)
1284 return 0;
1285
1286 ret = drm_gem_create_mmap_offset(&obj->base);
1287 if (ret != -ENOSPC)
1288 return ret;
1289
1290 /* Badly fragmented mmap space? The only way we can recover
1291 * space is by destroying unwanted objects. We can't randomly release
1292 * mmap_offsets as userspace expects them to be persistent for the
1293 * lifetime of the objects. The closest we can is to release the
1294 * offsets on purgeable objects by truncating it and marking it purged,
1295 * which prevents userspace from ever using that object again.
1296 */
1297 i915_gem_purge(dev_priv, obj->base.size >> PAGE_SHIFT);
1298 ret = drm_gem_create_mmap_offset(&obj->base);
1299 if (ret != -ENOSPC)
1300 return ret;
1301
1302 i915_gem_shrink_all(dev_priv);
1303 return drm_gem_create_mmap_offset(&obj->base);
1304}
1305
1306static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1307{
1308 if (!obj->base.map_list.map)
1309 return;
1310
1311 drm_gem_free_mmap_offset(&obj->base);
1312}
1313
Jesse Barnesde151cf2008-11-12 10:03:55 -08001314int
Dave Airlieff72145b2011-02-07 12:16:14 +10001315i915_gem_mmap_gtt(struct drm_file *file,
1316 struct drm_device *dev,
1317 uint32_t handle,
1318 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001319{
Chris Wilsonda761a62010-10-27 17:37:08 +01001320 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001321 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001322 int ret;
1323
Chris Wilson76c1dec2010-09-25 11:22:51 +01001324 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001325 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001326 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001327
Dave Airlieff72145b2011-02-07 12:16:14 +10001328 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001329 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001330 ret = -ENOENT;
1331 goto unlock;
1332 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001333
Chris Wilson05394f32010-11-08 19:18:58 +00001334 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001335 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001336 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001337 }
1338
Chris Wilson05394f32010-11-08 19:18:58 +00001339 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001340 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001341 ret = -EINVAL;
1342 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001343 }
1344
Chris Wilsond8cb5082012-08-11 15:41:03 +01001345 ret = i915_gem_object_create_mmap_offset(obj);
1346 if (ret)
1347 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001348
Dave Airlieff72145b2011-02-07 12:16:14 +10001349 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001350
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001351out:
Chris Wilson05394f32010-11-08 19:18:58 +00001352 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001353unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001354 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001355 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001356}
1357
Dave Airlieff72145b2011-02-07 12:16:14 +10001358/**
1359 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1360 * @dev: DRM device
1361 * @data: GTT mapping ioctl data
1362 * @file: GEM object info
1363 *
1364 * Simply returns the fake offset to userspace so it can mmap it.
1365 * The mmap call will end up in drm_gem_mmap(), which will set things
1366 * up so we can get faults in the handler above.
1367 *
1368 * The fault handler will take care of binding the object into the GTT
1369 * (since it may have been evicted to make room for something), allocating
1370 * a fence register, and mapping the appropriate aperture address into
1371 * userspace.
1372 */
1373int
1374i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1375 struct drm_file *file)
1376{
1377 struct drm_i915_gem_mmap_gtt *args = data;
1378
Dave Airlieff72145b2011-02-07 12:16:14 +10001379 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1380}
1381
Daniel Vetter225067e2012-08-20 10:23:20 +02001382/* Immediately discard the backing storage */
1383static void
1384i915_gem_object_truncate(struct drm_i915_gem_object *obj)
1385{
1386 struct inode *inode;
1387
1388 /* Our goal here is to return as much of the memory as
1389 * is possible back to the system as we are called from OOM.
1390 * To do this we must instruct the shmfs to drop all of its
1391 * backing pages, *now*.
1392 */
1393 inode = obj->base.filp->f_path.dentry->d_inode;
1394 shmem_truncate_range(inode, 0, (loff_t)-1);
1395
Chris Wilsond8cb5082012-08-11 15:41:03 +01001396 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter225067e2012-08-20 10:23:20 +02001397
1398 obj->madv = __I915_MADV_PURGED;
1399}
1400
1401static inline int
1402i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1403{
1404 return obj->madv == I915_MADV_DONTNEED;
1405}
1406
Chris Wilson6c085a72012-08-20 11:40:46 +02001407static int
Daniel Vetter225067e2012-08-20 10:23:20 +02001408i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
1409{
1410 int page_count = obj->base.size / PAGE_SIZE;
Chris Wilson6c085a72012-08-20 11:40:46 +02001411 int ret, i;
Daniel Vetter225067e2012-08-20 10:23:20 +02001412
Chris Wilsonc4670ad2012-08-20 10:23:27 +01001413 BUG_ON(obj->gtt_space);
1414
Chris Wilson6c085a72012-08-20 11:40:46 +02001415 if (obj->pages == NULL)
1416 return 0;
Daniel Vetter225067e2012-08-20 10:23:20 +02001417
Chris Wilson6c085a72012-08-20 11:40:46 +02001418 BUG_ON(obj->gtt_space);
Daniel Vetter225067e2012-08-20 10:23:20 +02001419 BUG_ON(obj->madv == __I915_MADV_PURGED);
1420
Chris Wilson6c085a72012-08-20 11:40:46 +02001421 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1422 if (ret) {
1423 /* In the event of a disaster, abandon all caches and
1424 * hope for the best.
1425 */
1426 WARN_ON(ret != -EIO);
1427 i915_gem_clflush_object(obj);
1428 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1429 }
1430
Daniel Vetter225067e2012-08-20 10:23:20 +02001431 if (i915_gem_object_needs_bit17_swizzle(obj))
1432 i915_gem_object_save_bit_17_swizzle(obj);
1433
1434 if (obj->madv == I915_MADV_DONTNEED)
1435 obj->dirty = 0;
1436
1437 for (i = 0; i < page_count; i++) {
1438 if (obj->dirty)
1439 set_page_dirty(obj->pages[i]);
1440
1441 if (obj->madv == I915_MADV_WILLNEED)
1442 mark_page_accessed(obj->pages[i]);
1443
1444 page_cache_release(obj->pages[i]);
1445 }
1446 obj->dirty = 0;
1447
1448 drm_free_large(obj->pages);
1449 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02001450
1451 list_del(&obj->gtt_list);
1452
1453 if (i915_gem_object_is_purgeable(obj))
1454 i915_gem_object_truncate(obj);
1455
1456 return 0;
1457}
1458
1459static long
1460i915_gem_purge(struct drm_i915_private *dev_priv, long target)
1461{
1462 struct drm_i915_gem_object *obj, *next;
1463 long count = 0;
1464
1465 list_for_each_entry_safe(obj, next,
1466 &dev_priv->mm.unbound_list,
1467 gtt_list) {
1468 if (i915_gem_object_is_purgeable(obj) &&
1469 i915_gem_object_put_pages_gtt(obj) == 0) {
1470 count += obj->base.size >> PAGE_SHIFT;
1471 if (count >= target)
1472 return count;
1473 }
1474 }
1475
1476 list_for_each_entry_safe(obj, next,
1477 &dev_priv->mm.inactive_list,
1478 mm_list) {
1479 if (i915_gem_object_is_purgeable(obj) &&
1480 i915_gem_object_unbind(obj) == 0 &&
1481 i915_gem_object_put_pages_gtt(obj) == 0) {
1482 count += obj->base.size >> PAGE_SHIFT;
1483 if (count >= target)
1484 return count;
1485 }
1486 }
1487
1488 return count;
1489}
1490
1491static void
1492i915_gem_shrink_all(struct drm_i915_private *dev_priv)
1493{
1494 struct drm_i915_gem_object *obj, *next;
1495
1496 i915_gem_evict_everything(dev_priv->dev);
1497
1498 list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list, gtt_list)
1499 i915_gem_object_put_pages_gtt(obj);
Daniel Vetter225067e2012-08-20 10:23:20 +02001500}
1501
Daniel Vetter1286ff72012-05-10 15:25:09 +02001502int
Chris Wilson6c085a72012-08-20 11:40:46 +02001503i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001504{
Chris Wilson6c085a72012-08-20 11:40:46 +02001505 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001506 int page_count, i;
1507 struct address_space *mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001508 struct page *page;
Chris Wilson6c085a72012-08-20 11:40:46 +02001509 gfp_t gfp;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001510
Daniel Vetter1286ff72012-05-10 15:25:09 +02001511 if (obj->pages || obj->sg_table)
1512 return 0;
1513
Chris Wilson6c085a72012-08-20 11:40:46 +02001514 /* Assert that the object is not currently in any GPU domain. As it
1515 * wasn't in the GTT, there shouldn't be any way it could have been in
1516 * a GPU cache
1517 */
1518 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
1519 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
1520
Chris Wilsone5281cc2010-10-28 13:45:36 +01001521 /* Get the list of pages out of our struct file. They'll be pinned
1522 * at this point until we release them.
1523 */
Chris Wilson05394f32010-11-08 19:18:58 +00001524 page_count = obj->base.size / PAGE_SIZE;
Chris Wilson05394f32010-11-08 19:18:58 +00001525 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1526 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001527 return -ENOMEM;
1528
Chris Wilson6c085a72012-08-20 11:40:46 +02001529 /* Fail silently without starting the shrinker */
1530 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
1531 gfp = mapping_gfp_mask(mapping);
1532 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
1533 gfp &= ~(__GFP_IO | __GFP_WAIT);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001534 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001535 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1536 if (IS_ERR(page)) {
1537 i915_gem_purge(dev_priv, page_count);
1538 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1539 }
1540 if (IS_ERR(page)) {
1541 /* We've tried hard to allocate the memory by reaping
1542 * our own buffer, now let the real VM do its job and
1543 * go down in flames if truly OOM.
1544 */
1545 gfp &= ~(__GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD);
1546 gfp |= __GFP_IO | __GFP_WAIT;
1547
1548 i915_gem_shrink_all(dev_priv);
1549 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1550 if (IS_ERR(page))
1551 goto err_pages;
1552
1553 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
1554 gfp &= ~(__GFP_IO | __GFP_WAIT);
1555 }
Chris Wilsone5281cc2010-10-28 13:45:36 +01001556
Chris Wilson05394f32010-11-08 19:18:58 +00001557 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001558 }
1559
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001560 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001561 i915_gem_object_do_bit_17_swizzle(obj);
1562
Chris Wilson6c085a72012-08-20 11:40:46 +02001563 list_add_tail(&obj->gtt_list, &dev_priv->mm.unbound_list);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001564 return 0;
1565
1566err_pages:
1567 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001568 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001569
Chris Wilson05394f32010-11-08 19:18:58 +00001570 drm_free_large(obj->pages);
1571 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001572 return PTR_ERR(page);
1573}
1574
Chris Wilson54cf91d2010-11-25 18:00:26 +00001575void
Chris Wilson05394f32010-11-08 19:18:58 +00001576i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001577 struct intel_ring_buffer *ring,
1578 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001579{
Chris Wilson05394f32010-11-08 19:18:58 +00001580 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001581 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001582
Zou Nan hai852835f2010-05-21 09:08:56 +08001583 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001584 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001585
1586 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001587 if (!obj->active) {
1588 drm_gem_object_reference(&obj->base);
1589 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001590 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001591
Eric Anholt673a3942008-07-30 12:06:12 -07001592 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001593 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1594 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001595
Chris Wilson0201f1e2012-07-20 12:41:01 +01001596 obj->last_read_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001597
Chris Wilsoncaea7472010-11-12 13:53:37 +00001598 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001599 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001600
Chris Wilson7dd49062012-03-21 10:48:18 +00001601 /* Bump MRU to take account of the delayed flush */
1602 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1603 struct drm_i915_fence_reg *reg;
1604
1605 reg = &dev_priv->fence_regs[obj->fence_reg];
1606 list_move_tail(&reg->lru_list,
1607 &dev_priv->mm.fence_list);
1608 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001609 }
1610}
1611
1612static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00001613i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1614{
1615 struct drm_device *dev = obj->base.dev;
1616 struct drm_i915_private *dev_priv = dev->dev_private;
1617
Chris Wilson65ce3022012-07-20 12:41:02 +01001618 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001619 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01001620
Chris Wilsonf047e392012-07-21 12:31:41 +01001621 if (obj->pin_count) /* are we a framebuffer? */
1622 intel_mark_fb_idle(obj);
1623
1624 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1625
Chris Wilson65ce3022012-07-20 12:41:02 +01001626 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001627 obj->ring = NULL;
1628
Chris Wilson65ce3022012-07-20 12:41:02 +01001629 obj->last_read_seqno = 0;
1630 obj->last_write_seqno = 0;
1631 obj->base.write_domain = 0;
1632
1633 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001634 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001635
1636 obj->active = 0;
1637 drm_gem_object_unreference(&obj->base);
1638
1639 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001640}
Eric Anholt673a3942008-07-30 12:06:12 -07001641
Daniel Vetter53d227f2012-01-25 16:32:49 +01001642static u32
1643i915_gem_get_seqno(struct drm_device *dev)
1644{
1645 drm_i915_private_t *dev_priv = dev->dev_private;
1646 u32 seqno = dev_priv->next_seqno;
1647
1648 /* reserve 0 for non-seqno */
1649 if (++dev_priv->next_seqno == 0)
1650 dev_priv->next_seqno = 1;
1651
1652 return seqno;
1653}
1654
1655u32
1656i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1657{
1658 if (ring->outstanding_lazy_request == 0)
1659 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1660
1661 return ring->outstanding_lazy_request;
1662}
1663
Chris Wilson3cce4692010-10-27 16:11:02 +01001664int
Chris Wilsondb53a302011-02-03 11:57:46 +00001665i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001666 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001667 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001668{
Chris Wilsondb53a302011-02-03 11:57:46 +00001669 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001670 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001671 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001672 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001673 int ret;
1674
Daniel Vettercc889e02012-06-13 20:45:19 +02001675 /*
1676 * Emit any outstanding flushes - execbuf can fail to emit the flush
1677 * after having emitted the batchbuffer command. Hence we need to fix
1678 * things up similar to emitting the lazy request. The difference here
1679 * is that the flush _must_ happen before the next request, no matter
1680 * what.
1681 */
Chris Wilsona7b97612012-07-20 12:41:08 +01001682 ret = intel_ring_flush_all_caches(ring);
1683 if (ret)
1684 return ret;
Daniel Vettercc889e02012-06-13 20:45:19 +02001685
Chris Wilson3bb73ab2012-07-20 12:40:59 +01001686 if (request == NULL) {
1687 request = kmalloc(sizeof(*request), GFP_KERNEL);
1688 if (request == NULL)
1689 return -ENOMEM;
1690 }
1691
Daniel Vetter53d227f2012-01-25 16:32:49 +01001692 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001693
Chris Wilsona71d8d92012-02-15 11:25:36 +00001694 /* Record the position of the start of the request so that
1695 * should we detect the updated seqno part-way through the
1696 * GPU processing the request, we never over-estimate the
1697 * position of the head.
1698 */
1699 request_ring_position = intel_ring_get_tail(ring);
1700
Chris Wilson3cce4692010-10-27 16:11:02 +01001701 ret = ring->add_request(ring, &seqno);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01001702 if (ret) {
1703 kfree(request);
1704 return ret;
1705 }
Eric Anholt673a3942008-07-30 12:06:12 -07001706
Chris Wilsondb53a302011-02-03 11:57:46 +00001707 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001708
1709 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001710 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001711 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001712 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001713 was_empty = list_empty(&ring->request_list);
1714 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01001715 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08001716
Chris Wilsondb53a302011-02-03 11:57:46 +00001717 if (file) {
1718 struct drm_i915_file_private *file_priv = file->driver_priv;
1719
Chris Wilson1c255952010-09-26 11:03:27 +01001720 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001721 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001722 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001723 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001724 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001725 }
Eric Anholt673a3942008-07-30 12:06:12 -07001726
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001727 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001728
Ben Gamarif65d9422009-09-14 17:48:44 -04001729 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001730 if (i915_enable_hangcheck) {
1731 mod_timer(&dev_priv->hangcheck_timer,
1732 jiffies +
1733 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1734 }
Chris Wilsonf047e392012-07-21 12:31:41 +01001735 if (was_empty) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001736 queue_delayed_work(dev_priv->wq,
1737 &dev_priv->mm.retire_work, HZ);
Chris Wilsonf047e392012-07-21 12:31:41 +01001738 intel_mark_busy(dev_priv->dev);
1739 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001740 }
Daniel Vettercc889e02012-06-13 20:45:19 +02001741
Chris Wilson3cce4692010-10-27 16:11:02 +01001742 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001743}
1744
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001745static inline void
1746i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001747{
Chris Wilson1c255952010-09-26 11:03:27 +01001748 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001749
Chris Wilson1c255952010-09-26 11:03:27 +01001750 if (!file_priv)
1751 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001752
Chris Wilson1c255952010-09-26 11:03:27 +01001753 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001754 if (request->file_priv) {
1755 list_del(&request->client_list);
1756 request->file_priv = NULL;
1757 }
Chris Wilson1c255952010-09-26 11:03:27 +01001758 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001759}
1760
Chris Wilsondfaae392010-09-22 10:31:52 +01001761static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1762 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001763{
Chris Wilsondfaae392010-09-22 10:31:52 +01001764 while (!list_empty(&ring->request_list)) {
1765 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001766
Chris Wilsondfaae392010-09-22 10:31:52 +01001767 request = list_first_entry(&ring->request_list,
1768 struct drm_i915_gem_request,
1769 list);
1770
1771 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001772 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001773 kfree(request);
1774 }
1775
1776 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001777 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001778
Chris Wilson05394f32010-11-08 19:18:58 +00001779 obj = list_first_entry(&ring->active_list,
1780 struct drm_i915_gem_object,
1781 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001782
Chris Wilson05394f32010-11-08 19:18:58 +00001783 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001784 }
Eric Anholt673a3942008-07-30 12:06:12 -07001785}
1786
Chris Wilson312817a2010-11-22 11:50:11 +00001787static void i915_gem_reset_fences(struct drm_device *dev)
1788{
1789 struct drm_i915_private *dev_priv = dev->dev_private;
1790 int i;
1791
Daniel Vetter4b9de732011-10-09 21:52:02 +02001792 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001793 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001794
Chris Wilsonada726c2012-04-17 15:31:32 +01001795 i915_gem_write_fence(dev, i, NULL);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001796
Chris Wilsonada726c2012-04-17 15:31:32 +01001797 if (reg->obj)
1798 i915_gem_object_fence_lost(reg->obj);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001799
Chris Wilsonada726c2012-04-17 15:31:32 +01001800 reg->pin_count = 0;
1801 reg->obj = NULL;
1802 INIT_LIST_HEAD(&reg->lru_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001803 }
Chris Wilsonada726c2012-04-17 15:31:32 +01001804
1805 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001806}
1807
Chris Wilson069efc12010-09-30 16:53:18 +01001808void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001809{
Chris Wilsondfaae392010-09-22 10:31:52 +01001810 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001811 struct drm_i915_gem_object *obj;
Chris Wilsonb4519512012-05-11 14:29:30 +01001812 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001813 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001814
Chris Wilsonb4519512012-05-11 14:29:30 +01001815 for_each_ring(ring, dev_priv, i)
1816 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01001817
Chris Wilsondfaae392010-09-22 10:31:52 +01001818 /* Move everything out of the GPU domains to ensure we do any
1819 * necessary invalidation upon reuse.
1820 */
Chris Wilson05394f32010-11-08 19:18:58 +00001821 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001822 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001823 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001824 {
Chris Wilson05394f32010-11-08 19:18:58 +00001825 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001826 }
Chris Wilson069efc12010-09-30 16:53:18 +01001827
Chris Wilson6c085a72012-08-20 11:40:46 +02001828
Chris Wilson069efc12010-09-30 16:53:18 +01001829 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001830 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001831}
1832
1833/**
1834 * This function clears the request list as sequence numbers are passed.
1835 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001836void
Chris Wilsondb53a302011-02-03 11:57:46 +00001837i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001838{
Eric Anholt673a3942008-07-30 12:06:12 -07001839 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001840 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001841
Chris Wilsondb53a302011-02-03 11:57:46 +00001842 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001843 return;
1844
Chris Wilsondb53a302011-02-03 11:57:46 +00001845 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001846
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001847 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001848
Chris Wilson076e2c02011-01-21 10:07:18 +00001849 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001850 if (seqno >= ring->sync_seqno[i])
1851 ring->sync_seqno[i] = 0;
1852
Zou Nan hai852835f2010-05-21 09:08:56 +08001853 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001854 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001855
Zou Nan hai852835f2010-05-21 09:08:56 +08001856 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001857 struct drm_i915_gem_request,
1858 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001859
Chris Wilsondfaae392010-09-22 10:31:52 +01001860 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001861 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001862
Chris Wilsondb53a302011-02-03 11:57:46 +00001863 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001864 /* We know the GPU must have read the request to have
1865 * sent us the seqno + interrupt, so use the position
1866 * of tail of the request to update the last known position
1867 * of the GPU head.
1868 */
1869 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001870
1871 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001872 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001873 kfree(request);
1874 }
1875
1876 /* Move any buffers on the active list that are no longer referenced
1877 * by the ringbuffer to the flushing/inactive lists as appropriate.
1878 */
1879 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001880 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001881
Akshay Joshi0206e352011-08-16 15:34:10 -04001882 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001883 struct drm_i915_gem_object,
1884 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001885
Chris Wilson0201f1e2012-07-20 12:41:01 +01001886 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001887 break;
1888
Chris Wilson65ce3022012-07-20 12:41:02 +01001889 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001890 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001891
Chris Wilsondb53a302011-02-03 11:57:46 +00001892 if (unlikely(ring->trace_irq_seqno &&
1893 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001894 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001895 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001896 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001897
Chris Wilsondb53a302011-02-03 11:57:46 +00001898 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001899}
1900
1901void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001902i915_gem_retire_requests(struct drm_device *dev)
1903{
1904 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001905 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001906 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001907
Chris Wilsonb4519512012-05-11 14:29:30 +01001908 for_each_ring(ring, dev_priv, i)
1909 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001910}
1911
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001912static void
Eric Anholt673a3942008-07-30 12:06:12 -07001913i915_gem_retire_work_handler(struct work_struct *work)
1914{
1915 drm_i915_private_t *dev_priv;
1916 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01001917 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00001918 bool idle;
1919 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001920
1921 dev_priv = container_of(work, drm_i915_private_t,
1922 mm.retire_work.work);
1923 dev = dev_priv->dev;
1924
Chris Wilson891b48c2010-09-29 12:26:37 +01001925 /* Come back later if the device is busy... */
1926 if (!mutex_trylock(&dev->struct_mutex)) {
1927 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1928 return;
1929 }
1930
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001931 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001932
Chris Wilson0a587052011-01-09 21:05:44 +00001933 /* Send a periodic flush down the ring so we don't hold onto GEM
1934 * objects indefinitely.
1935 */
1936 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01001937 for_each_ring(ring, dev_priv, i) {
Chris Wilson3bb73ab2012-07-20 12:40:59 +01001938 if (ring->gpu_caches_dirty)
1939 i915_add_request(ring, NULL, NULL);
Chris Wilson0a587052011-01-09 21:05:44 +00001940
1941 idle &= list_empty(&ring->request_list);
1942 }
1943
1944 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001945 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilsonf047e392012-07-21 12:31:41 +01001946 if (idle)
1947 intel_mark_idle(dev);
Chris Wilson0a587052011-01-09 21:05:44 +00001948
Eric Anholt673a3942008-07-30 12:06:12 -07001949 mutex_unlock(&dev->struct_mutex);
1950}
1951
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001952int
1953i915_gem_check_wedge(struct drm_i915_private *dev_priv,
1954 bool interruptible)
Ben Widawskyb4aca012012-04-25 20:50:12 -07001955{
Ben Widawskyb4aca012012-04-25 20:50:12 -07001956 if (atomic_read(&dev_priv->mm.wedged)) {
1957 struct completion *x = &dev_priv->error_completion;
1958 bool recovery_complete;
1959 unsigned long flags;
1960
1961 /* Give the error handler a chance to run. */
1962 spin_lock_irqsave(&x->wait.lock, flags);
1963 recovery_complete = x->done > 0;
1964 spin_unlock_irqrestore(&x->wait.lock, flags);
1965
Daniel Vetterd6b2c792012-07-04 22:54:13 +02001966 /* Non-interruptible callers can't handle -EAGAIN, hence return
1967 * -EIO unconditionally for these. */
1968 if (!interruptible)
1969 return -EIO;
1970
1971 /* Recovery complete, but still wedged means reset failure. */
1972 if (recovery_complete)
1973 return -EIO;
1974
1975 return -EAGAIN;
Ben Widawskyb4aca012012-04-25 20:50:12 -07001976 }
1977
1978 return 0;
1979}
1980
1981/*
1982 * Compare seqno against outstanding lazy request. Emit a request if they are
1983 * equal.
1984 */
1985static int
1986i915_gem_check_olr(struct intel_ring_buffer *ring, u32 seqno)
1987{
Chris Wilson3bb73ab2012-07-20 12:40:59 +01001988 int ret;
Ben Widawskyb4aca012012-04-25 20:50:12 -07001989
1990 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1991
Chris Wilson3bb73ab2012-07-20 12:40:59 +01001992 ret = 0;
1993 if (seqno == ring->outstanding_lazy_request)
1994 ret = i915_add_request(ring, NULL, NULL);
Ben Widawskyb4aca012012-04-25 20:50:12 -07001995
1996 return ret;
1997}
1998
Ben Widawsky5c81fe852012-05-24 15:03:08 -07001999/**
2000 * __wait_seqno - wait until execution of seqno has finished
2001 * @ring: the ring expected to report seqno
2002 * @seqno: duh!
2003 * @interruptible: do an interruptible wait (normally yes)
2004 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
2005 *
2006 * Returns 0 if the seqno was found within the alloted time. Else returns the
2007 * errno with remaining time filled in timeout argument.
2008 */
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002009static int __wait_seqno(struct intel_ring_buffer *ring, u32 seqno,
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002010 bool interruptible, struct timespec *timeout)
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002011{
2012 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002013 struct timespec before, now, wait_time={1,0};
2014 unsigned long timeout_jiffies;
2015 long end;
2016 bool wait_forever = true;
Daniel Vetterd6b2c792012-07-04 22:54:13 +02002017 int ret;
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002018
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002019 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002020 return 0;
2021
2022 trace_i915_gem_request_wait_begin(ring, seqno);
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002023
2024 if (timeout != NULL) {
2025 wait_time = *timeout;
2026 wait_forever = false;
2027 }
2028
2029 timeout_jiffies = timespec_to_jiffies(&wait_time);
2030
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002031 if (WARN_ON(!ring->irq_get(ring)))
2032 return -ENODEV;
2033
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002034 /* Record current time in case interrupted by signal, or wedged * */
2035 getrawmonotonic(&before);
2036
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002037#define EXIT_COND \
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002038 (i915_seqno_passed(ring->get_seqno(ring, false), seqno) || \
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002039 atomic_read(&dev_priv->mm.wedged))
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002040 do {
2041 if (interruptible)
2042 end = wait_event_interruptible_timeout(ring->irq_queue,
2043 EXIT_COND,
2044 timeout_jiffies);
2045 else
2046 end = wait_event_timeout(ring->irq_queue, EXIT_COND,
2047 timeout_jiffies);
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002048
Daniel Vetterd6b2c792012-07-04 22:54:13 +02002049 ret = i915_gem_check_wedge(dev_priv, interruptible);
2050 if (ret)
2051 end = ret;
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002052 } while (end == 0 && wait_forever);
2053
2054 getrawmonotonic(&now);
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002055
2056 ring->irq_put(ring);
2057 trace_i915_gem_request_wait_end(ring, seqno);
2058#undef EXIT_COND
2059
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002060 if (timeout) {
2061 struct timespec sleep_time = timespec_sub(now, before);
2062 *timeout = timespec_sub(*timeout, sleep_time);
2063 }
2064
2065 switch (end) {
Chris Wilsoneeef9b32012-07-16 13:05:34 +01002066 case -EIO:
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002067 case -EAGAIN: /* Wedged */
2068 case -ERESTARTSYS: /* Signal */
2069 return (int)end;
2070 case 0: /* Timeout */
2071 if (timeout)
2072 set_normalized_timespec(timeout, 0, 0);
2073 return -ETIME;
2074 default: /* Completed */
2075 WARN_ON(end < 0); /* We're not aware of other errors */
2076 return 0;
2077 }
Ben Widawsky604dd3e2012-04-26 16:03:03 -07002078}
2079
Chris Wilsondb53a302011-02-03 11:57:46 +00002080/**
2081 * Waits for a sequence number to be signaled, and cleans up the
2082 * request and object lists appropriately for that event.
2083 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02002084int
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002085i915_wait_seqno(struct intel_ring_buffer *ring, uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002086{
Chris Wilsondb53a302011-02-03 11:57:46 +00002087 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002088 int ret = 0;
2089
2090 BUG_ON(seqno == 0);
2091
Daniel Vetterd6b2c792012-07-04 22:54:13 +02002092 ret = i915_gem_check_wedge(dev_priv, dev_priv->mm.interruptible);
Ben Widawskyb4aca012012-04-25 20:50:12 -07002093 if (ret)
2094 return ret;
Chris Wilsond9bc7e92011-02-07 13:09:31 +00002095
Ben Widawskyb4aca012012-04-25 20:50:12 -07002096 ret = i915_gem_check_olr(ring, seqno);
2097 if (ret)
2098 return ret;
Daniel Vettere35a41d2010-02-11 22:13:59 +01002099
Ben Widawsky5c81fe852012-05-24 15:03:08 -07002100 ret = __wait_seqno(ring, seqno, dev_priv->mm.interruptible, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002101
Eric Anholt673a3942008-07-30 12:06:12 -07002102 return ret;
2103}
2104
Daniel Vetter48764bf2009-09-15 22:57:32 +02002105/**
Eric Anholt673a3942008-07-30 12:06:12 -07002106 * Ensures that all rendering to the object has completed and the object is
2107 * safe to unbind from the GTT or access from the CPU.
2108 */
Chris Wilson0201f1e2012-07-20 12:41:01 +01002109static __must_check int
2110i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
2111 bool readonly)
Eric Anholt673a3942008-07-30 12:06:12 -07002112{
Chris Wilson0201f1e2012-07-20 12:41:01 +01002113 u32 seqno;
Eric Anholt673a3942008-07-30 12:06:12 -07002114 int ret;
2115
Eric Anholt673a3942008-07-30 12:06:12 -07002116 /* If there is rendering queued on the buffer being evicted, wait for
2117 * it.
2118 */
Chris Wilson0201f1e2012-07-20 12:41:01 +01002119 if (readonly)
2120 seqno = obj->last_write_seqno;
2121 else
2122 seqno = obj->last_read_seqno;
2123 if (seqno == 0)
2124 return 0;
2125
2126 ret = i915_wait_seqno(obj->ring, seqno);
2127 if (ret)
2128 return ret;
2129
2130 /* Manually manage the write flush as we may have not yet retired
2131 * the buffer.
2132 */
2133 if (obj->last_write_seqno &&
2134 i915_seqno_passed(seqno, obj->last_write_seqno)) {
2135 obj->last_write_seqno = 0;
2136 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
Eric Anholt673a3942008-07-30 12:06:12 -07002137 }
2138
Chris Wilson0201f1e2012-07-20 12:41:01 +01002139 i915_gem_retire_requests_ring(obj->ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002140 return 0;
2141}
2142
Ben Widawsky5816d642012-04-11 11:18:19 -07002143/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002144 * Ensures that an object will eventually get non-busy by flushing any required
2145 * write domains, emitting any outstanding lazy request and retiring and
2146 * completed requests.
2147 */
2148static int
2149i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2150{
2151 int ret;
2152
2153 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002154 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002155 if (ret)
2156 return ret;
Chris Wilson0201f1e2012-07-20 12:41:01 +01002157
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002158 i915_gem_retire_requests_ring(obj->ring);
2159 }
2160
2161 return 0;
2162}
2163
2164/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002165 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2166 * @DRM_IOCTL_ARGS: standard ioctl arguments
2167 *
2168 * Returns 0 if successful, else an error is returned with the remaining time in
2169 * the timeout parameter.
2170 * -ETIME: object is still busy after timeout
2171 * -ERESTARTSYS: signal interrupted the wait
2172 * -ENONENT: object doesn't exist
2173 * Also possible, but rare:
2174 * -EAGAIN: GPU wedged
2175 * -ENOMEM: damn
2176 * -ENODEV: Internal IRQ fail
2177 * -E?: The add request failed
2178 *
2179 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2180 * non-zero timeout parameter the wait ioctl will wait for the given number of
2181 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2182 * without holding struct_mutex the object may become re-busied before this
2183 * function completes. A similar but shorter * race condition exists in the busy
2184 * ioctl
2185 */
2186int
2187i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2188{
2189 struct drm_i915_gem_wait *args = data;
2190 struct drm_i915_gem_object *obj;
2191 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002192 struct timespec timeout_stack, *timeout = NULL;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002193 u32 seqno = 0;
2194 int ret = 0;
2195
Ben Widawskyeac1f142012-06-05 15:24:24 -07002196 if (args->timeout_ns >= 0) {
2197 timeout_stack = ns_to_timespec(args->timeout_ns);
2198 timeout = &timeout_stack;
2199 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002200
2201 ret = i915_mutex_lock_interruptible(dev);
2202 if (ret)
2203 return ret;
2204
2205 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2206 if (&obj->base == NULL) {
2207 mutex_unlock(&dev->struct_mutex);
2208 return -ENOENT;
2209 }
2210
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002211 /* Need to make sure the object gets inactive eventually. */
2212 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002213 if (ret)
2214 goto out;
2215
2216 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002217 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002218 ring = obj->ring;
2219 }
2220
2221 if (seqno == 0)
2222 goto out;
2223
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002224 /* Do this after OLR check to make sure we make forward progress polling
2225 * on this IOCTL with a 0 timeout (like busy ioctl)
2226 */
2227 if (!args->timeout_ns) {
2228 ret = -ETIME;
2229 goto out;
2230 }
2231
2232 drm_gem_object_unreference(&obj->base);
2233 mutex_unlock(&dev->struct_mutex);
2234
Ben Widawskyeac1f142012-06-05 15:24:24 -07002235 ret = __wait_seqno(ring, seqno, true, timeout);
2236 if (timeout) {
2237 WARN_ON(!timespec_valid(timeout));
2238 args->timeout_ns = timespec_to_ns(timeout);
2239 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002240 return ret;
2241
2242out:
2243 drm_gem_object_unreference(&obj->base);
2244 mutex_unlock(&dev->struct_mutex);
2245 return ret;
2246}
2247
2248/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002249 * i915_gem_object_sync - sync an object to a ring.
2250 *
2251 * @obj: object which may be in use on another ring.
2252 * @to: ring we wish to use the object on. May be NULL.
2253 *
2254 * This code is meant to abstract object synchronization with the GPU.
2255 * Calling with NULL implies synchronizing the object with the CPU
2256 * rather than a particular GPU ring.
2257 *
2258 * Returns 0 if successful, else propagates up the lower layer error.
2259 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002260int
2261i915_gem_object_sync(struct drm_i915_gem_object *obj,
2262 struct intel_ring_buffer *to)
2263{
2264 struct intel_ring_buffer *from = obj->ring;
2265 u32 seqno;
2266 int ret, idx;
2267
2268 if (from == NULL || to == from)
2269 return 0;
2270
Ben Widawsky5816d642012-04-11 11:18:19 -07002271 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002272 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002273
2274 idx = intel_ring_sync_index(from, to);
2275
Chris Wilson0201f1e2012-07-20 12:41:01 +01002276 seqno = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002277 if (seqno <= from->sync_seqno[idx])
2278 return 0;
2279
Ben Widawskyb4aca012012-04-25 20:50:12 -07002280 ret = i915_gem_check_olr(obj->ring, seqno);
2281 if (ret)
2282 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002283
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002284 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002285 if (!ret)
2286 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002287
Ben Widawskye3a5a222012-04-11 11:18:20 -07002288 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002289}
2290
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002291static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2292{
2293 u32 old_write_domain, old_read_domains;
2294
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002295 /* Act a barrier for all accesses through the GTT */
2296 mb();
2297
2298 /* Force a pagefault for domain tracking on next user access */
2299 i915_gem_release_mmap(obj);
2300
Keith Packardb97c3d92011-06-24 21:02:59 -07002301 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2302 return;
2303
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002304 old_read_domains = obj->base.read_domains;
2305 old_write_domain = obj->base.write_domain;
2306
2307 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2308 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2309
2310 trace_i915_gem_object_change_domain(obj,
2311 old_read_domains,
2312 old_write_domain);
2313}
2314
Eric Anholt673a3942008-07-30 12:06:12 -07002315/**
2316 * Unbinds an object from the GTT aperture.
2317 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002318int
Chris Wilson05394f32010-11-08 19:18:58 +00002319i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002320{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002321 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002322 int ret = 0;
2323
Chris Wilson05394f32010-11-08 19:18:58 +00002324 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002325 return 0;
2326
Chris Wilson31d8d652012-05-24 19:11:20 +01002327 if (obj->pin_count)
2328 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002329
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002330 BUG_ON(obj->pages == NULL);
2331
Chris Wilsona8198ee2011-04-13 22:04:09 +01002332 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002333 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002334 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002335 /* Continue on if we fail due to EIO, the GPU is hung so we
2336 * should be safe and we need to cleanup or else we might
2337 * cause memory corruption through use-after-free.
2338 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002339
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002340 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002341
Daniel Vetter96b47b62009-12-15 17:50:00 +01002342 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002343 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002344 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002345 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002346
Chris Wilsondb53a302011-02-03 11:57:46 +00002347 trace_i915_gem_object_unbind(obj);
2348
Daniel Vetter74898d72012-02-15 23:50:22 +01002349 if (obj->has_global_gtt_mapping)
2350 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002351 if (obj->has_aliasing_ppgtt_mapping) {
2352 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2353 obj->has_aliasing_ppgtt_mapping = 0;
2354 }
Daniel Vetter74163902012-02-15 23:50:21 +01002355 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002356
Chris Wilson6c085a72012-08-20 11:40:46 +02002357 list_del(&obj->mm_list);
2358 list_move_tail(&obj->gtt_list, &dev_priv->mm.unbound_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002359 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002360 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002361
Chris Wilson05394f32010-11-08 19:18:58 +00002362 drm_mm_put_block(obj->gtt_space);
2363 obj->gtt_space = NULL;
2364 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002365
Chris Wilson6c085a72012-08-20 11:40:46 +02002366 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002367}
2368
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002369static int i915_ring_idle(struct intel_ring_buffer *ring)
Chris Wilsona56ba562010-09-28 10:07:56 +01002370{
Chris Wilson69c2fc82012-07-20 12:41:03 +01002371 if (list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002372 return 0;
2373
Ben Widawsky199b2bc2012-05-24 15:03:11 -07002374 return i915_wait_seqno(ring, i915_gem_next_request_seqno(ring));
Chris Wilsona56ba562010-09-28 10:07:56 +01002375}
2376
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002377int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002378{
2379 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002380 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002381 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002382
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002383 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002384 for_each_ring(ring, dev_priv, i) {
2385 ret = i915_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002386 if (ret)
2387 return ret;
Chris Wilsonb4519512012-05-11 14:29:30 +01002388
Ben Widawskyf2ef6eb2012-06-04 14:42:53 -07002389 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2390 if (ret)
2391 return ret;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002392 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002393
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002394 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002395}
2396
Chris Wilson9ce079e2012-04-17 15:31:30 +01002397static void sandybridge_write_fence_reg(struct drm_device *dev, int reg,
2398 struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002399{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002400 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002401 uint64_t val;
2402
Chris Wilson9ce079e2012-04-17 15:31:30 +01002403 if (obj) {
2404 u32 size = obj->gtt_space->size;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002405
Chris Wilson9ce079e2012-04-17 15:31:30 +01002406 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2407 0xfffff000) << 32;
2408 val |= obj->gtt_offset & 0xfffff000;
2409 val |= (uint64_t)((obj->stride / 128) - 1) <<
2410 SANDYBRIDGE_FENCE_PITCH_SHIFT;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002411
Chris Wilson9ce079e2012-04-17 15:31:30 +01002412 if (obj->tiling_mode == I915_TILING_Y)
2413 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2414 val |= I965_FENCE_REG_VALID;
2415 } else
2416 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002417
Chris Wilson9ce079e2012-04-17 15:31:30 +01002418 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + reg * 8, val);
2419 POSTING_READ(FENCE_REG_SANDYBRIDGE_0 + reg * 8);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002420}
2421
Chris Wilson9ce079e2012-04-17 15:31:30 +01002422static void i965_write_fence_reg(struct drm_device *dev, int reg,
2423 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002424{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002425 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002426 uint64_t val;
2427
Chris Wilson9ce079e2012-04-17 15:31:30 +01002428 if (obj) {
2429 u32 size = obj->gtt_space->size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002430
Chris Wilson9ce079e2012-04-17 15:31:30 +01002431 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2432 0xfffff000) << 32;
2433 val |= obj->gtt_offset & 0xfffff000;
2434 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2435 if (obj->tiling_mode == I915_TILING_Y)
2436 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2437 val |= I965_FENCE_REG_VALID;
2438 } else
2439 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002440
Chris Wilson9ce079e2012-04-17 15:31:30 +01002441 I915_WRITE64(FENCE_REG_965_0 + reg * 8, val);
2442 POSTING_READ(FENCE_REG_965_0 + reg * 8);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002443}
2444
Chris Wilson9ce079e2012-04-17 15:31:30 +01002445static void i915_write_fence_reg(struct drm_device *dev, int reg,
2446 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002447{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002448 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002449 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002450
Chris Wilson9ce079e2012-04-17 15:31:30 +01002451 if (obj) {
2452 u32 size = obj->gtt_space->size;
2453 int pitch_val;
2454 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002455
Chris Wilson9ce079e2012-04-17 15:31:30 +01002456 WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2457 (size & -size) != size ||
2458 (obj->gtt_offset & (size - 1)),
2459 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2460 obj->gtt_offset, obj->map_and_fenceable, size);
2461
2462 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2463 tile_width = 128;
2464 else
2465 tile_width = 512;
2466
2467 /* Note: pitch better be a power of two tile widths */
2468 pitch_val = obj->stride / tile_width;
2469 pitch_val = ffs(pitch_val) - 1;
2470
2471 val = obj->gtt_offset;
2472 if (obj->tiling_mode == I915_TILING_Y)
2473 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2474 val |= I915_FENCE_SIZE_BITS(size);
2475 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2476 val |= I830_FENCE_REG_VALID;
2477 } else
2478 val = 0;
2479
2480 if (reg < 8)
2481 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002482 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002483 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002484
Chris Wilson9ce079e2012-04-17 15:31:30 +01002485 I915_WRITE(reg, val);
2486 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002487}
2488
Chris Wilson9ce079e2012-04-17 15:31:30 +01002489static void i830_write_fence_reg(struct drm_device *dev, int reg,
2490 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002491{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002492 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002493 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002494
Chris Wilson9ce079e2012-04-17 15:31:30 +01002495 if (obj) {
2496 u32 size = obj->gtt_space->size;
2497 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002498
Chris Wilson9ce079e2012-04-17 15:31:30 +01002499 WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2500 (size & -size) != size ||
2501 (obj->gtt_offset & (size - 1)),
2502 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2503 obj->gtt_offset, size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002504
Chris Wilson9ce079e2012-04-17 15:31:30 +01002505 pitch_val = obj->stride / 128;
2506 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002507
Chris Wilson9ce079e2012-04-17 15:31:30 +01002508 val = obj->gtt_offset;
2509 if (obj->tiling_mode == I915_TILING_Y)
2510 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2511 val |= I830_FENCE_SIZE_BITS(size);
2512 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2513 val |= I830_FENCE_REG_VALID;
2514 } else
2515 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002516
Chris Wilson9ce079e2012-04-17 15:31:30 +01002517 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2518 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2519}
2520
2521static void i915_gem_write_fence(struct drm_device *dev, int reg,
2522 struct drm_i915_gem_object *obj)
2523{
2524 switch (INTEL_INFO(dev)->gen) {
2525 case 7:
2526 case 6: sandybridge_write_fence_reg(dev, reg, obj); break;
2527 case 5:
2528 case 4: i965_write_fence_reg(dev, reg, obj); break;
2529 case 3: i915_write_fence_reg(dev, reg, obj); break;
2530 case 2: i830_write_fence_reg(dev, reg, obj); break;
2531 default: break;
2532 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002533}
2534
Chris Wilson61050802012-04-17 15:31:31 +01002535static inline int fence_number(struct drm_i915_private *dev_priv,
2536 struct drm_i915_fence_reg *fence)
2537{
2538 return fence - dev_priv->fence_regs;
2539}
2540
2541static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2542 struct drm_i915_fence_reg *fence,
2543 bool enable)
2544{
2545 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2546 int reg = fence_number(dev_priv, fence);
2547
2548 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
2549
2550 if (enable) {
2551 obj->fence_reg = reg;
2552 fence->obj = obj;
2553 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2554 } else {
2555 obj->fence_reg = I915_FENCE_REG_NONE;
2556 fence->obj = NULL;
2557 list_del_init(&fence->lru_list);
2558 }
2559}
2560
Chris Wilsond9e86c02010-11-10 16:40:20 +00002561static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002562i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002563{
Chris Wilson1c293ea2012-04-17 15:31:27 +01002564 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01002565 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002566 if (ret)
2567 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002568
2569 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002570 }
2571
Chris Wilson63256ec2011-01-04 18:42:07 +00002572 /* Ensure that all CPU reads are completed before installing a fence
2573 * and all writes before removing the fence.
2574 */
2575 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2576 mb();
2577
Chris Wilson86d5bc32012-07-20 12:41:04 +01002578 obj->fenced_gpu_access = false;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002579 return 0;
2580}
2581
2582int
2583i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2584{
Chris Wilson61050802012-04-17 15:31:31 +01002585 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002586 int ret;
2587
Chris Wilsona360bb12012-04-17 15:31:25 +01002588 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002589 if (ret)
2590 return ret;
2591
Chris Wilson61050802012-04-17 15:31:31 +01002592 if (obj->fence_reg == I915_FENCE_REG_NONE)
2593 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002594
Chris Wilson61050802012-04-17 15:31:31 +01002595 i915_gem_object_update_fence(obj,
2596 &dev_priv->fence_regs[obj->fence_reg],
2597 false);
2598 i915_gem_object_fence_lost(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002599
2600 return 0;
2601}
2602
2603static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002604i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002605{
Daniel Vetterae3db242010-02-19 11:51:58 +01002606 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002607 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002608 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002609
2610 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002611 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002612 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2613 reg = &dev_priv->fence_regs[i];
2614 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002615 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002616
Chris Wilson1690e1e2011-12-14 13:57:08 +01002617 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002618 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002619 }
2620
Chris Wilsond9e86c02010-11-10 16:40:20 +00002621 if (avail == NULL)
2622 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002623
2624 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002625 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002626 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002627 continue;
2628
Chris Wilson8fe301a2012-04-17 15:31:28 +01002629 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002630 }
2631
Chris Wilson8fe301a2012-04-17 15:31:28 +01002632 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002633}
2634
Jesse Barnesde151cf2008-11-12 10:03:55 -08002635/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002636 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002637 * @obj: object to map through a fence reg
2638 *
2639 * When mapping objects through the GTT, userspace wants to be able to write
2640 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002641 * This function walks the fence regs looking for a free one for @obj,
2642 * stealing one if it can't find any.
2643 *
2644 * It then sets up the reg based on the object's properties: address, pitch
2645 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002646 *
2647 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002648 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002649int
Chris Wilson06d98132012-04-17 15:31:24 +01002650i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002651{
Chris Wilson05394f32010-11-08 19:18:58 +00002652 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002653 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002654 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002655 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002656 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002657
Chris Wilson14415742012-04-17 15:31:33 +01002658 /* Have we updated the tiling parameters upon the object and so
2659 * will need to serialise the write to the associated fence register?
2660 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002661 if (obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002662 ret = i915_gem_object_flush_fence(obj);
2663 if (ret)
2664 return ret;
2665 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002666
Chris Wilsond9e86c02010-11-10 16:40:20 +00002667 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002668 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2669 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002670 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002671 list_move_tail(&reg->lru_list,
2672 &dev_priv->mm.fence_list);
2673 return 0;
2674 }
2675 } else if (enable) {
2676 reg = i915_find_fence_reg(dev);
2677 if (reg == NULL)
2678 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002679
Chris Wilson14415742012-04-17 15:31:33 +01002680 if (reg->obj) {
2681 struct drm_i915_gem_object *old = reg->obj;
2682
2683 ret = i915_gem_object_flush_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002684 if (ret)
2685 return ret;
2686
Chris Wilson14415742012-04-17 15:31:33 +01002687 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002688 }
Chris Wilson14415742012-04-17 15:31:33 +01002689 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07002690 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002691
Chris Wilson14415742012-04-17 15:31:33 +01002692 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002693 obj->fence_dirty = false;
Chris Wilson14415742012-04-17 15:31:33 +01002694
Chris Wilson9ce079e2012-04-17 15:31:30 +01002695 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002696}
2697
Chris Wilson42d6ab42012-07-26 11:49:32 +01002698static bool i915_gem_valid_gtt_space(struct drm_device *dev,
2699 struct drm_mm_node *gtt_space,
2700 unsigned long cache_level)
2701{
2702 struct drm_mm_node *other;
2703
2704 /* On non-LLC machines we have to be careful when putting differing
2705 * types of snoopable memory together to avoid the prefetcher
2706 * crossing memory domains and dieing.
2707 */
2708 if (HAS_LLC(dev))
2709 return true;
2710
2711 if (gtt_space == NULL)
2712 return true;
2713
2714 if (list_empty(&gtt_space->node_list))
2715 return true;
2716
2717 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
2718 if (other->allocated && !other->hole_follows && other->color != cache_level)
2719 return false;
2720
2721 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
2722 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
2723 return false;
2724
2725 return true;
2726}
2727
2728static void i915_gem_verify_gtt(struct drm_device *dev)
2729{
2730#if WATCH_GTT
2731 struct drm_i915_private *dev_priv = dev->dev_private;
2732 struct drm_i915_gem_object *obj;
2733 int err = 0;
2734
2735 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list) {
2736 if (obj->gtt_space == NULL) {
2737 printk(KERN_ERR "object found on GTT list with no space reserved\n");
2738 err++;
2739 continue;
2740 }
2741
2742 if (obj->cache_level != obj->gtt_space->color) {
2743 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
2744 obj->gtt_space->start,
2745 obj->gtt_space->start + obj->gtt_space->size,
2746 obj->cache_level,
2747 obj->gtt_space->color);
2748 err++;
2749 continue;
2750 }
2751
2752 if (!i915_gem_valid_gtt_space(dev,
2753 obj->gtt_space,
2754 obj->cache_level)) {
2755 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
2756 obj->gtt_space->start,
2757 obj->gtt_space->start + obj->gtt_space->size,
2758 obj->cache_level);
2759 err++;
2760 continue;
2761 }
2762 }
2763
2764 WARN_ON(err);
2765#endif
2766}
2767
Jesse Barnesde151cf2008-11-12 10:03:55 -08002768/**
Eric Anholt673a3942008-07-30 12:06:12 -07002769 * Finds free space in the GTT aperture and binds the object there.
2770 */
2771static int
Chris Wilson05394f32010-11-08 19:18:58 +00002772i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002773 unsigned alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01002774 bool map_and_fenceable,
2775 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07002776{
Chris Wilson05394f32010-11-08 19:18:58 +00002777 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002778 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002779 struct drm_mm_node *free_space;
Daniel Vetter5e783302010-11-14 22:32:36 +01002780 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002781 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002782 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002783
Chris Wilson05394f32010-11-08 19:18:58 +00002784 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002785 DRM_ERROR("Attempting to bind a purgeable object\n");
2786 return -EINVAL;
2787 }
2788
Chris Wilsone28f8712011-07-18 13:11:49 -07002789 fence_size = i915_gem_get_gtt_size(dev,
2790 obj->base.size,
2791 obj->tiling_mode);
2792 fence_alignment = i915_gem_get_gtt_alignment(dev,
2793 obj->base.size,
2794 obj->tiling_mode);
2795 unfenced_alignment =
2796 i915_gem_get_unfenced_gtt_alignment(dev,
2797 obj->base.size,
2798 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002799
Eric Anholt673a3942008-07-30 12:06:12 -07002800 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002801 alignment = map_and_fenceable ? fence_alignment :
2802 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002803 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002804 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2805 return -EINVAL;
2806 }
2807
Chris Wilson05394f32010-11-08 19:18:58 +00002808 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002809
Chris Wilson654fc602010-05-27 13:18:21 +01002810 /* If the object is bigger than the entire aperture, reject it early
2811 * before evicting everything in a vain attempt to find space.
2812 */
Chris Wilson05394f32010-11-08 19:18:58 +00002813 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002814 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002815 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2816 return -E2BIG;
2817 }
2818
Chris Wilson6c085a72012-08-20 11:40:46 +02002819 ret = i915_gem_object_get_pages_gtt(obj);
2820 if (ret)
2821 return ret;
2822
Eric Anholt673a3942008-07-30 12:06:12 -07002823 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002824 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002825 free_space =
Chris Wilson42d6ab42012-07-26 11:49:32 +01002826 drm_mm_search_free_in_range_color(&dev_priv->mm.gtt_space,
2827 size, alignment, obj->cache_level,
2828 0, dev_priv->mm.gtt_mappable_end,
2829 false);
Daniel Vetter920afa72010-09-16 17:54:23 +02002830 else
Chris Wilson42d6ab42012-07-26 11:49:32 +01002831 free_space = drm_mm_search_free_color(&dev_priv->mm.gtt_space,
2832 size, alignment, obj->cache_level,
2833 false);
Daniel Vetter920afa72010-09-16 17:54:23 +02002834
2835 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002836 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002837 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002838 drm_mm_get_block_range_generic(free_space,
Chris Wilson42d6ab42012-07-26 11:49:32 +01002839 size, alignment, obj->cache_level,
Chris Wilson6b9d89b2012-07-10 11:15:23 +01002840 0, dev_priv->mm.gtt_mappable_end,
Chris Wilson42d6ab42012-07-26 11:49:32 +01002841 false);
Daniel Vetter920afa72010-09-16 17:54:23 +02002842 else
Chris Wilson05394f32010-11-08 19:18:58 +00002843 obj->gtt_space =
Chris Wilson42d6ab42012-07-26 11:49:32 +01002844 drm_mm_get_block_generic(free_space,
2845 size, alignment, obj->cache_level,
2846 false);
Daniel Vetter920afa72010-09-16 17:54:23 +02002847 }
Chris Wilson05394f32010-11-08 19:18:58 +00002848 if (obj->gtt_space == NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002849 ret = i915_gem_evict_something(dev, size, alignment,
Chris Wilson42d6ab42012-07-26 11:49:32 +01002850 obj->cache_level,
Chris Wilson86a1ee22012-08-11 15:41:04 +01002851 map_and_fenceable,
2852 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01002853 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002854 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002855
Eric Anholt673a3942008-07-30 12:06:12 -07002856 goto search_free;
2857 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01002858 if (WARN_ON(!i915_gem_valid_gtt_space(dev,
2859 obj->gtt_space,
2860 obj->cache_level))) {
2861 drm_mm_put_block(obj->gtt_space);
2862 obj->gtt_space = NULL;
2863 return -EINVAL;
2864 }
Eric Anholt673a3942008-07-30 12:06:12 -07002865
Eric Anholt673a3942008-07-30 12:06:12 -07002866
Daniel Vetter74163902012-02-15 23:50:21 +01002867 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002868 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002869 drm_mm_put_block(obj->gtt_space);
2870 obj->gtt_space = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002871 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002872 }
Eric Anholt673a3942008-07-30 12:06:12 -07002873
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002874 if (!dev_priv->mm.aliasing_ppgtt)
2875 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002876
Chris Wilson6c085a72012-08-20 11:40:46 +02002877 list_move_tail(&obj->gtt_list, &dev_priv->mm.bound_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002878 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002879
Chris Wilson6299f992010-11-24 12:23:44 +00002880 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002881
Daniel Vetter75e9e912010-11-04 17:11:09 +01002882 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002883 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002884 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002885
Daniel Vetter75e9e912010-11-04 17:11:09 +01002886 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002887 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002888
Chris Wilson05394f32010-11-08 19:18:58 +00002889 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002890
Chris Wilsondb53a302011-02-03 11:57:46 +00002891 trace_i915_gem_object_bind(obj, map_and_fenceable);
Chris Wilson42d6ab42012-07-26 11:49:32 +01002892 i915_gem_verify_gtt(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002893 return 0;
2894}
2895
2896void
Chris Wilson05394f32010-11-08 19:18:58 +00002897i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002898{
Eric Anholt673a3942008-07-30 12:06:12 -07002899 /* If we don't have a page list set up, then we're not pinned
2900 * to GPU, and we can ignore the cache flush because it'll happen
2901 * again at bind time.
2902 */
Chris Wilson05394f32010-11-08 19:18:58 +00002903 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002904 return;
2905
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002906 /* If the GPU is snooping the contents of the CPU cache,
2907 * we do not need to manually clear the CPU cache lines. However,
2908 * the caches are only snooped when the render cache is
2909 * flushed/invalidated. As we always have to emit invalidations
2910 * and flushes when moving into and out of the RENDER domain, correct
2911 * snooping behaviour occurs naturally as the result of our domain
2912 * tracking.
2913 */
2914 if (obj->cache_level != I915_CACHE_NONE)
2915 return;
2916
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002917 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002918
Chris Wilson05394f32010-11-08 19:18:58 +00002919 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002920}
2921
Eric Anholte47c68e2008-11-14 13:35:19 -08002922/** Flushes the GTT write domain for the object if it's dirty. */
2923static void
Chris Wilson05394f32010-11-08 19:18:58 +00002924i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002925{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002926 uint32_t old_write_domain;
2927
Chris Wilson05394f32010-11-08 19:18:58 +00002928 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002929 return;
2930
Chris Wilson63256ec2011-01-04 18:42:07 +00002931 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002932 * to it immediately go to main memory as far as we know, so there's
2933 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002934 *
2935 * However, we do have to enforce the order so that all writes through
2936 * the GTT land before any writes to the device, such as updates to
2937 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002938 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002939 wmb();
2940
Chris Wilson05394f32010-11-08 19:18:58 +00002941 old_write_domain = obj->base.write_domain;
2942 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002943
2944 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002945 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002946 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002947}
2948
2949/** Flushes the CPU write domain for the object if it's dirty. */
2950static void
Chris Wilson05394f32010-11-08 19:18:58 +00002951i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002952{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002953 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002954
Chris Wilson05394f32010-11-08 19:18:58 +00002955 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002956 return;
2957
2958 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002959 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002960 old_write_domain = obj->base.write_domain;
2961 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002962
2963 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002964 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002965 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002966}
2967
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002968/**
2969 * Moves a single object to the GTT read, and possibly write domain.
2970 *
2971 * This function returns when the move is complete, including waiting on
2972 * flushes to occur.
2973 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002974int
Chris Wilson20217462010-11-23 15:26:33 +00002975i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002976{
Chris Wilson8325a092012-04-24 15:52:35 +01002977 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002978 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002979 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002980
Eric Anholt02354392008-11-26 13:58:13 -08002981 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002982 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002983 return -EINVAL;
2984
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002985 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2986 return 0;
2987
Chris Wilson0201f1e2012-07-20 12:41:01 +01002988 ret = i915_gem_object_wait_rendering(obj, !write);
2989 if (ret)
2990 return ret;
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002991
Chris Wilson72133422010-09-13 23:56:38 +01002992 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002993
Chris Wilson05394f32010-11-08 19:18:58 +00002994 old_write_domain = obj->base.write_domain;
2995 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002996
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002997 /* It should now be out of any other write domains, and we can update
2998 * the domain values for our changes.
2999 */
Chris Wilson05394f32010-11-08 19:18:58 +00003000 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3001 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003002 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003003 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3004 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3005 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003006 }
3007
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003008 trace_i915_gem_object_change_domain(obj,
3009 old_read_domains,
3010 old_write_domain);
3011
Chris Wilson8325a092012-04-24 15:52:35 +01003012 /* And bump the LRU for this access */
3013 if (i915_gem_object_is_inactive(obj))
3014 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
3015
Eric Anholte47c68e2008-11-14 13:35:19 -08003016 return 0;
3017}
3018
Chris Wilsone4ffd172011-04-04 09:44:39 +01003019int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3020 enum i915_cache_level cache_level)
3021{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003022 struct drm_device *dev = obj->base.dev;
3023 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003024 int ret;
3025
3026 if (obj->cache_level == cache_level)
3027 return 0;
3028
3029 if (obj->pin_count) {
3030 DRM_DEBUG("can not change the cache level of pinned objects\n");
3031 return -EBUSY;
3032 }
3033
Chris Wilson42d6ab42012-07-26 11:49:32 +01003034 if (!i915_gem_valid_gtt_space(dev, obj->gtt_space, cache_level)) {
3035 ret = i915_gem_object_unbind(obj);
3036 if (ret)
3037 return ret;
3038 }
3039
Chris Wilsone4ffd172011-04-04 09:44:39 +01003040 if (obj->gtt_space) {
3041 ret = i915_gem_object_finish_gpu(obj);
3042 if (ret)
3043 return ret;
3044
3045 i915_gem_object_finish_gtt(obj);
3046
3047 /* Before SandyBridge, you could not use tiling or fence
3048 * registers with snooped memory, so relinquish any fences
3049 * currently pointing to our region in the aperture.
3050 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003051 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003052 ret = i915_gem_object_put_fence(obj);
3053 if (ret)
3054 return ret;
3055 }
3056
Daniel Vetter74898d72012-02-15 23:50:22 +01003057 if (obj->has_global_gtt_mapping)
3058 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003059 if (obj->has_aliasing_ppgtt_mapping)
3060 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3061 obj, cache_level);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003062
3063 obj->gtt_space->color = cache_level;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003064 }
3065
3066 if (cache_level == I915_CACHE_NONE) {
3067 u32 old_read_domains, old_write_domain;
3068
3069 /* If we're coming from LLC cached, then we haven't
3070 * actually been tracking whether the data is in the
3071 * CPU cache or not, since we only allow one bit set
3072 * in obj->write_domain and have been skipping the clflushes.
3073 * Just set it to the CPU cache for now.
3074 */
3075 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
3076 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
3077
3078 old_read_domains = obj->base.read_domains;
3079 old_write_domain = obj->base.write_domain;
3080
3081 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3082 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3083
3084 trace_i915_gem_object_change_domain(obj,
3085 old_read_domains,
3086 old_write_domain);
3087 }
3088
3089 obj->cache_level = cache_level;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003090 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003091 return 0;
3092}
3093
Chris Wilsone6994ae2012-07-10 10:27:08 +01003094int i915_gem_get_cacheing_ioctl(struct drm_device *dev, void *data,
3095 struct drm_file *file)
3096{
3097 struct drm_i915_gem_cacheing *args = data;
3098 struct drm_i915_gem_object *obj;
3099 int ret;
3100
3101 ret = i915_mutex_lock_interruptible(dev);
3102 if (ret)
3103 return ret;
3104
3105 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3106 if (&obj->base == NULL) {
3107 ret = -ENOENT;
3108 goto unlock;
3109 }
3110
3111 args->cacheing = obj->cache_level != I915_CACHE_NONE;
3112
3113 drm_gem_object_unreference(&obj->base);
3114unlock:
3115 mutex_unlock(&dev->struct_mutex);
3116 return ret;
3117}
3118
3119int i915_gem_set_cacheing_ioctl(struct drm_device *dev, void *data,
3120 struct drm_file *file)
3121{
3122 struct drm_i915_gem_cacheing *args = data;
3123 struct drm_i915_gem_object *obj;
3124 enum i915_cache_level level;
3125 int ret;
3126
3127 ret = i915_mutex_lock_interruptible(dev);
3128 if (ret)
3129 return ret;
3130
3131 switch (args->cacheing) {
3132 case I915_CACHEING_NONE:
3133 level = I915_CACHE_NONE;
3134 break;
3135 case I915_CACHEING_CACHED:
3136 level = I915_CACHE_LLC;
3137 break;
3138 default:
3139 return -EINVAL;
3140 }
3141
3142 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3143 if (&obj->base == NULL) {
3144 ret = -ENOENT;
3145 goto unlock;
3146 }
3147
3148 ret = i915_gem_object_set_cache_level(obj, level);
3149
3150 drm_gem_object_unreference(&obj->base);
3151unlock:
3152 mutex_unlock(&dev->struct_mutex);
3153 return ret;
3154}
3155
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003156/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003157 * Prepare buffer for display plane (scanout, cursors, etc).
3158 * Can be called from an uninterruptible phase (modesetting) and allows
3159 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003160 */
3161int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003162i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3163 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003164 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003165{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003166 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003167 int ret;
3168
Chris Wilson0be73282010-12-06 14:36:27 +00003169 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003170 ret = i915_gem_object_sync(obj, pipelined);
3171 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003172 return ret;
3173 }
3174
Eric Anholta7ef0642011-03-29 16:59:54 -07003175 /* The display engine is not coherent with the LLC cache on gen6. As
3176 * a result, we make sure that the pinning that is about to occur is
3177 * done with uncached PTEs. This is lowest common denominator for all
3178 * chipsets.
3179 *
3180 * However for gen6+, we could do better by using the GFDT bit instead
3181 * of uncaching, which would allow us to flush all the LLC-cached data
3182 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3183 */
3184 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3185 if (ret)
3186 return ret;
3187
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003188 /* As the user may map the buffer once pinned in the display plane
3189 * (e.g. libkms for the bootup splash), we have to ensure that we
3190 * always use map_and_fenceable for all scanout buffers.
3191 */
Chris Wilson86a1ee22012-08-11 15:41:04 +01003192 ret = i915_gem_object_pin(obj, alignment, true, false);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003193 if (ret)
3194 return ret;
3195
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003196 i915_gem_object_flush_cpu_write_domain(obj);
3197
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003198 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003199 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003200
3201 /* It should now be out of any other write domains, and we can update
3202 * the domain values for our changes.
3203 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003204 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003205 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003206
3207 trace_i915_gem_object_change_domain(obj,
3208 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003209 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003210
3211 return 0;
3212}
3213
Chris Wilson85345512010-11-13 09:49:11 +00003214int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003215i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003216{
Chris Wilson88241782011-01-07 17:09:48 +00003217 int ret;
3218
Chris Wilsona8198ee2011-04-13 22:04:09 +01003219 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003220 return 0;
3221
Chris Wilson0201f1e2012-07-20 12:41:01 +01003222 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003223 if (ret)
3224 return ret;
3225
Chris Wilsona8198ee2011-04-13 22:04:09 +01003226 /* Ensure that we invalidate the GPU's caches and TLBs. */
3227 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003228 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003229}
3230
Eric Anholte47c68e2008-11-14 13:35:19 -08003231/**
3232 * Moves a single object to the CPU read, and possibly write domain.
3233 *
3234 * This function returns when the move is complete, including waiting on
3235 * flushes to occur.
3236 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003237int
Chris Wilson919926a2010-11-12 13:42:53 +00003238i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003239{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003240 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003241 int ret;
3242
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003243 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3244 return 0;
3245
Chris Wilson0201f1e2012-07-20 12:41:01 +01003246 ret = i915_gem_object_wait_rendering(obj, !write);
3247 if (ret)
3248 return ret;
Eric Anholte47c68e2008-11-14 13:35:19 -08003249
3250 i915_gem_object_flush_gtt_write_domain(obj);
3251
Chris Wilson05394f32010-11-08 19:18:58 +00003252 old_write_domain = obj->base.write_domain;
3253 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003254
Eric Anholte47c68e2008-11-14 13:35:19 -08003255 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003256 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003257 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003258
Chris Wilson05394f32010-11-08 19:18:58 +00003259 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003260 }
3261
3262 /* It should now be out of any other write domains, and we can update
3263 * the domain values for our changes.
3264 */
Chris Wilson05394f32010-11-08 19:18:58 +00003265 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003266
3267 /* If we're writing through the CPU, then the GPU read domains will
3268 * need to be invalidated at next use.
3269 */
3270 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003271 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3272 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003273 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003274
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003275 trace_i915_gem_object_change_domain(obj,
3276 old_read_domains,
3277 old_write_domain);
3278
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003279 return 0;
3280}
3281
Eric Anholt673a3942008-07-30 12:06:12 -07003282/* Throttle our rendering by waiting until the ring has completed our requests
3283 * emitted over 20 msec ago.
3284 *
Eric Anholtb9624422009-06-03 07:27:35 +00003285 * Note that if we were to use the current jiffies each time around the loop,
3286 * we wouldn't escape the function with any frames outstanding if the time to
3287 * render a frame was over 20ms.
3288 *
Eric Anholt673a3942008-07-30 12:06:12 -07003289 * This should get us reasonable parallelism between CPU and GPU but also
3290 * relatively low latency when blocking on a particular request to finish.
3291 */
3292static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003293i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003294{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003295 struct drm_i915_private *dev_priv = dev->dev_private;
3296 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003297 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003298 struct drm_i915_gem_request *request;
3299 struct intel_ring_buffer *ring = NULL;
3300 u32 seqno = 0;
3301 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003302
Chris Wilsone110e8d2011-01-26 15:39:14 +00003303 if (atomic_read(&dev_priv->mm.wedged))
3304 return -EIO;
3305
Chris Wilson1c255952010-09-26 11:03:27 +01003306 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003307 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003308 if (time_after_eq(request->emitted_jiffies, recent_enough))
3309 break;
3310
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003311 ring = request->ring;
3312 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003313 }
Chris Wilson1c255952010-09-26 11:03:27 +01003314 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003315
3316 if (seqno == 0)
3317 return 0;
3318
Ben Widawsky5c81fe852012-05-24 15:03:08 -07003319 ret = __wait_seqno(ring, seqno, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003320 if (ret == 0)
3321 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003322
Eric Anholt673a3942008-07-30 12:06:12 -07003323 return ret;
3324}
3325
Eric Anholt673a3942008-07-30 12:06:12 -07003326int
Chris Wilson05394f32010-11-08 19:18:58 +00003327i915_gem_object_pin(struct drm_i915_gem_object *obj,
3328 uint32_t alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003329 bool map_and_fenceable,
3330 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003331{
Eric Anholt673a3942008-07-30 12:06:12 -07003332 int ret;
3333
Chris Wilson05394f32010-11-08 19:18:58 +00003334 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003335
Chris Wilson05394f32010-11-08 19:18:58 +00003336 if (obj->gtt_space != NULL) {
3337 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3338 (map_and_fenceable && !obj->map_and_fenceable)) {
3339 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003340 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003341 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3342 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003343 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003344 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003345 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003346 ret = i915_gem_object_unbind(obj);
3347 if (ret)
3348 return ret;
3349 }
3350 }
3351
Chris Wilson05394f32010-11-08 19:18:58 +00003352 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003353 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003354 map_and_fenceable,
3355 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01003356 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003357 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003358 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003359
Daniel Vetter74898d72012-02-15 23:50:22 +01003360 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3361 i915_gem_gtt_bind_object(obj, obj->cache_level);
3362
Chris Wilson1b502472012-04-24 15:47:30 +01003363 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003364 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003365
3366 return 0;
3367}
3368
3369void
Chris Wilson05394f32010-11-08 19:18:58 +00003370i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003371{
Chris Wilson05394f32010-11-08 19:18:58 +00003372 BUG_ON(obj->pin_count == 0);
3373 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003374
Chris Wilson1b502472012-04-24 15:47:30 +01003375 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003376 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003377}
3378
3379int
3380i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003381 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003382{
3383 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003384 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003385 int ret;
3386
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003387 ret = i915_mutex_lock_interruptible(dev);
3388 if (ret)
3389 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003390
Chris Wilson05394f32010-11-08 19:18:58 +00003391 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003392 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003393 ret = -ENOENT;
3394 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003395 }
Eric Anholt673a3942008-07-30 12:06:12 -07003396
Chris Wilson05394f32010-11-08 19:18:58 +00003397 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003398 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003399 ret = -EINVAL;
3400 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003401 }
3402
Chris Wilson05394f32010-11-08 19:18:58 +00003403 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003404 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3405 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003406 ret = -EINVAL;
3407 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003408 }
3409
Chris Wilson05394f32010-11-08 19:18:58 +00003410 obj->user_pin_count++;
3411 obj->pin_filp = file;
3412 if (obj->user_pin_count == 1) {
Chris Wilson86a1ee22012-08-11 15:41:04 +01003413 ret = i915_gem_object_pin(obj, args->alignment, true, false);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003414 if (ret)
3415 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003416 }
3417
3418 /* XXX - flush the CPU caches for pinned objects
3419 * as the X server doesn't manage domains yet
3420 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003421 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003422 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003423out:
Chris Wilson05394f32010-11-08 19:18:58 +00003424 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003425unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003426 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003427 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003428}
3429
3430int
3431i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003432 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003433{
3434 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003435 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003436 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003437
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003438 ret = i915_mutex_lock_interruptible(dev);
3439 if (ret)
3440 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003441
Chris Wilson05394f32010-11-08 19:18:58 +00003442 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003443 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003444 ret = -ENOENT;
3445 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003446 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003447
Chris Wilson05394f32010-11-08 19:18:58 +00003448 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003449 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3450 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003451 ret = -EINVAL;
3452 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003453 }
Chris Wilson05394f32010-11-08 19:18:58 +00003454 obj->user_pin_count--;
3455 if (obj->user_pin_count == 0) {
3456 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003457 i915_gem_object_unpin(obj);
3458 }
Eric Anholt673a3942008-07-30 12:06:12 -07003459
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003460out:
Chris Wilson05394f32010-11-08 19:18:58 +00003461 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003462unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003463 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003464 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003465}
3466
3467int
3468i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003469 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003470{
3471 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003472 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003473 int ret;
3474
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003475 ret = i915_mutex_lock_interruptible(dev);
3476 if (ret)
3477 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003478
Chris Wilson05394f32010-11-08 19:18:58 +00003479 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003480 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003481 ret = -ENOENT;
3482 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003483 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003484
Chris Wilson0be555b2010-08-04 15:36:30 +01003485 /* Count all active objects as busy, even if they are currently not used
3486 * by the gpu. Users of this interface expect objects to eventually
3487 * become non-busy without any further actions, therefore emit any
3488 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003489 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003490 ret = i915_gem_object_flush_active(obj);
3491
Chris Wilson05394f32010-11-08 19:18:58 +00003492 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01003493 if (obj->ring) {
3494 BUILD_BUG_ON(I915_NUM_RINGS > 16);
3495 args->busy |= intel_ring_flag(obj->ring) << 16;
3496 }
Eric Anholt673a3942008-07-30 12:06:12 -07003497
Chris Wilson05394f32010-11-08 19:18:58 +00003498 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003499unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003500 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003501 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003502}
3503
3504int
3505i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3506 struct drm_file *file_priv)
3507{
Akshay Joshi0206e352011-08-16 15:34:10 -04003508 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003509}
3510
Chris Wilson3ef94da2009-09-14 16:50:29 +01003511int
3512i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3513 struct drm_file *file_priv)
3514{
3515 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003516 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003517 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003518
3519 switch (args->madv) {
3520 case I915_MADV_DONTNEED:
3521 case I915_MADV_WILLNEED:
3522 break;
3523 default:
3524 return -EINVAL;
3525 }
3526
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003527 ret = i915_mutex_lock_interruptible(dev);
3528 if (ret)
3529 return ret;
3530
Chris Wilson05394f32010-11-08 19:18:58 +00003531 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003532 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003533 ret = -ENOENT;
3534 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003535 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003536
Chris Wilson05394f32010-11-08 19:18:58 +00003537 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003538 ret = -EINVAL;
3539 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003540 }
3541
Chris Wilson05394f32010-11-08 19:18:58 +00003542 if (obj->madv != __I915_MADV_PURGED)
3543 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003544
Chris Wilson6c085a72012-08-20 11:40:46 +02003545 /* if the object is no longer attached, discard its backing storage */
3546 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003547 i915_gem_object_truncate(obj);
3548
Chris Wilson05394f32010-11-08 19:18:58 +00003549 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003550
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003551out:
Chris Wilson05394f32010-11-08 19:18:58 +00003552 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003553unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003554 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003555 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003556}
3557
Chris Wilson05394f32010-11-08 19:18:58 +00003558struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3559 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003560{
Chris Wilson73aa8082010-09-30 11:46:12 +01003561 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003562 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003563 struct address_space *mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003564 u32 mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00003565
3566 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3567 if (obj == NULL)
3568 return NULL;
3569
3570 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3571 kfree(obj);
3572 return NULL;
3573 }
3574
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003575 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
3576 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
3577 /* 965gm cannot relocate objects above 4GiB. */
3578 mask &= ~__GFP_HIGHMEM;
3579 mask |= __GFP_DMA32;
3580 }
3581
Hugh Dickins5949eac2011-06-27 16:18:18 -07003582 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003583 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07003584
Chris Wilson73aa8082010-09-30 11:46:12 +01003585 i915_gem_info_add_obj(dev_priv, size);
3586
Daniel Vetterc397b902010-04-09 19:05:07 +00003587 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3588 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3589
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003590 if (HAS_LLC(dev)) {
3591 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003592 * cache) for about a 10% performance improvement
3593 * compared to uncached. Graphics requests other than
3594 * display scanout are coherent with the CPU in
3595 * accessing this cache. This means in this mode we
3596 * don't need to clflush on the CPU side, and on the
3597 * GPU side we only need to flush internal caches to
3598 * get data visible to the CPU.
3599 *
3600 * However, we maintain the display planes as UC, and so
3601 * need to rebind when first used as such.
3602 */
3603 obj->cache_level = I915_CACHE_LLC;
3604 } else
3605 obj->cache_level = I915_CACHE_NONE;
3606
Daniel Vetter62b8b212010-04-09 19:05:08 +00003607 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003608 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003609 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003610 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003611 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003612 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003613 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003614 /* Avoid an unnecessary call to unbind on the first bind. */
3615 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003616
Chris Wilson05394f32010-11-08 19:18:58 +00003617 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003618}
3619
Eric Anholt673a3942008-07-30 12:06:12 -07003620int i915_gem_init_object(struct drm_gem_object *obj)
3621{
Daniel Vetterc397b902010-04-09 19:05:07 +00003622 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003623
Eric Anholt673a3942008-07-30 12:06:12 -07003624 return 0;
3625}
3626
Chris Wilson1488fc02012-04-24 15:47:31 +01003627void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003628{
Chris Wilson1488fc02012-04-24 15:47:31 +01003629 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003630 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003631 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003632
Chris Wilson26e12f82011-03-20 11:20:19 +00003633 trace_i915_gem_object_destroy(obj);
3634
Daniel Vetter1286ff72012-05-10 15:25:09 +02003635 if (gem_obj->import_attach)
3636 drm_prime_gem_destroy(gem_obj, obj->sg_table);
3637
Chris Wilson1488fc02012-04-24 15:47:31 +01003638 if (obj->phys_obj)
3639 i915_gem_detach_phys_object(dev, obj);
3640
3641 obj->pin_count = 0;
3642 if (WARN_ON(i915_gem_object_unbind(obj) == -ERESTARTSYS)) {
3643 bool was_interruptible;
3644
3645 was_interruptible = dev_priv->mm.interruptible;
3646 dev_priv->mm.interruptible = false;
3647
3648 WARN_ON(i915_gem_object_unbind(obj));
3649
3650 dev_priv->mm.interruptible = was_interruptible;
3651 }
3652
Chris Wilson6c085a72012-08-20 11:40:46 +02003653 i915_gem_object_put_pages_gtt(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01003654 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003655
Chris Wilson05394f32010-11-08 19:18:58 +00003656 drm_gem_object_release(&obj->base);
3657 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003658
Chris Wilson05394f32010-11-08 19:18:58 +00003659 kfree(obj->bit_17);
3660 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003661}
3662
Jesse Barnes5669fca2009-02-17 15:13:31 -08003663int
Eric Anholt673a3942008-07-30 12:06:12 -07003664i915_gem_idle(struct drm_device *dev)
3665{
3666 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003667 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003668
Keith Packard6dbe2772008-10-14 21:41:13 -07003669 mutex_lock(&dev->struct_mutex);
3670
Chris Wilson87acb0a2010-10-19 10:13:00 +01003671 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003672 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003673 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003674 }
Eric Anholt673a3942008-07-30 12:06:12 -07003675
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003676 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003677 if (ret) {
3678 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003679 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003680 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003681 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003682
Chris Wilson29105cc2010-01-07 10:39:13 +00003683 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01003684 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02003685 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003686
Chris Wilson312817a2010-11-22 11:50:11 +00003687 i915_gem_reset_fences(dev);
3688
Chris Wilson29105cc2010-01-07 10:39:13 +00003689 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3690 * We need to replace this with a semaphore, or something.
3691 * And not confound mm.suspended!
3692 */
3693 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003694 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003695
3696 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003697 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003698
Keith Packard6dbe2772008-10-14 21:41:13 -07003699 mutex_unlock(&dev->struct_mutex);
3700
Chris Wilson29105cc2010-01-07 10:39:13 +00003701 /* Cancel the retire work handler, which should be idle now. */
3702 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3703
Eric Anholt673a3942008-07-30 12:06:12 -07003704 return 0;
3705}
3706
Ben Widawskyb9524a12012-05-25 16:56:24 -07003707void i915_gem_l3_remap(struct drm_device *dev)
3708{
3709 drm_i915_private_t *dev_priv = dev->dev_private;
3710 u32 misccpctl;
3711 int i;
3712
3713 if (!IS_IVYBRIDGE(dev))
3714 return;
3715
3716 if (!dev_priv->mm.l3_remap_info)
3717 return;
3718
3719 misccpctl = I915_READ(GEN7_MISCCPCTL);
3720 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
3721 POSTING_READ(GEN7_MISCCPCTL);
3722
3723 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
3724 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
3725 if (remap && remap != dev_priv->mm.l3_remap_info[i/4])
3726 DRM_DEBUG("0x%x was already programmed to %x\n",
3727 GEN7_L3LOG_BASE + i, remap);
3728 if (remap && !dev_priv->mm.l3_remap_info[i/4])
3729 DRM_DEBUG_DRIVER("Clearing remapped register\n");
3730 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->mm.l3_remap_info[i/4]);
3731 }
3732
3733 /* Make sure all the writes land before disabling dop clock gating */
3734 POSTING_READ(GEN7_L3LOG_BASE);
3735
3736 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
3737}
3738
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003739void i915_gem_init_swizzling(struct drm_device *dev)
3740{
3741 drm_i915_private_t *dev_priv = dev->dev_private;
3742
Daniel Vetter11782b02012-01-31 16:47:55 +01003743 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003744 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3745 return;
3746
3747 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3748 DISP_TILE_SURFACE_SWIZZLING);
3749
Daniel Vetter11782b02012-01-31 16:47:55 +01003750 if (IS_GEN5(dev))
3751 return;
3752
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003753 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3754 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02003755 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003756 else
Daniel Vetter6b26c862012-04-24 14:04:12 +02003757 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003758}
Daniel Vettere21af882012-02-09 20:53:27 +01003759
3760void i915_gem_init_ppgtt(struct drm_device *dev)
3761{
3762 drm_i915_private_t *dev_priv = dev->dev_private;
3763 uint32_t pd_offset;
3764 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003765 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3766 uint32_t __iomem *pd_addr;
3767 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003768 int i;
3769
3770 if (!dev_priv->mm.aliasing_ppgtt)
3771 return;
3772
Daniel Vetter55a254a2012-03-22 00:14:43 +01003773
3774 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3775 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3776 dma_addr_t pt_addr;
3777
3778 if (dev_priv->mm.gtt->needs_dmar)
3779 pt_addr = ppgtt->pt_dma_addr[i];
3780 else
3781 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3782
3783 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3784 pd_entry |= GEN6_PDE_VALID;
3785
3786 writel(pd_entry, pd_addr + i);
3787 }
3788 readl(pd_addr);
3789
3790 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003791 pd_offset /= 64; /* in cachelines, */
3792 pd_offset <<= 16;
3793
3794 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003795 uint32_t ecochk, gab_ctl, ecobits;
3796
3797 ecobits = I915_READ(GAC_ECO_BITS);
3798 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003799
3800 gab_ctl = I915_READ(GAB_CTL);
3801 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3802
3803 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003804 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3805 ECOCHK_PPGTT_CACHE64B);
Daniel Vetter6b26c862012-04-24 14:04:12 +02003806 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003807 } else if (INTEL_INFO(dev)->gen >= 7) {
3808 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3809 /* GFX_MODE is per-ring on gen7+ */
3810 }
3811
Chris Wilsonb4519512012-05-11 14:29:30 +01003812 for_each_ring(ring, dev_priv, i) {
Daniel Vettere21af882012-02-09 20:53:27 +01003813 if (INTEL_INFO(dev)->gen >= 7)
3814 I915_WRITE(RING_MODE_GEN7(ring),
Daniel Vetter6b26c862012-04-24 14:04:12 +02003815 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003816
3817 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3818 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3819 }
3820}
3821
Chris Wilson67b1b572012-07-05 23:49:40 +01003822static bool
3823intel_enable_blt(struct drm_device *dev)
3824{
3825 if (!HAS_BLT(dev))
3826 return false;
3827
3828 /* The blitter was dysfunctional on early prototypes */
3829 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
3830 DRM_INFO("BLT not supported on this pre-production hardware;"
3831 " graphics performance will be degraded.\n");
3832 return false;
3833 }
3834
3835 return true;
3836}
3837
Eric Anholt673a3942008-07-30 12:06:12 -07003838int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003839i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003840{
3841 drm_i915_private_t *dev_priv = dev->dev_private;
3842 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003843
Daniel Vetter8ecd1a62012-06-07 15:56:03 +02003844 if (!intel_enable_gtt())
3845 return -EIO;
3846
Ben Widawskyb9524a12012-05-25 16:56:24 -07003847 i915_gem_l3_remap(dev);
3848
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003849 i915_gem_init_swizzling(dev);
3850
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003851 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003852 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003853 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003854
3855 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003856 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003857 if (ret)
3858 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003859 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003860
Chris Wilson67b1b572012-07-05 23:49:40 +01003861 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01003862 ret = intel_init_blt_ring_buffer(dev);
3863 if (ret)
3864 goto cleanup_bsd_ring;
3865 }
3866
Chris Wilson6f392d52010-08-07 11:01:22 +01003867 dev_priv->next_seqno = 1;
3868
Ben Widawsky254f9652012-06-04 14:42:42 -07003869 /*
3870 * XXX: There was some w/a described somewhere suggesting loading
3871 * contexts before PPGTT.
3872 */
3873 i915_gem_context_init(dev);
Daniel Vettere21af882012-02-09 20:53:27 +01003874 i915_gem_init_ppgtt(dev);
3875
Chris Wilson68f95ba2010-05-27 13:18:22 +01003876 return 0;
3877
Chris Wilson549f7362010-10-19 11:19:32 +01003878cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003879 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003880cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003881 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003882 return ret;
3883}
3884
Chris Wilson1070a422012-04-24 15:47:41 +01003885static bool
3886intel_enable_ppgtt(struct drm_device *dev)
3887{
3888 if (i915_enable_ppgtt >= 0)
3889 return i915_enable_ppgtt;
3890
3891#ifdef CONFIG_INTEL_IOMMU
3892 /* Disable ppgtt on SNB if VT-d is on. */
3893 if (INTEL_INFO(dev)->gen == 6 && intel_iommu_gfx_mapped)
3894 return false;
3895#endif
3896
3897 return true;
3898}
3899
3900int i915_gem_init(struct drm_device *dev)
3901{
3902 struct drm_i915_private *dev_priv = dev->dev_private;
3903 unsigned long gtt_size, mappable_size;
3904 int ret;
3905
3906 gtt_size = dev_priv->mm.gtt->gtt_total_entries << PAGE_SHIFT;
3907 mappable_size = dev_priv->mm.gtt->gtt_mappable_entries << PAGE_SHIFT;
3908
3909 mutex_lock(&dev->struct_mutex);
3910 if (intel_enable_ppgtt(dev) && HAS_ALIASING_PPGTT(dev)) {
3911 /* PPGTT pdes are stolen from global gtt ptes, so shrink the
3912 * aperture accordingly when using aliasing ppgtt. */
3913 gtt_size -= I915_PPGTT_PD_ENTRIES*PAGE_SIZE;
3914
3915 i915_gem_init_global_gtt(dev, 0, mappable_size, gtt_size);
3916
3917 ret = i915_gem_init_aliasing_ppgtt(dev);
3918 if (ret) {
3919 mutex_unlock(&dev->struct_mutex);
3920 return ret;
3921 }
3922 } else {
3923 /* Let GEM Manage all of the aperture.
3924 *
3925 * However, leave one page at the end still bound to the scratch
3926 * page. There are a number of places where the hardware
3927 * apparently prefetches past the end of the object, and we've
3928 * seen multiple hangs with the GPU head pointer stuck in a
3929 * batchbuffer bound at the last page of the aperture. One page
3930 * should be enough to keep any prefetching inside of the
3931 * aperture.
3932 */
3933 i915_gem_init_global_gtt(dev, 0, mappable_size,
3934 gtt_size);
3935 }
3936
3937 ret = i915_gem_init_hw(dev);
3938 mutex_unlock(&dev->struct_mutex);
3939 if (ret) {
3940 i915_gem_cleanup_aliasing_ppgtt(dev);
3941 return ret;
3942 }
3943
Daniel Vetter53ca26c2012-04-26 23:28:03 +02003944 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
3945 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3946 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01003947 return 0;
3948}
3949
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003950void
3951i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3952{
3953 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003954 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003955 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003956
Chris Wilsonb4519512012-05-11 14:29:30 +01003957 for_each_ring(ring, dev_priv, i)
3958 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003959}
3960
3961int
Eric Anholt673a3942008-07-30 12:06:12 -07003962i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3963 struct drm_file *file_priv)
3964{
3965 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01003966 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003967
Jesse Barnes79e53942008-11-07 14:24:08 -08003968 if (drm_core_check_feature(dev, DRIVER_MODESET))
3969 return 0;
3970
Ben Gamariba1234d2009-09-14 17:48:47 -04003971 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003972 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003973 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003974 }
3975
Eric Anholt673a3942008-07-30 12:06:12 -07003976 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003977 dev_priv->mm.suspended = 0;
3978
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003979 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003980 if (ret != 0) {
3981 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003982 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003983 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003984
Chris Wilson69dc4982010-10-19 10:36:51 +01003985 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003986 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003987 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003988
Chris Wilson5f353082010-06-07 14:03:03 +01003989 ret = drm_irq_install(dev);
3990 if (ret)
3991 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003992
Eric Anholt673a3942008-07-30 12:06:12 -07003993 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003994
3995cleanup_ringbuffer:
3996 mutex_lock(&dev->struct_mutex);
3997 i915_gem_cleanup_ringbuffer(dev);
3998 dev_priv->mm.suspended = 1;
3999 mutex_unlock(&dev->struct_mutex);
4000
4001 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004002}
4003
4004int
4005i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4006 struct drm_file *file_priv)
4007{
Jesse Barnes79e53942008-11-07 14:24:08 -08004008 if (drm_core_check_feature(dev, DRIVER_MODESET))
4009 return 0;
4010
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004011 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07004012 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004013}
4014
4015void
4016i915_gem_lastclose(struct drm_device *dev)
4017{
4018 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004019
Eric Anholte806b492009-01-22 09:56:58 -08004020 if (drm_core_check_feature(dev, DRIVER_MODESET))
4021 return;
4022
Keith Packard6dbe2772008-10-14 21:41:13 -07004023 ret = i915_gem_idle(dev);
4024 if (ret)
4025 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004026}
4027
Chris Wilson64193402010-10-24 12:38:05 +01004028static void
4029init_ring_lists(struct intel_ring_buffer *ring)
4030{
4031 INIT_LIST_HEAD(&ring->active_list);
4032 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004033}
4034
Eric Anholt673a3942008-07-30 12:06:12 -07004035void
4036i915_gem_load(struct drm_device *dev)
4037{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004038 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07004039 drm_i915_private_t *dev_priv = dev->dev_private;
4040
Chris Wilson69dc4982010-10-19 10:36:51 +01004041 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004042 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004043 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4044 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004045 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004046 for (i = 0; i < I915_NUM_RINGS; i++)
4047 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004048 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004049 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004050 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4051 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004052 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01004053
Dave Airlie94400122010-07-20 13:15:31 +10004054 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4055 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004056 I915_WRITE(MI_ARB_STATE,
4057 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004058 }
4059
Chris Wilson72bfa192010-12-19 11:42:05 +00004060 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4061
Jesse Barnesde151cf2008-11-12 10:03:55 -08004062 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004063 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4064 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004065
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004066 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004067 dev_priv->num_fence_regs = 16;
4068 else
4069 dev_priv->num_fence_regs = 8;
4070
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004071 /* Initialize fence registers to zero */
Chris Wilsonada726c2012-04-17 15:31:32 +01004072 i915_gem_reset_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004073
Eric Anholt673a3942008-07-30 12:06:12 -07004074 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004075 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004076
Chris Wilsonce453d82011-02-21 14:43:56 +00004077 dev_priv->mm.interruptible = true;
4078
Chris Wilson17250b72010-10-28 12:51:39 +01004079 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4080 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4081 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004082}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004083
4084/*
4085 * Create a physically contiguous memory object for this object
4086 * e.g. for cursor + overlay regs
4087 */
Chris Wilson995b6762010-08-20 13:23:26 +01004088static int i915_gem_init_phys_object(struct drm_device *dev,
4089 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004090{
4091 drm_i915_private_t *dev_priv = dev->dev_private;
4092 struct drm_i915_gem_phys_object *phys_obj;
4093 int ret;
4094
4095 if (dev_priv->mm.phys_objs[id - 1] || !size)
4096 return 0;
4097
Eric Anholt9a298b22009-03-24 12:23:04 -07004098 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004099 if (!phys_obj)
4100 return -ENOMEM;
4101
4102 phys_obj->id = id;
4103
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004104 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004105 if (!phys_obj->handle) {
4106 ret = -ENOMEM;
4107 goto kfree_obj;
4108 }
4109#ifdef CONFIG_X86
4110 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4111#endif
4112
4113 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4114
4115 return 0;
4116kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004117 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004118 return ret;
4119}
4120
Chris Wilson995b6762010-08-20 13:23:26 +01004121static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004122{
4123 drm_i915_private_t *dev_priv = dev->dev_private;
4124 struct drm_i915_gem_phys_object *phys_obj;
4125
4126 if (!dev_priv->mm.phys_objs[id - 1])
4127 return;
4128
4129 phys_obj = dev_priv->mm.phys_objs[id - 1];
4130 if (phys_obj->cur_obj) {
4131 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4132 }
4133
4134#ifdef CONFIG_X86
4135 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4136#endif
4137 drm_pci_free(dev, phys_obj->handle);
4138 kfree(phys_obj);
4139 dev_priv->mm.phys_objs[id - 1] = NULL;
4140}
4141
4142void i915_gem_free_all_phys_object(struct drm_device *dev)
4143{
4144 int i;
4145
Dave Airlie260883c2009-01-22 17:58:49 +10004146 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004147 i915_gem_free_phys_object(dev, i);
4148}
4149
4150void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004151 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004152{
Chris Wilson05394f32010-11-08 19:18:58 +00004153 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004154 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004155 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004156 int page_count;
4157
Chris Wilson05394f32010-11-08 19:18:58 +00004158 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004159 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004160 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004161
Chris Wilson05394f32010-11-08 19:18:58 +00004162 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004163 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004164 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004165 if (!IS_ERR(page)) {
4166 char *dst = kmap_atomic(page);
4167 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4168 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004169
Chris Wilsone5281cc2010-10-28 13:45:36 +01004170 drm_clflush_pages(&page, 1);
4171
4172 set_page_dirty(page);
4173 mark_page_accessed(page);
4174 page_cache_release(page);
4175 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004176 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01004177 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01004178
Chris Wilson05394f32010-11-08 19:18:58 +00004179 obj->phys_obj->cur_obj = NULL;
4180 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004181}
4182
4183int
4184i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004185 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004186 int id,
4187 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004188{
Chris Wilson05394f32010-11-08 19:18:58 +00004189 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004190 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004191 int ret = 0;
4192 int page_count;
4193 int i;
4194
4195 if (id > I915_MAX_PHYS_OBJECT)
4196 return -EINVAL;
4197
Chris Wilson05394f32010-11-08 19:18:58 +00004198 if (obj->phys_obj) {
4199 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004200 return 0;
4201 i915_gem_detach_phys_object(dev, obj);
4202 }
4203
Dave Airlie71acb5e2008-12-30 20:31:46 +10004204 /* create a new object */
4205 if (!dev_priv->mm.phys_objs[id - 1]) {
4206 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004207 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004208 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004209 DRM_ERROR("failed to init phys object %d size: %zu\n",
4210 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004211 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004212 }
4213 }
4214
4215 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004216 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4217 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004218
Chris Wilson05394f32010-11-08 19:18:58 +00004219 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004220
4221 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004222 struct page *page;
4223 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004224
Hugh Dickins5949eac2011-06-27 16:18:18 -07004225 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004226 if (IS_ERR(page))
4227 return PTR_ERR(page);
4228
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004229 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004230 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004231 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004232 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004233
4234 mark_page_accessed(page);
4235 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004236 }
4237
4238 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004239}
4240
4241static int
Chris Wilson05394f32010-11-08 19:18:58 +00004242i915_gem_phys_pwrite(struct drm_device *dev,
4243 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004244 struct drm_i915_gem_pwrite *args,
4245 struct drm_file *file_priv)
4246{
Chris Wilson05394f32010-11-08 19:18:58 +00004247 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004248 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004249
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004250 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4251 unsigned long unwritten;
4252
4253 /* The physical object once assigned is fixed for the lifetime
4254 * of the obj, so we can safely drop the lock and continue
4255 * to access vaddr.
4256 */
4257 mutex_unlock(&dev->struct_mutex);
4258 unwritten = copy_from_user(vaddr, user_data, args->size);
4259 mutex_lock(&dev->struct_mutex);
4260 if (unwritten)
4261 return -EFAULT;
4262 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004263
Daniel Vetter40ce6572010-11-05 18:12:18 +01004264 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004265 return 0;
4266}
Eric Anholtb9624422009-06-03 07:27:35 +00004267
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004268void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004269{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004270 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004271
4272 /* Clean up our request list when the client is going away, so that
4273 * later retire_requests won't dereference our soon-to-be-gone
4274 * file_priv.
4275 */
Chris Wilson1c255952010-09-26 11:03:27 +01004276 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004277 while (!list_empty(&file_priv->mm.request_list)) {
4278 struct drm_i915_gem_request *request;
4279
4280 request = list_first_entry(&file_priv->mm.request_list,
4281 struct drm_i915_gem_request,
4282 client_list);
4283 list_del(&request->client_list);
4284 request->file_priv = NULL;
4285 }
Chris Wilson1c255952010-09-26 11:03:27 +01004286 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004287}
Chris Wilson31169712009-09-14 16:50:28 +01004288
Chris Wilson31169712009-09-14 16:50:28 +01004289static int
Ying Han1495f232011-05-24 17:12:27 -07004290i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004291{
Chris Wilson17250b72010-10-28 12:51:39 +01004292 struct drm_i915_private *dev_priv =
4293 container_of(shrinker,
4294 struct drm_i915_private,
4295 mm.inactive_shrinker);
4296 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02004297 struct drm_i915_gem_object *obj;
Ying Han1495f232011-05-24 17:12:27 -07004298 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004299 int cnt;
4300
4301 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004302 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004303
Chris Wilson6c085a72012-08-20 11:40:46 +02004304 if (nr_to_scan) {
4305 nr_to_scan -= i915_gem_purge(dev_priv, nr_to_scan);
4306 if (nr_to_scan > 0)
4307 i915_gem_shrink_all(dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +01004308 }
4309
Chris Wilson17250b72010-10-28 12:51:39 +01004310 cnt = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02004311 list_for_each_entry(obj, &dev_priv->mm.unbound_list, gtt_list)
4312 cnt += obj->base.size >> PAGE_SHIFT;
4313 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list)
4314 if (obj->pin_count == 0)
4315 cnt += obj->base.size >> PAGE_SHIFT;
Chris Wilson31169712009-09-14 16:50:28 +01004316
Chris Wilson17250b72010-10-28 12:51:39 +01004317 mutex_unlock(&dev->struct_mutex);
Chris Wilson6c085a72012-08-20 11:40:46 +02004318 return cnt;
Chris Wilson31169712009-09-14 16:50:28 +01004319}