blob: ff3066c4c76a23b5511aecc1b5d000913f931d41 [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>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson88241782011-01-07 17:09:48 +000039static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
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_set_to_cpu_domain(struct drm_i915_gem_object *obj,
43 bool write);
44static __must_check int i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
45 uint64_t offset,
46 uint64_t size);
Chris Wilson05394f32010-11-08 19:18:58 +000047static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000048static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
49 unsigned alignment,
50 bool map_and_fenceable);
Chris Wilsond9e86c02010-11-10 16:40:20 +000051static void i915_gem_clear_fence_reg(struct drm_device *dev,
52 struct drm_i915_fence_reg *reg);
Chris Wilson05394f32010-11-08 19:18:58 +000053static int i915_gem_phys_pwrite(struct drm_device *dev,
54 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100055 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000056 struct drm_file *file);
57static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070058
Chris Wilson17250b72010-10-28 12:51:39 +010059static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070060 struct shrink_control *sc);
Chris Wilson31169712009-09-14 16:50:28 +010061
Chris Wilson73aa8082010-09-30 11:46:12 +010062/* some bookkeeping */
63static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
64 size_t size)
65{
66 dev_priv->mm.object_count++;
67 dev_priv->mm.object_memory += size;
68}
69
70static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
71 size_t size)
72{
73 dev_priv->mm.object_count--;
74 dev_priv->mm.object_memory -= size;
75}
76
Chris Wilson21dd3732011-01-26 15:55:56 +000077static int
78i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010079{
80 struct drm_i915_private *dev_priv = dev->dev_private;
81 struct completion *x = &dev_priv->error_completion;
82 unsigned long flags;
83 int ret;
84
85 if (!atomic_read(&dev_priv->mm.wedged))
86 return 0;
87
88 ret = wait_for_completion_interruptible(x);
89 if (ret)
90 return ret;
91
Chris Wilson21dd3732011-01-26 15:55:56 +000092 if (atomic_read(&dev_priv->mm.wedged)) {
93 /* GPU is hung, bump the completion count to account for
94 * the token we just consumed so that we never hit zero and
95 * end up waiting upon a subsequent completion event that
96 * will never happen.
97 */
98 spin_lock_irqsave(&x->wait.lock, flags);
99 x->done++;
100 spin_unlock_irqrestore(&x->wait.lock, flags);
101 }
102 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100103}
104
Chris Wilson54cf91d2010-11-25 18:00:26 +0000105int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100106{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100107 int ret;
108
Chris Wilson21dd3732011-01-26 15:55:56 +0000109 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100110 if (ret)
111 return ret;
112
113 ret = mutex_lock_interruptible(&dev->struct_mutex);
114 if (ret)
115 return ret;
116
Chris Wilson23bc5982010-09-29 16:10:57 +0100117 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100118 return 0;
119}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100120
Chris Wilson7d1c4802010-08-07 21:45:03 +0100121static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000122i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100123{
Chris Wilson05394f32010-11-08 19:18:58 +0000124 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100125}
126
Chris Wilson20217462010-11-23 15:26:33 +0000127void i915_gem_do_init(struct drm_device *dev,
128 unsigned long start,
129 unsigned long mappable_end,
130 unsigned long end)
Jesse Barnes79e53942008-11-07 14:24:08 -0800131{
132 drm_i915_private_t *dev_priv = dev->dev_private;
133
Chris Wilsonbee4a182011-01-21 10:54:32 +0000134 drm_mm_init(&dev_priv->mm.gtt_space, start, end - start);
Jesse Barnes79e53942008-11-07 14:24:08 -0800135
Chris Wilsonbee4a182011-01-21 10:54:32 +0000136 dev_priv->mm.gtt_start = start;
137 dev_priv->mm.gtt_mappable_end = mappable_end;
138 dev_priv->mm.gtt_end = end;
Chris Wilson73aa8082010-09-30 11:46:12 +0100139 dev_priv->mm.gtt_total = end - start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200140 dev_priv->mm.mappable_gtt_total = min(end, mappable_end) - start;
Chris Wilsonbee4a182011-01-21 10:54:32 +0000141
142 /* Take over this portion of the GTT */
143 intel_gtt_clear_range(start / PAGE_SIZE, (end-start) / PAGE_SIZE);
Jesse Barnes79e53942008-11-07 14:24:08 -0800144}
Keith Packard6dbe2772008-10-14 21:41:13 -0700145
Eric Anholt673a3942008-07-30 12:06:12 -0700146int
147i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000148 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700149{
Eric Anholt673a3942008-07-30 12:06:12 -0700150 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000151
152 if (args->gtt_start >= args->gtt_end ||
153 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
154 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700155
156 mutex_lock(&dev->struct_mutex);
Chris Wilson20217462010-11-23 15:26:33 +0000157 i915_gem_do_init(dev, args->gtt_start, args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700158 mutex_unlock(&dev->struct_mutex);
159
Chris Wilson20217462010-11-23 15:26:33 +0000160 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700161}
162
Eric Anholt5a125c32008-10-22 21:40:13 -0700163int
164i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000165 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700166{
Chris Wilson73aa8082010-09-30 11:46:12 +0100167 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700168 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000169 struct drm_i915_gem_object *obj;
170 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700171
172 if (!(dev->driver->driver_features & DRIVER_GEM))
173 return -ENODEV;
174
Chris Wilson6299f992010-11-24 12:23:44 +0000175 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000177 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
178 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100179 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700180
Chris Wilson6299f992010-11-24 12:23:44 +0000181 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400182 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000183
Eric Anholt5a125c32008-10-22 21:40:13 -0700184 return 0;
185}
186
Dave Airlieff72145b2011-02-07 12:16:14 +1000187static int
188i915_gem_create(struct drm_file *file,
189 struct drm_device *dev,
190 uint64_t size,
191 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700192{
Chris Wilson05394f32010-11-08 19:18:58 +0000193 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300194 int ret;
195 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700196
Dave Airlieff72145b2011-02-07 12:16:14 +1000197 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200198 if (size == 0)
199 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700200
201 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000202 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700203 if (obj == NULL)
204 return -ENOMEM;
205
Chris Wilson05394f32010-11-08 19:18:58 +0000206 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100207 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000208 drm_gem_object_release(&obj->base);
209 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100210 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700211 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100212 }
213
Chris Wilson202f2fe2010-10-14 13:20:40 +0100214 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000215 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100216 trace_i915_gem_object_create(obj);
217
Dave Airlieff72145b2011-02-07 12:16:14 +1000218 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700219 return 0;
220}
221
Dave Airlieff72145b2011-02-07 12:16:14 +1000222int
223i915_gem_dumb_create(struct drm_file *file,
224 struct drm_device *dev,
225 struct drm_mode_create_dumb *args)
226{
227 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000228 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000229 args->size = args->pitch * args->height;
230 return i915_gem_create(file, dev,
231 args->size, &args->handle);
232}
233
234int i915_gem_dumb_destroy(struct drm_file *file,
235 struct drm_device *dev,
236 uint32_t handle)
237{
238 return drm_gem_handle_delete(file, handle);
239}
240
241/**
242 * Creates a new mm object and returns a handle to it.
243 */
244int
245i915_gem_create_ioctl(struct drm_device *dev, void *data,
246 struct drm_file *file)
247{
248 struct drm_i915_gem_create *args = data;
249 return i915_gem_create(file, dev,
250 args->size, &args->handle);
251}
252
Chris Wilson05394f32010-11-08 19:18:58 +0000253static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700254{
Chris Wilson05394f32010-11-08 19:18:58 +0000255 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700256
257 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000258 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700259}
260
Chris Wilson99a03df2010-05-27 14:15:34 +0100261static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700262slow_shmem_copy(struct page *dst_page,
263 int dst_offset,
264 struct page *src_page,
265 int src_offset,
266 int length)
267{
268 char *dst_vaddr, *src_vaddr;
269
Chris Wilson99a03df2010-05-27 14:15:34 +0100270 dst_vaddr = kmap(dst_page);
271 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700272
273 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
274
Chris Wilson99a03df2010-05-27 14:15:34 +0100275 kunmap(src_page);
276 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700277}
278
Chris Wilson99a03df2010-05-27 14:15:34 +0100279static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700280slow_shmem_bit17_copy(struct page *gpu_page,
281 int gpu_offset,
282 struct page *cpu_page,
283 int cpu_offset,
284 int length,
285 int is_read)
286{
287 char *gpu_vaddr, *cpu_vaddr;
288
289 /* Use the unswizzled path if this page isn't affected. */
290 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
291 if (is_read)
292 return slow_shmem_copy(cpu_page, cpu_offset,
293 gpu_page, gpu_offset, length);
294 else
295 return slow_shmem_copy(gpu_page, gpu_offset,
296 cpu_page, cpu_offset, length);
297 }
298
Chris Wilson99a03df2010-05-27 14:15:34 +0100299 gpu_vaddr = kmap(gpu_page);
300 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700301
302 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
303 * XORing with the other bits (A9 for Y, A9 and A10 for X)
304 */
305 while (length > 0) {
306 int cacheline_end = ALIGN(gpu_offset + 1, 64);
307 int this_length = min(cacheline_end - gpu_offset, length);
308 int swizzled_gpu_offset = gpu_offset ^ 64;
309
310 if (is_read) {
311 memcpy(cpu_vaddr + cpu_offset,
312 gpu_vaddr + swizzled_gpu_offset,
313 this_length);
314 } else {
315 memcpy(gpu_vaddr + swizzled_gpu_offset,
316 cpu_vaddr + cpu_offset,
317 this_length);
318 }
319 cpu_offset += this_length;
320 gpu_offset += this_length;
321 length -= this_length;
322 }
323
Chris Wilson99a03df2010-05-27 14:15:34 +0100324 kunmap(cpu_page);
325 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700326}
327
Eric Anholt673a3942008-07-30 12:06:12 -0700328/**
Eric Anholteb014592009-03-10 11:44:52 -0700329 * This is the fast shmem pread path, which attempts to copy_from_user directly
330 * from the backing pages of the object to the user's address space. On a
331 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
332 */
333static int
Chris Wilson05394f32010-11-08 19:18:58 +0000334i915_gem_shmem_pread_fast(struct drm_device *dev,
335 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700336 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000337 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700338{
Chris Wilson05394f32010-11-08 19:18:58 +0000339 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700340 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100341 loff_t offset;
Eric Anholteb014592009-03-10 11:44:52 -0700342 char __user *user_data;
343 int page_offset, page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700344
345 user_data = (char __user *) (uintptr_t) args->data_ptr;
346 remain = args->size;
347
Eric Anholteb014592009-03-10 11:44:52 -0700348 offset = args->offset;
349
350 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100351 struct page *page;
352 char *vaddr;
353 int ret;
354
Eric Anholteb014592009-03-10 11:44:52 -0700355 /* Operation in this page
356 *
Eric Anholteb014592009-03-10 11:44:52 -0700357 * page_offset = offset within page
358 * page_length = bytes to copy for this page
359 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100360 page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700361 page_length = remain;
362 if ((page_offset + remain) > PAGE_SIZE)
363 page_length = PAGE_SIZE - page_offset;
364
Hugh Dickins5949eac2011-06-27 16:18:18 -0700365 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100366 if (IS_ERR(page))
367 return PTR_ERR(page);
368
369 vaddr = kmap_atomic(page);
370 ret = __copy_to_user_inatomic(user_data,
371 vaddr + page_offset,
372 page_length);
373 kunmap_atomic(vaddr);
374
375 mark_page_accessed(page);
376 page_cache_release(page);
377 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100378 return -EFAULT;
Eric Anholteb014592009-03-10 11:44:52 -0700379
380 remain -= page_length;
381 user_data += page_length;
382 offset += page_length;
383 }
384
Chris Wilson4f27b752010-10-14 15:26:45 +0100385 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700386}
387
388/**
389 * This is the fallback shmem pread path, which allocates temporary storage
390 * in kernel space to copy_to_user into outside of the struct_mutex, so we
391 * can copy out of the object's backing pages while holding the struct mutex
392 * and not take page faults.
393 */
394static int
Chris Wilson05394f32010-11-08 19:18:58 +0000395i915_gem_shmem_pread_slow(struct drm_device *dev,
396 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700397 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000398 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700399{
Chris Wilson05394f32010-11-08 19:18:58 +0000400 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700401 struct mm_struct *mm = current->mm;
402 struct page **user_pages;
403 ssize_t remain;
404 loff_t offset, pinned_pages, i;
405 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100406 int shmem_page_offset;
407 int data_page_index, data_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700408 int page_length;
409 int ret;
410 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700411 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700412
413 remain = args->size;
414
415 /* Pin the user pages containing the data. We can't fault while
416 * holding the struct mutex, yet we want to hold it while
417 * dereferencing the user data.
418 */
419 first_data_page = data_ptr / PAGE_SIZE;
420 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
421 num_pages = last_data_page - first_data_page + 1;
422
Chris Wilson4f27b752010-10-14 15:26:45 +0100423 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700424 if (user_pages == NULL)
425 return -ENOMEM;
426
Chris Wilson4f27b752010-10-14 15:26:45 +0100427 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700428 down_read(&mm->mmap_sem);
429 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700430 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700431 up_read(&mm->mmap_sem);
Chris Wilson4f27b752010-10-14 15:26:45 +0100432 mutex_lock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700433 if (pinned_pages < num_pages) {
434 ret = -EFAULT;
Chris Wilson4f27b752010-10-14 15:26:45 +0100435 goto out;
Eric Anholteb014592009-03-10 11:44:52 -0700436 }
437
Chris Wilson4f27b752010-10-14 15:26:45 +0100438 ret = i915_gem_object_set_cpu_read_domain_range(obj,
439 args->offset,
Eric Anholteb014592009-03-10 11:44:52 -0700440 args->size);
Chris Wilson4f27b752010-10-14 15:26:45 +0100441 if (ret)
442 goto out;
443
444 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700445
Eric Anholteb014592009-03-10 11:44:52 -0700446 offset = args->offset;
447
448 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100449 struct page *page;
450
Eric Anholteb014592009-03-10 11:44:52 -0700451 /* Operation in this page
452 *
Eric Anholteb014592009-03-10 11:44:52 -0700453 * shmem_page_offset = offset within page in shmem file
454 * data_page_index = page number in get_user_pages return
455 * data_page_offset = offset with data_page_index page.
456 * page_length = bytes to copy for this page
457 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100458 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700459 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100460 data_page_offset = offset_in_page(data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700461
462 page_length = remain;
463 if ((shmem_page_offset + page_length) > PAGE_SIZE)
464 page_length = PAGE_SIZE - shmem_page_offset;
465 if ((data_page_offset + page_length) > PAGE_SIZE)
466 page_length = PAGE_SIZE - data_page_offset;
467
Hugh Dickins5949eac2011-06-27 16:18:18 -0700468 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Jesper Juhlb65552f2011-06-12 20:53:44 +0000469 if (IS_ERR(page)) {
470 ret = PTR_ERR(page);
471 goto out;
472 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100473
Eric Anholt280b7132009-03-12 16:56:27 -0700474 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100475 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700476 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100477 user_pages[data_page_index],
478 data_page_offset,
479 page_length,
480 1);
481 } else {
482 slow_shmem_copy(user_pages[data_page_index],
483 data_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100484 page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100485 shmem_page_offset,
486 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700487 }
Eric Anholteb014592009-03-10 11:44:52 -0700488
Chris Wilsone5281cc2010-10-28 13:45:36 +0100489 mark_page_accessed(page);
490 page_cache_release(page);
491
Eric Anholteb014592009-03-10 11:44:52 -0700492 remain -= page_length;
493 data_ptr += page_length;
494 offset += page_length;
495 }
496
Chris Wilson4f27b752010-10-14 15:26:45 +0100497out:
Eric Anholteb014592009-03-10 11:44:52 -0700498 for (i = 0; i < pinned_pages; i++) {
499 SetPageDirty(user_pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100500 mark_page_accessed(user_pages[i]);
Eric Anholteb014592009-03-10 11:44:52 -0700501 page_cache_release(user_pages[i]);
502 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700503 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700504
505 return ret;
506}
507
Eric Anholt673a3942008-07-30 12:06:12 -0700508/**
509 * Reads data from the object referenced by handle.
510 *
511 * On error, the contents of *data are undefined.
512 */
513int
514i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000515 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700516{
517 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000518 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100519 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700520
Chris Wilson51311d02010-11-17 09:10:42 +0000521 if (args->size == 0)
522 return 0;
523
524 if (!access_ok(VERIFY_WRITE,
525 (char __user *)(uintptr_t)args->data_ptr,
526 args->size))
527 return -EFAULT;
528
529 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
530 args->size);
531 if (ret)
532 return -EFAULT;
533
Chris Wilson4f27b752010-10-14 15:26:45 +0100534 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100535 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100536 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700537
Chris Wilson05394f32010-11-08 19:18:58 +0000538 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000539 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100540 ret = -ENOENT;
541 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100542 }
Eric Anholt673a3942008-07-30 12:06:12 -0700543
Chris Wilson7dcd2492010-09-26 20:21:44 +0100544 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000545 if (args->offset > obj->base.size ||
546 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100547 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100548 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100549 }
550
Chris Wilsondb53a302011-02-03 11:57:46 +0000551 trace_i915_gem_object_pread(obj, args->offset, args->size);
552
Chris Wilson4f27b752010-10-14 15:26:45 +0100553 ret = i915_gem_object_set_cpu_read_domain_range(obj,
554 args->offset,
555 args->size);
556 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100557 goto out;
Chris Wilson4f27b752010-10-14 15:26:45 +0100558
559 ret = -EFAULT;
560 if (!i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson05394f32010-11-08 19:18:58 +0000561 ret = i915_gem_shmem_pread_fast(dev, obj, args, file);
Chris Wilson4f27b752010-10-14 15:26:45 +0100562 if (ret == -EFAULT)
Chris Wilson05394f32010-11-08 19:18:58 +0000563 ret = i915_gem_shmem_pread_slow(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700564
Chris Wilson35b62a82010-09-26 20:23:38 +0100565out:
Chris Wilson05394f32010-11-08 19:18:58 +0000566 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100567unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100568 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700569 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700570}
571
Keith Packard0839ccb2008-10-30 19:38:48 -0700572/* This is the fast write path which cannot handle
573 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700574 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700575
Keith Packard0839ccb2008-10-30 19:38:48 -0700576static inline int
577fast_user_write(struct io_mapping *mapping,
578 loff_t page_base, int page_offset,
579 char __user *user_data,
580 int length)
581{
582 char *vaddr_atomic;
583 unsigned long unwritten;
584
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700585 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700586 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
587 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700588 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100589 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700590}
591
592/* Here's the write path which can sleep for
593 * page faults
594 */
595
Chris Wilsonab34c222010-05-27 14:15:35 +0100596static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700597slow_kernel_write(struct io_mapping *mapping,
598 loff_t gtt_base, int gtt_offset,
599 struct page *user_page, int user_offset,
600 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700601{
Chris Wilsonab34c222010-05-27 14:15:35 +0100602 char __iomem *dst_vaddr;
603 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700604
Chris Wilsonab34c222010-05-27 14:15:35 +0100605 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
606 src_vaddr = kmap(user_page);
607
608 memcpy_toio(dst_vaddr + gtt_offset,
609 src_vaddr + user_offset,
610 length);
611
612 kunmap(user_page);
613 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700614}
615
Eric Anholt3de09aa2009-03-09 09:42:23 -0700616/**
617 * This is the fast pwrite path, where we copy the data directly from the
618 * user into the GTT, uncached.
619 */
Eric Anholt673a3942008-07-30 12:06:12 -0700620static int
Chris Wilson05394f32010-11-08 19:18:58 +0000621i915_gem_gtt_pwrite_fast(struct drm_device *dev,
622 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700623 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000624 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700625{
Keith Packard0839ccb2008-10-30 19:38:48 -0700626 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700627 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700628 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700629 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700630 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700631
632 user_data = (char __user *) (uintptr_t) args->data_ptr;
633 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700634
Chris Wilson05394f32010-11-08 19:18:58 +0000635 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700636
637 while (remain > 0) {
638 /* Operation in this page
639 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700640 * page_base = page offset within aperture
641 * page_offset = offset within page
642 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700643 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100644 page_base = offset & PAGE_MASK;
645 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700646 page_length = remain;
647 if ((page_offset + remain) > PAGE_SIZE)
648 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700649
Keith Packard0839ccb2008-10-30 19:38:48 -0700650 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700651 * source page isn't available. Return the error and we'll
652 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700653 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100654 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
655 page_offset, user_data, page_length))
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100656 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700657
Keith Packard0839ccb2008-10-30 19:38:48 -0700658 remain -= page_length;
659 user_data += page_length;
660 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700661 }
Eric Anholt673a3942008-07-30 12:06:12 -0700662
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100663 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700664}
665
Eric Anholt3de09aa2009-03-09 09:42:23 -0700666/**
667 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
668 * the memory and maps it using kmap_atomic for copying.
669 *
670 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
671 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
672 */
Eric Anholt3043c602008-10-02 12:24:47 -0700673static int
Chris Wilson05394f32010-11-08 19:18:58 +0000674i915_gem_gtt_pwrite_slow(struct drm_device *dev,
675 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700676 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000677 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700678{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700679 drm_i915_private_t *dev_priv = dev->dev_private;
680 ssize_t remain;
681 loff_t gtt_page_base, offset;
682 loff_t first_data_page, last_data_page, num_pages;
683 loff_t pinned_pages, i;
684 struct page **user_pages;
685 struct mm_struct *mm = current->mm;
686 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700687 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700688 uint64_t data_ptr = args->data_ptr;
689
690 remain = args->size;
691
692 /* Pin the user pages containing the data. We can't fault while
693 * holding the struct mutex, and all of the pwrite implementations
694 * want to hold it while dereferencing the user data.
695 */
696 first_data_page = data_ptr / PAGE_SIZE;
697 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
698 num_pages = last_data_page - first_data_page + 1;
699
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100700 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700701 if (user_pages == NULL)
702 return -ENOMEM;
703
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100704 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700705 down_read(&mm->mmap_sem);
706 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
707 num_pages, 0, 0, user_pages, NULL);
708 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100709 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700710 if (pinned_pages < num_pages) {
711 ret = -EFAULT;
712 goto out_unpin_pages;
713 }
714
Chris Wilsond9e86c02010-11-10 16:40:20 +0000715 ret = i915_gem_object_set_to_gtt_domain(obj, true);
716 if (ret)
717 goto out_unpin_pages;
718
719 ret = i915_gem_object_put_fence(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700720 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100721 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700722
Chris Wilson05394f32010-11-08 19:18:58 +0000723 offset = obj->gtt_offset + args->offset;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700724
725 while (remain > 0) {
726 /* Operation in this page
727 *
728 * gtt_page_base = page offset within aperture
729 * gtt_page_offset = offset within page in aperture
730 * data_page_index = page number in get_user_pages return
731 * data_page_offset = offset with data_page_index page.
732 * page_length = bytes to copy for this page
733 */
734 gtt_page_base = offset & PAGE_MASK;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100735 gtt_page_offset = offset_in_page(offset);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700736 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100737 data_page_offset = offset_in_page(data_ptr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700738
739 page_length = remain;
740 if ((gtt_page_offset + page_length) > PAGE_SIZE)
741 page_length = PAGE_SIZE - gtt_page_offset;
742 if ((data_page_offset + page_length) > PAGE_SIZE)
743 page_length = PAGE_SIZE - data_page_offset;
744
Chris Wilsonab34c222010-05-27 14:15:35 +0100745 slow_kernel_write(dev_priv->mm.gtt_mapping,
746 gtt_page_base, gtt_page_offset,
747 user_pages[data_page_index],
748 data_page_offset,
749 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700750
751 remain -= page_length;
752 offset += page_length;
753 data_ptr += page_length;
754 }
755
Eric Anholt3de09aa2009-03-09 09:42:23 -0700756out_unpin_pages:
757 for (i = 0; i < pinned_pages; i++)
758 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700759 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700760
761 return ret;
762}
763
Eric Anholt40123c12009-03-09 13:42:30 -0700764/**
765 * This is the fast shmem pwrite path, which attempts to directly
766 * copy_from_user into the kmapped pages backing the object.
767 */
Eric Anholt673a3942008-07-30 12:06:12 -0700768static int
Chris Wilson05394f32010-11-08 19:18:58 +0000769i915_gem_shmem_pwrite_fast(struct drm_device *dev,
770 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700771 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000772 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700773{
Chris Wilson05394f32010-11-08 19:18:58 +0000774 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700775 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100776 loff_t offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700777 char __user *user_data;
778 int page_offset, page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700779
780 user_data = (char __user *) (uintptr_t) args->data_ptr;
781 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700782
Eric Anholt673a3942008-07-30 12:06:12 -0700783 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000784 obj->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700785
Eric Anholt40123c12009-03-09 13:42:30 -0700786 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100787 struct page *page;
788 char *vaddr;
789 int ret;
790
Eric Anholt40123c12009-03-09 13:42:30 -0700791 /* Operation in this page
792 *
Eric Anholt40123c12009-03-09 13:42:30 -0700793 * page_offset = offset within page
794 * page_length = bytes to copy for this page
795 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100796 page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700797 page_length = remain;
798 if ((page_offset + remain) > PAGE_SIZE)
799 page_length = PAGE_SIZE - page_offset;
800
Hugh Dickins5949eac2011-06-27 16:18:18 -0700801 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100802 if (IS_ERR(page))
803 return PTR_ERR(page);
804
Daniel Vetter130c2562011-09-17 20:55:46 +0200805 vaddr = kmap_atomic(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100806 ret = __copy_from_user_inatomic(vaddr + page_offset,
807 user_data,
808 page_length);
Daniel Vetter130c2562011-09-17 20:55:46 +0200809 kunmap_atomic(vaddr);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100810
811 set_page_dirty(page);
812 mark_page_accessed(page);
813 page_cache_release(page);
814
815 /* If we get a fault while copying data, then (presumably) our
816 * source page isn't available. Return the error and we'll
817 * retry in the slow path.
818 */
819 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100820 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700821
822 remain -= page_length;
823 user_data += page_length;
824 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700825 }
826
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100827 return 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700828}
829
830/**
831 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
832 * the memory and maps it using kmap_atomic for copying.
833 *
834 * This avoids taking mmap_sem for faulting on the user's address while the
835 * struct_mutex is held.
836 */
837static int
Chris Wilson05394f32010-11-08 19:18:58 +0000838i915_gem_shmem_pwrite_slow(struct drm_device *dev,
839 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700840 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000841 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700842{
Chris Wilson05394f32010-11-08 19:18:58 +0000843 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700844 struct mm_struct *mm = current->mm;
845 struct page **user_pages;
846 ssize_t remain;
847 loff_t offset, pinned_pages, i;
848 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100849 int shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700850 int data_page_index, data_page_offset;
851 int page_length;
852 int ret;
853 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700854 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700855
856 remain = args->size;
857
858 /* Pin the user pages containing the data. We can't fault while
859 * holding the struct mutex, and all of the pwrite implementations
860 * want to hold it while dereferencing the user data.
861 */
862 first_data_page = data_ptr / PAGE_SIZE;
863 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
864 num_pages = last_data_page - first_data_page + 1;
865
Chris Wilson4f27b752010-10-14 15:26:45 +0100866 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700867 if (user_pages == NULL)
868 return -ENOMEM;
869
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100870 mutex_unlock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700871 down_read(&mm->mmap_sem);
872 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
873 num_pages, 0, 0, user_pages, NULL);
874 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100875 mutex_lock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700876 if (pinned_pages < num_pages) {
877 ret = -EFAULT;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100878 goto out;
Eric Anholt40123c12009-03-09 13:42:30 -0700879 }
880
Eric Anholt40123c12009-03-09 13:42:30 -0700881 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100882 if (ret)
883 goto out;
884
885 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700886
Eric Anholt40123c12009-03-09 13:42:30 -0700887 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000888 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700889
890 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100891 struct page *page;
892
Eric Anholt40123c12009-03-09 13:42:30 -0700893 /* Operation in this page
894 *
Eric Anholt40123c12009-03-09 13:42:30 -0700895 * shmem_page_offset = offset within page in shmem file
896 * data_page_index = page number in get_user_pages return
897 * data_page_offset = offset with data_page_index page.
898 * page_length = bytes to copy for this page
899 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100900 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700901 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100902 data_page_offset = offset_in_page(data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700903
904 page_length = remain;
905 if ((shmem_page_offset + page_length) > PAGE_SIZE)
906 page_length = PAGE_SIZE - shmem_page_offset;
907 if ((data_page_offset + page_length) > PAGE_SIZE)
908 page_length = PAGE_SIZE - data_page_offset;
909
Hugh Dickins5949eac2011-06-27 16:18:18 -0700910 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100911 if (IS_ERR(page)) {
912 ret = PTR_ERR(page);
913 goto out;
914 }
915
Eric Anholt280b7132009-03-12 16:56:27 -0700916 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100917 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700918 shmem_page_offset,
919 user_pages[data_page_index],
920 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100921 page_length,
922 0);
923 } else {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100924 slow_shmem_copy(page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100925 shmem_page_offset,
926 user_pages[data_page_index],
927 data_page_offset,
928 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700929 }
Eric Anholt40123c12009-03-09 13:42:30 -0700930
Chris Wilsone5281cc2010-10-28 13:45:36 +0100931 set_page_dirty(page);
932 mark_page_accessed(page);
933 page_cache_release(page);
934
Eric Anholt40123c12009-03-09 13:42:30 -0700935 remain -= page_length;
936 data_ptr += page_length;
937 offset += page_length;
938 }
939
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100940out:
Eric Anholt40123c12009-03-09 13:42:30 -0700941 for (i = 0; i < pinned_pages; i++)
942 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700943 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -0700944
945 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700946}
947
948/**
949 * Writes data to the object referenced by handle.
950 *
951 * On error, the contents of the buffer that were to be modified are undefined.
952 */
953int
954i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100955 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700956{
957 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000958 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000959 int ret;
960
961 if (args->size == 0)
962 return 0;
963
964 if (!access_ok(VERIFY_READ,
965 (char __user *)(uintptr_t)args->data_ptr,
966 args->size))
967 return -EFAULT;
968
969 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
970 args->size);
971 if (ret)
972 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700973
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100974 ret = i915_mutex_lock_interruptible(dev);
975 if (ret)
976 return ret;
977
Chris Wilson05394f32010-11-08 19:18:58 +0000978 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000979 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100980 ret = -ENOENT;
981 goto unlock;
982 }
Eric Anholt673a3942008-07-30 12:06:12 -0700983
Chris Wilson7dcd2492010-09-26 20:21:44 +0100984 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000985 if (args->offset > obj->base.size ||
986 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100987 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100988 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100989 }
990
Chris Wilsondb53a302011-02-03 11:57:46 +0000991 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
992
Eric Anholt673a3942008-07-30 12:06:12 -0700993 /* We can only do the GTT pwrite on untiled buffers, as otherwise
994 * it would end up going through the fenced access, and we'll get
995 * different detiling behavior between reading and writing.
996 * pread/pwrite currently are reading and writing from the CPU
997 * perspective, requiring manual detiling by the client.
998 */
Chris Wilson05394f32010-11-08 19:18:58 +0000999 if (obj->phys_obj)
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001000 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001001 else if (obj->gtt_space &&
Chris Wilson05394f32010-11-08 19:18:58 +00001002 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001003 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001004 if (ret)
1005 goto out;
1006
Chris Wilsond9e86c02010-11-10 16:40:20 +00001007 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1008 if (ret)
1009 goto out_unpin;
1010
1011 ret = i915_gem_object_put_fence(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001012 if (ret)
1013 goto out_unpin;
1014
1015 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
1016 if (ret == -EFAULT)
1017 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
1018
1019out_unpin:
1020 i915_gem_object_unpin(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001021 } else {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001022 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1023 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001024 goto out;
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001025
1026 ret = -EFAULT;
1027 if (!i915_gem_object_needs_bit17_swizzle(obj))
1028 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file);
1029 if (ret == -EFAULT)
1030 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file);
Eric Anholt40123c12009-03-09 13:42:30 -07001031 }
Eric Anholt673a3942008-07-30 12:06:12 -07001032
Chris Wilson35b62a82010-09-26 20:23:38 +01001033out:
Chris Wilson05394f32010-11-08 19:18:58 +00001034 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001035unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001036 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001037 return ret;
1038}
1039
1040/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001041 * Called when user space prepares to use an object with the CPU, either
1042 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001043 */
1044int
1045i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001046 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001047{
1048 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001049 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001050 uint32_t read_domains = args->read_domains;
1051 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001052 int ret;
1053
1054 if (!(dev->driver->driver_features & DRIVER_GEM))
1055 return -ENODEV;
1056
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001057 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001058 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001059 return -EINVAL;
1060
Chris Wilson21d509e2009-06-06 09:46:02 +01001061 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001062 return -EINVAL;
1063
1064 /* Having something in the write domain implies it's in the read
1065 * domain, and only that read domain. Enforce that in the request.
1066 */
1067 if (write_domain != 0 && read_domains != write_domain)
1068 return -EINVAL;
1069
Chris Wilson76c1dec2010-09-25 11:22:51 +01001070 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001071 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001072 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001073
Chris Wilson05394f32010-11-08 19:18:58 +00001074 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001075 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001076 ret = -ENOENT;
1077 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001078 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001079
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001080 if (read_domains & I915_GEM_DOMAIN_GTT) {
1081 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001082
1083 /* Silently promote "you're not bound, there was nothing to do"
1084 * to success, since the client was just asking us to
1085 * make sure everything was done.
1086 */
1087 if (ret == -EINVAL)
1088 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001089 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001090 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001091 }
1092
Chris Wilson05394f32010-11-08 19:18:58 +00001093 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001094unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001095 mutex_unlock(&dev->struct_mutex);
1096 return ret;
1097}
1098
1099/**
1100 * Called when user space has done writes to this buffer
1101 */
1102int
1103i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001104 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001105{
1106 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001107 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001108 int ret = 0;
1109
1110 if (!(dev->driver->driver_features & DRIVER_GEM))
1111 return -ENODEV;
1112
Chris Wilson76c1dec2010-09-25 11:22:51 +01001113 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001114 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001115 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001116
Chris Wilson05394f32010-11-08 19:18:58 +00001117 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001118 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001119 ret = -ENOENT;
1120 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001121 }
1122
Eric Anholt673a3942008-07-30 12:06:12 -07001123 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001124 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001125 i915_gem_object_flush_cpu_write_domain(obj);
1126
Chris Wilson05394f32010-11-08 19:18:58 +00001127 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001128unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001129 mutex_unlock(&dev->struct_mutex);
1130 return ret;
1131}
1132
1133/**
1134 * Maps the contents of an object, returning the address it is mapped
1135 * into.
1136 *
1137 * While the mapping holds a reference on the contents of the object, it doesn't
1138 * imply a ref on the object itself.
1139 */
1140int
1141i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001142 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001143{
Chris Wilsonda761a62010-10-27 17:37:08 +01001144 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001145 struct drm_i915_gem_mmap *args = data;
1146 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001147 unsigned long addr;
1148
1149 if (!(dev->driver->driver_features & DRIVER_GEM))
1150 return -ENODEV;
1151
Chris Wilson05394f32010-11-08 19:18:58 +00001152 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001153 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001154 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001155
Chris Wilsonda761a62010-10-27 17:37:08 +01001156 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1157 drm_gem_object_unreference_unlocked(obj);
1158 return -E2BIG;
1159 }
1160
Eric Anholt673a3942008-07-30 12:06:12 -07001161 down_write(&current->mm->mmap_sem);
1162 addr = do_mmap(obj->filp, 0, args->size,
1163 PROT_READ | PROT_WRITE, MAP_SHARED,
1164 args->offset);
1165 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001166 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001167 if (IS_ERR((void *)addr))
1168 return addr;
1169
1170 args->addr_ptr = (uint64_t) addr;
1171
1172 return 0;
1173}
1174
Jesse Barnesde151cf2008-11-12 10:03:55 -08001175/**
1176 * i915_gem_fault - fault a page into the GTT
1177 * vma: VMA in question
1178 * vmf: fault info
1179 *
1180 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1181 * from userspace. The fault handler takes care of binding the object to
1182 * the GTT (if needed), allocating and programming a fence register (again,
1183 * only if needed based on whether the old reg is still valid or the object
1184 * is tiled) and inserting a new PTE into the faulting process.
1185 *
1186 * Note that the faulting process may involve evicting existing objects
1187 * from the GTT and/or fence registers to make room. So performance may
1188 * suffer if the GTT working set is large or there are few fence registers
1189 * left.
1190 */
1191int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1192{
Chris Wilson05394f32010-11-08 19:18:58 +00001193 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1194 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001195 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001196 pgoff_t page_offset;
1197 unsigned long pfn;
1198 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001199 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001200
1201 /* We don't use vmf->pgoff since that has the fake offset */
1202 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1203 PAGE_SHIFT;
1204
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001205 ret = i915_mutex_lock_interruptible(dev);
1206 if (ret)
1207 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001208
Chris Wilsondb53a302011-02-03 11:57:46 +00001209 trace_i915_gem_object_fault(obj, page_offset, true, write);
1210
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001211 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001212 if (!obj->map_and_fenceable) {
1213 ret = i915_gem_object_unbind(obj);
1214 if (ret)
1215 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001216 }
Chris Wilson05394f32010-11-08 19:18:58 +00001217 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001218 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001219 if (ret)
1220 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001221
Eric Anholte92d03b2011-06-14 16:43:09 -07001222 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1223 if (ret)
1224 goto unlock;
1225 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001226
Chris Wilsond9e86c02010-11-10 16:40:20 +00001227 if (obj->tiling_mode == I915_TILING_NONE)
1228 ret = i915_gem_object_put_fence(obj);
1229 else
Chris Wilsonce453d82011-02-21 14:43:56 +00001230 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001231 if (ret)
1232 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001233
Chris Wilson05394f32010-11-08 19:18:58 +00001234 if (i915_gem_object_is_inactive(obj))
1235 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001236
Chris Wilson6299f992010-11-24 12:23:44 +00001237 obj->fault_mappable = true;
1238
Chris Wilson05394f32010-11-08 19:18:58 +00001239 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001240 page_offset;
1241
1242 /* Finally, remap it using the new GTT offset */
1243 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001244unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001245 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001246out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001247 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001248 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001249 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001250 /* Give the error handler a chance to run and move the
1251 * objects off the GPU active list. Next time we service the
1252 * fault, we should be able to transition the page into the
1253 * GTT without touching the GPU (and so avoid further
1254 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1255 * with coherency, just lost writes.
1256 */
Chris Wilson045e7692010-11-07 09:18:22 +00001257 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001258 case 0:
1259 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001260 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001261 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001262 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001263 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001264 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001265 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001266 }
1267}
1268
1269/**
Chris Wilson901782b2009-07-10 08:18:50 +01001270 * i915_gem_release_mmap - remove physical page mappings
1271 * @obj: obj in question
1272 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001273 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001274 * relinquish ownership of the pages back to the system.
1275 *
1276 * It is vital that we remove the page mapping if we have mapped a tiled
1277 * object through the GTT and then lose the fence register due to
1278 * resource pressure. Similarly if the object has been moved out of the
1279 * aperture, than pages mapped into userspace must be revoked. Removing the
1280 * mapping will then trigger a page fault on the next user access, allowing
1281 * fixup by i915_gem_fault().
1282 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001283void
Chris Wilson05394f32010-11-08 19:18:58 +00001284i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001285{
Chris Wilson6299f992010-11-24 12:23:44 +00001286 if (!obj->fault_mappable)
1287 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001288
Chris Wilsonf6e47882011-03-20 21:09:12 +00001289 if (obj->base.dev->dev_mapping)
1290 unmap_mapping_range(obj->base.dev->dev_mapping,
1291 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1292 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001293
Chris Wilson6299f992010-11-24 12:23:44 +00001294 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001295}
1296
Chris Wilson92b88ae2010-11-09 11:47:32 +00001297static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001298i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001299{
Chris Wilsone28f8712011-07-18 13:11:49 -07001300 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001301
1302 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001303 tiling_mode == I915_TILING_NONE)
1304 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001305
1306 /* Previous chips need a power-of-two fence region when tiling */
1307 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001308 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001309 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001310 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001311
Chris Wilsone28f8712011-07-18 13:11:49 -07001312 while (gtt_size < size)
1313 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001314
Chris Wilsone28f8712011-07-18 13:11:49 -07001315 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001316}
1317
Jesse Barnesde151cf2008-11-12 10:03:55 -08001318/**
1319 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1320 * @obj: object to check
1321 *
1322 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001323 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001324 */
1325static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001326i915_gem_get_gtt_alignment(struct drm_device *dev,
1327 uint32_t size,
1328 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001329{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001330 /*
1331 * Minimum alignment is 4k (GTT page size), but might be greater
1332 * if a fence register is needed for the object.
1333 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001334 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001335 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001336 return 4096;
1337
1338 /*
1339 * Previous chips need to be aligned to the size of the smallest
1340 * fence register that can contain the object.
1341 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001342 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001343}
1344
Daniel Vetter5e783302010-11-14 22:32:36 +01001345/**
1346 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1347 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001348 * @dev: the device
1349 * @size: size of the object
1350 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001351 *
1352 * Return the required GTT alignment for an object, only taking into account
1353 * unfenced tiled surface requirements.
1354 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001355uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001356i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1357 uint32_t size,
1358 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001359{
Daniel Vetter5e783302010-11-14 22:32:36 +01001360 /*
1361 * Minimum alignment is 4k (GTT page size) for sane hw.
1362 */
1363 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001364 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001365 return 4096;
1366
Chris Wilsone28f8712011-07-18 13:11:49 -07001367 /* Previous hardware however needs to be aligned to a power-of-two
1368 * tile height. The simplest method for determining this is to reuse
1369 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001370 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001371 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001372}
1373
Jesse Barnesde151cf2008-11-12 10:03:55 -08001374int
Dave Airlieff72145b2011-02-07 12:16:14 +10001375i915_gem_mmap_gtt(struct drm_file *file,
1376 struct drm_device *dev,
1377 uint32_t handle,
1378 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001379{
Chris Wilsonda761a62010-10-27 17:37:08 +01001380 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001381 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001382 int ret;
1383
1384 if (!(dev->driver->driver_features & DRIVER_GEM))
1385 return -ENODEV;
1386
Chris Wilson76c1dec2010-09-25 11:22:51 +01001387 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001388 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001389 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001390
Dave Airlieff72145b2011-02-07 12:16:14 +10001391 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001392 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001393 ret = -ENOENT;
1394 goto unlock;
1395 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001396
Chris Wilson05394f32010-11-08 19:18:58 +00001397 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001398 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001399 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001400 }
1401
Chris Wilson05394f32010-11-08 19:18:58 +00001402 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001403 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001404 ret = -EINVAL;
1405 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001406 }
1407
Chris Wilson05394f32010-11-08 19:18:58 +00001408 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001409 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001410 if (ret)
1411 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001412 }
1413
Dave Airlieff72145b2011-02-07 12:16:14 +10001414 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001415
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001416out:
Chris Wilson05394f32010-11-08 19:18:58 +00001417 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001418unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001419 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001420 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001421}
1422
Dave Airlieff72145b2011-02-07 12:16:14 +10001423/**
1424 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1425 * @dev: DRM device
1426 * @data: GTT mapping ioctl data
1427 * @file: GEM object info
1428 *
1429 * Simply returns the fake offset to userspace so it can mmap it.
1430 * The mmap call will end up in drm_gem_mmap(), which will set things
1431 * up so we can get faults in the handler above.
1432 *
1433 * The fault handler will take care of binding the object into the GTT
1434 * (since it may have been evicted to make room for something), allocating
1435 * a fence register, and mapping the appropriate aperture address into
1436 * userspace.
1437 */
1438int
1439i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1440 struct drm_file *file)
1441{
1442 struct drm_i915_gem_mmap_gtt *args = data;
1443
1444 if (!(dev->driver->driver_features & DRIVER_GEM))
1445 return -ENODEV;
1446
1447 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1448}
1449
1450
Chris Wilsone5281cc2010-10-28 13:45:36 +01001451static int
Chris Wilson05394f32010-11-08 19:18:58 +00001452i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001453 gfp_t gfpmask)
1454{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001455 int page_count, i;
1456 struct address_space *mapping;
1457 struct inode *inode;
1458 struct page *page;
1459
1460 /* Get the list of pages out of our struct file. They'll be pinned
1461 * at this point until we release them.
1462 */
Chris Wilson05394f32010-11-08 19:18:58 +00001463 page_count = obj->base.size / PAGE_SIZE;
1464 BUG_ON(obj->pages != NULL);
1465 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1466 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001467 return -ENOMEM;
1468
Chris Wilson05394f32010-11-08 19:18:58 +00001469 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001470 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001471 gfpmask |= mapping_gfp_mask(mapping);
1472
Chris Wilsone5281cc2010-10-28 13:45:36 +01001473 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001474 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001475 if (IS_ERR(page))
1476 goto err_pages;
1477
Chris Wilson05394f32010-11-08 19:18:58 +00001478 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001479 }
1480
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001481 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001482 i915_gem_object_do_bit_17_swizzle(obj);
1483
1484 return 0;
1485
1486err_pages:
1487 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001488 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001489
Chris Wilson05394f32010-11-08 19:18:58 +00001490 drm_free_large(obj->pages);
1491 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001492 return PTR_ERR(page);
1493}
1494
Chris Wilson5cdf5882010-09-27 15:51:07 +01001495static void
Chris Wilson05394f32010-11-08 19:18:58 +00001496i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001497{
Chris Wilson05394f32010-11-08 19:18:58 +00001498 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001499 int i;
1500
Chris Wilson05394f32010-11-08 19:18:58 +00001501 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001502
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001503 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001504 i915_gem_object_save_bit_17_swizzle(obj);
1505
Chris Wilson05394f32010-11-08 19:18:58 +00001506 if (obj->madv == I915_MADV_DONTNEED)
1507 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001508
1509 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001510 if (obj->dirty)
1511 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001512
Chris Wilson05394f32010-11-08 19:18:58 +00001513 if (obj->madv == I915_MADV_WILLNEED)
1514 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001515
Chris Wilson05394f32010-11-08 19:18:58 +00001516 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001517 }
Chris Wilson05394f32010-11-08 19:18:58 +00001518 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001519
Chris Wilson05394f32010-11-08 19:18:58 +00001520 drm_free_large(obj->pages);
1521 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001522}
1523
Chris Wilson54cf91d2010-11-25 18:00:26 +00001524void
Chris Wilson05394f32010-11-08 19:18:58 +00001525i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001526 struct intel_ring_buffer *ring,
1527 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001528{
Chris Wilson05394f32010-11-08 19:18:58 +00001529 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001530 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001531
Zou Nan hai852835f2010-05-21 09:08:56 +08001532 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001533 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001534
1535 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001536 if (!obj->active) {
1537 drm_gem_object_reference(&obj->base);
1538 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001539 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001540
Eric Anholt673a3942008-07-30 12:06:12 -07001541 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001542 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1543 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001544
Chris Wilson05394f32010-11-08 19:18:58 +00001545 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001546 if (obj->fenced_gpu_access) {
1547 struct drm_i915_fence_reg *reg;
1548
1549 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1550
1551 obj->last_fenced_seqno = seqno;
1552 obj->last_fenced_ring = ring;
1553
1554 reg = &dev_priv->fence_regs[obj->fence_reg];
1555 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1556 }
1557}
1558
1559static void
1560i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1561{
1562 list_del_init(&obj->ring_list);
1563 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001564}
1565
Eric Anholtce44b0e2008-11-06 16:00:31 -08001566static void
Chris Wilson05394f32010-11-08 19:18:58 +00001567i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001568{
Chris Wilson05394f32010-11-08 19:18:58 +00001569 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001570 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001571
Chris Wilson05394f32010-11-08 19:18:58 +00001572 BUG_ON(!obj->active);
1573 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001574
1575 i915_gem_object_move_off_active(obj);
1576}
1577
1578static void
1579i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1580{
1581 struct drm_device *dev = obj->base.dev;
1582 struct drm_i915_private *dev_priv = dev->dev_private;
1583
1584 if (obj->pin_count != 0)
1585 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1586 else
1587 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1588
1589 BUG_ON(!list_empty(&obj->gpu_write_list));
1590 BUG_ON(!obj->active);
1591 obj->ring = NULL;
1592
1593 i915_gem_object_move_off_active(obj);
1594 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001595
1596 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001597 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001598 drm_gem_object_unreference(&obj->base);
1599
1600 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001601}
Eric Anholt673a3942008-07-30 12:06:12 -07001602
Chris Wilson963b4832009-09-20 23:03:54 +01001603/* Immediately discard the backing storage */
1604static void
Chris Wilson05394f32010-11-08 19:18:58 +00001605i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001606{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001607 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001608
Chris Wilsonae9fed62010-08-07 11:01:30 +01001609 /* Our goal here is to return as much of the memory as
1610 * is possible back to the system as we are called from OOM.
1611 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001612 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001613 */
Chris Wilson05394f32010-11-08 19:18:58 +00001614 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001615 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001616
Chris Wilson05394f32010-11-08 19:18:58 +00001617 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001618}
1619
1620static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001621i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001622{
Chris Wilson05394f32010-11-08 19:18:58 +00001623 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001624}
1625
Eric Anholt673a3942008-07-30 12:06:12 -07001626static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001627i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1628 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001629{
Chris Wilson05394f32010-11-08 19:18:58 +00001630 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001631
Chris Wilson05394f32010-11-08 19:18:58 +00001632 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001633 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001634 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001635 if (obj->base.write_domain & flush_domains) {
1636 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001637
Chris Wilson05394f32010-11-08 19:18:58 +00001638 obj->base.write_domain = 0;
1639 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001640 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001641 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001642
Daniel Vetter63560392010-02-19 11:51:59 +01001643 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001644 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001645 old_write_domain);
1646 }
1647 }
1648}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001649
Chris Wilson3cce4692010-10-27 16:11:02 +01001650int
Chris Wilsondb53a302011-02-03 11:57:46 +00001651i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001652 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001653 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001654{
Chris Wilsondb53a302011-02-03 11:57:46 +00001655 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001656 uint32_t seqno;
1657 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001658 int ret;
1659
1660 BUG_ON(request == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001661
Chris Wilson3cce4692010-10-27 16:11:02 +01001662 ret = ring->add_request(ring, &seqno);
1663 if (ret)
1664 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001665
Chris Wilsondb53a302011-02-03 11:57:46 +00001666 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001667
1668 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001669 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001670 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001671 was_empty = list_empty(&ring->request_list);
1672 list_add_tail(&request->list, &ring->request_list);
1673
Chris Wilsondb53a302011-02-03 11:57:46 +00001674 if (file) {
1675 struct drm_i915_file_private *file_priv = file->driver_priv;
1676
Chris Wilson1c255952010-09-26 11:03:27 +01001677 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001678 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001679 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001680 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001681 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001682 }
Eric Anholt673a3942008-07-30 12:06:12 -07001683
Chris Wilsondb53a302011-02-03 11:57:46 +00001684 ring->outstanding_lazy_request = false;
1685
Ben Gamarif65d9422009-09-14 17:48:44 -04001686 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001687 if (i915_enable_hangcheck) {
1688 mod_timer(&dev_priv->hangcheck_timer,
1689 jiffies +
1690 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1691 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001692 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001693 queue_delayed_work(dev_priv->wq,
1694 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001695 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001696 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001697}
1698
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001699static inline void
1700i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001701{
Chris Wilson1c255952010-09-26 11:03:27 +01001702 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001703
Chris Wilson1c255952010-09-26 11:03:27 +01001704 if (!file_priv)
1705 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001706
Chris Wilson1c255952010-09-26 11:03:27 +01001707 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001708 if (request->file_priv) {
1709 list_del(&request->client_list);
1710 request->file_priv = NULL;
1711 }
Chris Wilson1c255952010-09-26 11:03:27 +01001712 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001713}
1714
Chris Wilsondfaae392010-09-22 10:31:52 +01001715static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1716 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001717{
Chris Wilsondfaae392010-09-22 10:31:52 +01001718 while (!list_empty(&ring->request_list)) {
1719 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001720
Chris Wilsondfaae392010-09-22 10:31:52 +01001721 request = list_first_entry(&ring->request_list,
1722 struct drm_i915_gem_request,
1723 list);
1724
1725 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001726 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001727 kfree(request);
1728 }
1729
1730 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001731 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001732
Chris Wilson05394f32010-11-08 19:18:58 +00001733 obj = list_first_entry(&ring->active_list,
1734 struct drm_i915_gem_object,
1735 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001736
Chris Wilson05394f32010-11-08 19:18:58 +00001737 obj->base.write_domain = 0;
1738 list_del_init(&obj->gpu_write_list);
1739 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001740 }
Eric Anholt673a3942008-07-30 12:06:12 -07001741}
1742
Chris Wilson312817a2010-11-22 11:50:11 +00001743static void i915_gem_reset_fences(struct drm_device *dev)
1744{
1745 struct drm_i915_private *dev_priv = dev->dev_private;
1746 int i;
1747
Daniel Vetter4b9de732011-10-09 21:52:02 +02001748 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001749 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001750 struct drm_i915_gem_object *obj = reg->obj;
1751
1752 if (!obj)
1753 continue;
1754
1755 if (obj->tiling_mode)
1756 i915_gem_release_mmap(obj);
1757
Chris Wilsond9e86c02010-11-10 16:40:20 +00001758 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1759 reg->obj->fenced_gpu_access = false;
1760 reg->obj->last_fenced_seqno = 0;
1761 reg->obj->last_fenced_ring = NULL;
1762 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001763 }
1764}
1765
Chris Wilson069efc12010-09-30 16:53:18 +01001766void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001767{
Chris Wilsondfaae392010-09-22 10:31:52 +01001768 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001769 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001770 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001771
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001772 for (i = 0; i < I915_NUM_RINGS; i++)
1773 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001774
1775 /* Remove anything from the flushing lists. The GPU cache is likely
1776 * to be lost on reset along with the data, so simply move the
1777 * lost bo to the inactive list.
1778 */
1779 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001780 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001781 struct drm_i915_gem_object,
1782 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001783
Chris Wilson05394f32010-11-08 19:18:58 +00001784 obj->base.write_domain = 0;
1785 list_del_init(&obj->gpu_write_list);
1786 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001787 }
Chris Wilson9375e442010-09-19 12:21:28 +01001788
Chris Wilsondfaae392010-09-22 10:31:52 +01001789 /* Move everything out of the GPU domains to ensure we do any
1790 * necessary invalidation upon reuse.
1791 */
Chris Wilson05394f32010-11-08 19:18:58 +00001792 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001793 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001794 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001795 {
Chris Wilson05394f32010-11-08 19:18:58 +00001796 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001797 }
Chris Wilson069efc12010-09-30 16:53:18 +01001798
1799 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001800 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001801}
1802
1803/**
1804 * This function clears the request list as sequence numbers are passed.
1805 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001806static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001807i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001808{
Eric Anholt673a3942008-07-30 12:06:12 -07001809 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001810 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001811
Chris Wilsondb53a302011-02-03 11:57:46 +00001812 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001813 return;
1814
Chris Wilsondb53a302011-02-03 11:57:46 +00001815 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001816
Chris Wilson78501ea2010-10-27 12:18:21 +01001817 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001818
Chris Wilson076e2c02011-01-21 10:07:18 +00001819 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001820 if (seqno >= ring->sync_seqno[i])
1821 ring->sync_seqno[i] = 0;
1822
Zou Nan hai852835f2010-05-21 09:08:56 +08001823 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001824 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001825
Zou Nan hai852835f2010-05-21 09:08:56 +08001826 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001827 struct drm_i915_gem_request,
1828 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001829
Chris Wilsondfaae392010-09-22 10:31:52 +01001830 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001831 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001832
Chris Wilsondb53a302011-02-03 11:57:46 +00001833 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001834
1835 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001836 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001837 kfree(request);
1838 }
1839
1840 /* Move any buffers on the active list that are no longer referenced
1841 * by the ringbuffer to the flushing/inactive lists as appropriate.
1842 */
1843 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001844 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001845
Akshay Joshi0206e352011-08-16 15:34:10 -04001846 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001847 struct drm_i915_gem_object,
1848 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001849
Chris Wilson05394f32010-11-08 19:18:58 +00001850 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001851 break;
1852
Chris Wilson05394f32010-11-08 19:18:58 +00001853 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001854 i915_gem_object_move_to_flushing(obj);
1855 else
1856 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001857 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001858
Chris Wilsondb53a302011-02-03 11:57:46 +00001859 if (unlikely(ring->trace_irq_seqno &&
1860 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001861 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001862 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001863 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001864
Chris Wilsondb53a302011-02-03 11:57:46 +00001865 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001866}
1867
1868void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001869i915_gem_retire_requests(struct drm_device *dev)
1870{
1871 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001872 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001873
Chris Wilsonbe726152010-07-23 23:18:50 +01001874 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001875 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001876
1877 /* We must be careful that during unbind() we do not
1878 * accidentally infinitely recurse into retire requests.
1879 * Currently:
1880 * retire -> free -> unbind -> wait -> retire_ring
1881 */
Chris Wilson05394f32010-11-08 19:18:58 +00001882 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001883 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001884 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001885 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001886 }
1887
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001888 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001889 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001890}
1891
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001892static void
Eric Anholt673a3942008-07-30 12:06:12 -07001893i915_gem_retire_work_handler(struct work_struct *work)
1894{
1895 drm_i915_private_t *dev_priv;
1896 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001897 bool idle;
1898 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001899
1900 dev_priv = container_of(work, drm_i915_private_t,
1901 mm.retire_work.work);
1902 dev = dev_priv->dev;
1903
Chris Wilson891b48c2010-09-29 12:26:37 +01001904 /* Come back later if the device is busy... */
1905 if (!mutex_trylock(&dev->struct_mutex)) {
1906 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1907 return;
1908 }
1909
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001910 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001911
Chris Wilson0a587052011-01-09 21:05:44 +00001912 /* Send a periodic flush down the ring so we don't hold onto GEM
1913 * objects indefinitely.
1914 */
1915 idle = true;
1916 for (i = 0; i < I915_NUM_RINGS; i++) {
1917 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1918
1919 if (!list_empty(&ring->gpu_write_list)) {
1920 struct drm_i915_gem_request *request;
1921 int ret;
1922
Chris Wilsondb53a302011-02-03 11:57:46 +00001923 ret = i915_gem_flush_ring(ring,
1924 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001925 request = kzalloc(sizeof(*request), GFP_KERNEL);
1926 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001927 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001928 kfree(request);
1929 }
1930
1931 idle &= list_empty(&ring->request_list);
1932 }
1933
1934 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001935 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001936
Eric Anholt673a3942008-07-30 12:06:12 -07001937 mutex_unlock(&dev->struct_mutex);
1938}
1939
Chris Wilsondb53a302011-02-03 11:57:46 +00001940/**
1941 * Waits for a sequence number to be signaled, and cleans up the
1942 * request and object lists appropriately for that event.
1943 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001944int
Chris Wilsondb53a302011-02-03 11:57:46 +00001945i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001946 uint32_t seqno,
1947 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001948{
Chris Wilsondb53a302011-02-03 11:57:46 +00001949 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001950 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001951 int ret = 0;
1952
1953 BUG_ON(seqno == 0);
1954
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001955 if (atomic_read(&dev_priv->mm.wedged)) {
1956 struct completion *x = &dev_priv->error_completion;
1957 bool recovery_complete;
1958 unsigned long flags;
1959
1960 /* Give the error handler a chance to run. */
1961 spin_lock_irqsave(&x->wait.lock, flags);
1962 recovery_complete = x->done > 0;
1963 spin_unlock_irqrestore(&x->wait.lock, flags);
1964
1965 return recovery_complete ? -EIO : -EAGAIN;
1966 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001967
Chris Wilson5d97eb62010-11-10 20:40:02 +00001968 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001969 struct drm_i915_gem_request *request;
1970
1971 request = kzalloc(sizeof(*request), GFP_KERNEL);
1972 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001973 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001974
Chris Wilsondb53a302011-02-03 11:57:46 +00001975 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001976 if (ret) {
1977 kfree(request);
1978 return ret;
1979 }
1980
1981 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001982 }
1983
Chris Wilson78501ea2010-10-27 12:18:21 +01001984 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001985 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001986 ier = I915_READ(DEIER) | I915_READ(GTIER);
1987 else
1988 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001989 if (!ier) {
1990 DRM_ERROR("something (likely vbetool) disabled "
1991 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001992 ring->dev->driver->irq_preinstall(ring->dev);
1993 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001994 }
1995
Chris Wilsondb53a302011-02-03 11:57:46 +00001996 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001997
Chris Wilsonb2223492010-10-27 15:27:33 +01001998 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001999 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002000 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002001 ret = wait_event_interruptible(ring->irq_queue,
2002 i915_seqno_passed(ring->get_seqno(ring), seqno)
2003 || atomic_read(&dev_priv->mm.wedged));
2004 else
2005 wait_event(ring->irq_queue,
2006 i915_seqno_passed(ring->get_seqno(ring), seqno)
2007 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002008
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002009 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08002010 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
2011 seqno) ||
2012 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00002013 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01002014 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002015
Chris Wilsondb53a302011-02-03 11:57:46 +00002016 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002017 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002018 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002019 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002020
2021 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002022 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002023 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002024 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002025
2026 /* Directly dispatch request retiring. While we have the work queue
2027 * to handle this, the waiter on a request often wants an associated
2028 * buffer to have made it to the inactive list, and we would need
2029 * a separate wait queue to handle that.
2030 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002031 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00002032 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002033
2034 return ret;
2035}
2036
Daniel Vetter48764bf2009-09-15 22:57:32 +02002037/**
Eric Anholt673a3942008-07-30 12:06:12 -07002038 * Ensures that all rendering to the object has completed and the object is
2039 * safe to unbind from the GTT or access from the CPU.
2040 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00002041int
Chris Wilsonce453d82011-02-21 14:43:56 +00002042i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002043{
Eric Anholt673a3942008-07-30 12:06:12 -07002044 int ret;
2045
Eric Anholte47c68e2008-11-14 13:35:19 -08002046 /* This function only exists to support waiting for existing rendering,
2047 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002048 */
Chris Wilson05394f32010-11-08 19:18:58 +00002049 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002050
2051 /* If there is rendering queued on the buffer being evicted, wait for
2052 * it.
2053 */
Chris Wilson05394f32010-11-08 19:18:58 +00002054 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002055 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
2056 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01002057 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002058 return ret;
2059 }
2060
2061 return 0;
2062}
2063
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002064static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2065{
2066 u32 old_write_domain, old_read_domains;
2067
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002068 /* Act a barrier for all accesses through the GTT */
2069 mb();
2070
2071 /* Force a pagefault for domain tracking on next user access */
2072 i915_gem_release_mmap(obj);
2073
Keith Packardb97c3d92011-06-24 21:02:59 -07002074 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2075 return;
2076
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002077 old_read_domains = obj->base.read_domains;
2078 old_write_domain = obj->base.write_domain;
2079
2080 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2081 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2082
2083 trace_i915_gem_object_change_domain(obj,
2084 old_read_domains,
2085 old_write_domain);
2086}
2087
Eric Anholt673a3942008-07-30 12:06:12 -07002088/**
2089 * Unbinds an object from the GTT aperture.
2090 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002091int
Chris Wilson05394f32010-11-08 19:18:58 +00002092i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002093{
Eric Anholt673a3942008-07-30 12:06:12 -07002094 int ret = 0;
2095
Chris Wilson05394f32010-11-08 19:18:58 +00002096 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002097 return 0;
2098
Chris Wilson05394f32010-11-08 19:18:58 +00002099 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002100 DRM_ERROR("Attempting to unbind pinned buffer\n");
2101 return -EINVAL;
2102 }
2103
Chris Wilsona8198ee2011-04-13 22:04:09 +01002104 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01002105 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002106 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002107 /* Continue on if we fail due to EIO, the GPU is hung so we
2108 * should be safe and we need to cleanup or else we might
2109 * cause memory corruption through use-after-free.
2110 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002111
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002112 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002113
2114 /* Move the object to the CPU domain to ensure that
2115 * any possible CPU writes while it's not in the GTT
2116 * are flushed when we go to remap it.
2117 */
2118 if (ret == 0)
2119 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2120 if (ret == -ERESTARTSYS)
2121 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002122 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002123 /* In the event of a disaster, abandon all caches and
2124 * hope for the best.
2125 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002126 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002127 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002128 }
Eric Anholt673a3942008-07-30 12:06:12 -07002129
Daniel Vetter96b47b62009-12-15 17:50:00 +01002130 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002131 ret = i915_gem_object_put_fence(obj);
2132 if (ret == -ERESTARTSYS)
2133 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002134
Chris Wilsondb53a302011-02-03 11:57:46 +00002135 trace_i915_gem_object_unbind(obj);
2136
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002137 i915_gem_gtt_unbind_object(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002138 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002139
Chris Wilson6299f992010-11-24 12:23:44 +00002140 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002141 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002142 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002143 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002144
Chris Wilson05394f32010-11-08 19:18:58 +00002145 drm_mm_put_block(obj->gtt_space);
2146 obj->gtt_space = NULL;
2147 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002148
Chris Wilson05394f32010-11-08 19:18:58 +00002149 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002150 i915_gem_object_truncate(obj);
2151
Chris Wilson8dc17752010-07-23 23:18:51 +01002152 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002153}
2154
Chris Wilson88241782011-01-07 17:09:48 +00002155int
Chris Wilsondb53a302011-02-03 11:57:46 +00002156i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002157 uint32_t invalidate_domains,
2158 uint32_t flush_domains)
2159{
Chris Wilson88241782011-01-07 17:09:48 +00002160 int ret;
2161
Chris Wilson36d527d2011-03-19 22:26:49 +00002162 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2163 return 0;
2164
Chris Wilsondb53a302011-02-03 11:57:46 +00002165 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2166
Chris Wilson88241782011-01-07 17:09:48 +00002167 ret = ring->flush(ring, invalidate_domains, flush_domains);
2168 if (ret)
2169 return ret;
2170
Chris Wilson36d527d2011-03-19 22:26:49 +00002171 if (flush_domains & I915_GEM_GPU_DOMAINS)
2172 i915_gem_process_flushing_list(ring, flush_domains);
2173
Chris Wilson88241782011-01-07 17:09:48 +00002174 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002175}
2176
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002177static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002178{
Chris Wilson88241782011-01-07 17:09:48 +00002179 int ret;
2180
Chris Wilson395b70b2010-10-28 21:28:46 +01002181 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002182 return 0;
2183
Chris Wilson88241782011-01-07 17:09:48 +00002184 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002185 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002186 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002187 if (ret)
2188 return ret;
2189 }
2190
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002191 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2192 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002193}
2194
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002195int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002196{
2197 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002198 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002199
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002200 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002201 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002202 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002203 if (ret)
2204 return ret;
2205 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002206
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002207 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002208}
2209
Daniel Vetterc6642782010-11-12 13:46:18 +00002210static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2211 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002212{
Chris Wilson05394f32010-11-08 19:18:58 +00002213 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002214 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002215 u32 size = obj->gtt_space->size;
2216 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002217 uint64_t val;
2218
Chris Wilson05394f32010-11-08 19:18:58 +00002219 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002220 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002221 val |= obj->gtt_offset & 0xfffff000;
2222 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002223 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2224
Chris Wilson05394f32010-11-08 19:18:58 +00002225 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002226 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2227 val |= I965_FENCE_REG_VALID;
2228
Daniel Vetterc6642782010-11-12 13:46:18 +00002229 if (pipelined) {
2230 int ret = intel_ring_begin(pipelined, 6);
2231 if (ret)
2232 return ret;
2233
2234 intel_ring_emit(pipelined, MI_NOOP);
2235 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2236 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2237 intel_ring_emit(pipelined, (u32)val);
2238 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2239 intel_ring_emit(pipelined, (u32)(val >> 32));
2240 intel_ring_advance(pipelined);
2241 } else
2242 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2243
2244 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002245}
2246
Daniel Vetterc6642782010-11-12 13:46:18 +00002247static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2248 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002249{
Chris Wilson05394f32010-11-08 19:18:58 +00002250 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002251 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002252 u32 size = obj->gtt_space->size;
2253 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002254 uint64_t val;
2255
Chris Wilson05394f32010-11-08 19:18:58 +00002256 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002257 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002258 val |= obj->gtt_offset & 0xfffff000;
2259 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2260 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002261 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2262 val |= I965_FENCE_REG_VALID;
2263
Daniel Vetterc6642782010-11-12 13:46:18 +00002264 if (pipelined) {
2265 int ret = intel_ring_begin(pipelined, 6);
2266 if (ret)
2267 return ret;
2268
2269 intel_ring_emit(pipelined, MI_NOOP);
2270 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2271 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2272 intel_ring_emit(pipelined, (u32)val);
2273 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2274 intel_ring_emit(pipelined, (u32)(val >> 32));
2275 intel_ring_advance(pipelined);
2276 } else
2277 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2278
2279 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002280}
2281
Daniel Vetterc6642782010-11-12 13:46:18 +00002282static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2283 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002284{
Chris Wilson05394f32010-11-08 19:18:58 +00002285 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002286 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002287 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002288 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002289 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002290
Daniel Vetterc6642782010-11-12 13:46:18 +00002291 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2292 (size & -size) != size ||
2293 (obj->gtt_offset & (size - 1)),
2294 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2295 obj->gtt_offset, obj->map_and_fenceable, size))
2296 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002297
Daniel Vetterc6642782010-11-12 13:46:18 +00002298 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002299 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002300 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002301 tile_width = 512;
2302
2303 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002304 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002305 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002306
Chris Wilson05394f32010-11-08 19:18:58 +00002307 val = obj->gtt_offset;
2308 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002309 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002310 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002311 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2312 val |= I830_FENCE_REG_VALID;
2313
Chris Wilson05394f32010-11-08 19:18:58 +00002314 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002315 if (fence_reg < 8)
2316 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002317 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002318 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002319
2320 if (pipelined) {
2321 int ret = intel_ring_begin(pipelined, 4);
2322 if (ret)
2323 return ret;
2324
2325 intel_ring_emit(pipelined, MI_NOOP);
2326 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2327 intel_ring_emit(pipelined, fence_reg);
2328 intel_ring_emit(pipelined, val);
2329 intel_ring_advance(pipelined);
2330 } else
2331 I915_WRITE(fence_reg, val);
2332
2333 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002334}
2335
Daniel Vetterc6642782010-11-12 13:46:18 +00002336static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2337 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002338{
Chris Wilson05394f32010-11-08 19:18:58 +00002339 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002340 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002341 u32 size = obj->gtt_space->size;
2342 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002343 uint32_t val;
2344 uint32_t pitch_val;
2345
Daniel Vetterc6642782010-11-12 13:46:18 +00002346 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2347 (size & -size) != size ||
2348 (obj->gtt_offset & (size - 1)),
2349 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2350 obj->gtt_offset, size))
2351 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002352
Chris Wilson05394f32010-11-08 19:18:58 +00002353 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002354 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002355
Chris Wilson05394f32010-11-08 19:18:58 +00002356 val = obj->gtt_offset;
2357 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002358 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002359 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002360 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2361 val |= I830_FENCE_REG_VALID;
2362
Daniel Vetterc6642782010-11-12 13:46:18 +00002363 if (pipelined) {
2364 int ret = intel_ring_begin(pipelined, 4);
2365 if (ret)
2366 return ret;
2367
2368 intel_ring_emit(pipelined, MI_NOOP);
2369 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2370 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2371 intel_ring_emit(pipelined, val);
2372 intel_ring_advance(pipelined);
2373 } else
2374 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2375
2376 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002377}
2378
Chris Wilsond9e86c02010-11-10 16:40:20 +00002379static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2380{
2381 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2382}
2383
2384static int
2385i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002386 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002387{
2388 int ret;
2389
2390 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002391 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002392 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002393 0, obj->base.write_domain);
2394 if (ret)
2395 return ret;
2396 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002397
2398 obj->fenced_gpu_access = false;
2399 }
2400
2401 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2402 if (!ring_passed_seqno(obj->last_fenced_ring,
2403 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002404 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002405 obj->last_fenced_seqno,
2406 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002407 if (ret)
2408 return ret;
2409 }
2410
2411 obj->last_fenced_seqno = 0;
2412 obj->last_fenced_ring = NULL;
2413 }
2414
Chris Wilson63256ec2011-01-04 18:42:07 +00002415 /* Ensure that all CPU reads are completed before installing a fence
2416 * and all writes before removing the fence.
2417 */
2418 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2419 mb();
2420
Chris Wilsond9e86c02010-11-10 16:40:20 +00002421 return 0;
2422}
2423
2424int
2425i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2426{
2427 int ret;
2428
2429 if (obj->tiling_mode)
2430 i915_gem_release_mmap(obj);
2431
Chris Wilsonce453d82011-02-21 14:43:56 +00002432 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002433 if (ret)
2434 return ret;
2435
2436 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2437 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2438 i915_gem_clear_fence_reg(obj->base.dev,
2439 &dev_priv->fence_regs[obj->fence_reg]);
2440
2441 obj->fence_reg = I915_FENCE_REG_NONE;
2442 }
2443
2444 return 0;
2445}
2446
2447static struct drm_i915_fence_reg *
2448i915_find_fence_reg(struct drm_device *dev,
2449 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002450{
Daniel Vetterae3db242010-02-19 11:51:58 +01002451 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002452 struct drm_i915_fence_reg *reg, *first, *avail;
2453 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002454
2455 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002456 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002457 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2458 reg = &dev_priv->fence_regs[i];
2459 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002460 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002461
Chris Wilson05394f32010-11-08 19:18:58 +00002462 if (!reg->obj->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002463 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002464 }
2465
Chris Wilsond9e86c02010-11-10 16:40:20 +00002466 if (avail == NULL)
2467 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002468
2469 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002470 avail = first = NULL;
2471 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
2472 if (reg->obj->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002473 continue;
2474
Chris Wilsond9e86c02010-11-10 16:40:20 +00002475 if (first == NULL)
2476 first = reg;
2477
2478 if (!pipelined ||
2479 !reg->obj->last_fenced_ring ||
2480 reg->obj->last_fenced_ring == pipelined) {
2481 avail = reg;
2482 break;
2483 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002484 }
2485
Chris Wilsond9e86c02010-11-10 16:40:20 +00002486 if (avail == NULL)
2487 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002488
Chris Wilsona00b10c2010-09-24 21:15:47 +01002489 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002490}
2491
Jesse Barnesde151cf2008-11-12 10:03:55 -08002492/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002493 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002494 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002495 * @pipelined: ring on which to queue the change, or NULL for CPU access
2496 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002497 *
2498 * When mapping objects through the GTT, userspace wants to be able to write
2499 * to them without having to worry about swizzling if the object is tiled.
2500 *
2501 * This function walks the fence regs looking for a free one for @obj,
2502 * stealing one if it can't find any.
2503 *
2504 * It then sets up the reg based on the object's properties: address, pitch
2505 * and tiling format.
2506 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002507int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002508i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002509 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002510{
Chris Wilson05394f32010-11-08 19:18:58 +00002511 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002512 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002513 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002514 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002515
Chris Wilson6bda10d2010-12-05 21:04:18 +00002516 /* XXX disable pipelining. There are bugs. Shocking. */
2517 pipelined = NULL;
2518
Chris Wilsond9e86c02010-11-10 16:40:20 +00002519 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002520 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2521 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002522 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002523
Chris Wilson29c5a582011-03-17 15:23:22 +00002524 if (obj->tiling_changed) {
2525 ret = i915_gem_object_flush_fence(obj, pipelined);
2526 if (ret)
2527 return ret;
2528
2529 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2530 pipelined = NULL;
2531
2532 if (pipelined) {
2533 reg->setup_seqno =
2534 i915_gem_next_request_seqno(pipelined);
2535 obj->last_fenced_seqno = reg->setup_seqno;
2536 obj->last_fenced_ring = pipelined;
2537 }
2538
2539 goto update;
2540 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002541
2542 if (!pipelined) {
2543 if (reg->setup_seqno) {
2544 if (!ring_passed_seqno(obj->last_fenced_ring,
2545 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002546 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002547 reg->setup_seqno,
2548 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002549 if (ret)
2550 return ret;
2551 }
2552
2553 reg->setup_seqno = 0;
2554 }
2555 } else if (obj->last_fenced_ring &&
2556 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002557 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002558 if (ret)
2559 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002560 }
2561
Eric Anholta09ba7f2009-08-29 12:49:51 -07002562 return 0;
2563 }
2564
Chris Wilsond9e86c02010-11-10 16:40:20 +00002565 reg = i915_find_fence_reg(dev, pipelined);
2566 if (reg == NULL)
2567 return -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002568
Chris Wilsonce453d82011-02-21 14:43:56 +00002569 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002570 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002571 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002572
Chris Wilsond9e86c02010-11-10 16:40:20 +00002573 if (reg->obj) {
2574 struct drm_i915_gem_object *old = reg->obj;
2575
2576 drm_gem_object_reference(&old->base);
2577
2578 if (old->tiling_mode)
2579 i915_gem_release_mmap(old);
2580
Chris Wilsonce453d82011-02-21 14:43:56 +00002581 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002582 if (ret) {
2583 drm_gem_object_unreference(&old->base);
2584 return ret;
2585 }
2586
2587 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2588 pipelined = NULL;
2589
2590 old->fence_reg = I915_FENCE_REG_NONE;
2591 old->last_fenced_ring = pipelined;
2592 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002593 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002594
2595 drm_gem_object_unreference(&old->base);
2596 } else if (obj->last_fenced_seqno == 0)
2597 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002598
Jesse Barnesde151cf2008-11-12 10:03:55 -08002599 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002600 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2601 obj->fence_reg = reg - dev_priv->fence_regs;
2602 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002603
Chris Wilsond9e86c02010-11-10 16:40:20 +00002604 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002605 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002606 obj->last_fenced_seqno = reg->setup_seqno;
2607
2608update:
2609 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002610 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002611 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002612 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002613 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002614 break;
2615 case 5:
2616 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002617 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002618 break;
2619 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002620 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002621 break;
2622 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002623 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002624 break;
2625 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002626
Daniel Vetterc6642782010-11-12 13:46:18 +00002627 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002628}
2629
2630/**
2631 * i915_gem_clear_fence_reg - clear out fence register info
2632 * @obj: object to clear
2633 *
2634 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002635 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002636 */
2637static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002638i915_gem_clear_fence_reg(struct drm_device *dev,
2639 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002640{
Jesse Barnes79e53942008-11-07 14:24:08 -08002641 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002642 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002643
Chris Wilsone259bef2010-09-17 00:32:02 +01002644 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002645 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002646 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002647 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002648 break;
2649 case 5:
2650 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002651 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002652 break;
2653 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002654 if (fence_reg >= 8)
2655 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002656 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002657 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002658 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002659
2660 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002661 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002662 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002663
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002664 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002665 reg->obj = NULL;
2666 reg->setup_seqno = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002667}
2668
2669/**
Eric Anholt673a3942008-07-30 12:06:12 -07002670 * Finds free space in the GTT aperture and binds the object there.
2671 */
2672static int
Chris Wilson05394f32010-11-08 19:18:58 +00002673i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002674 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002675 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002676{
Chris Wilson05394f32010-11-08 19:18:58 +00002677 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002678 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002679 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002680 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002681 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002682 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002683 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002684
Chris Wilson05394f32010-11-08 19:18:58 +00002685 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002686 DRM_ERROR("Attempting to bind a purgeable object\n");
2687 return -EINVAL;
2688 }
2689
Chris Wilsone28f8712011-07-18 13:11:49 -07002690 fence_size = i915_gem_get_gtt_size(dev,
2691 obj->base.size,
2692 obj->tiling_mode);
2693 fence_alignment = i915_gem_get_gtt_alignment(dev,
2694 obj->base.size,
2695 obj->tiling_mode);
2696 unfenced_alignment =
2697 i915_gem_get_unfenced_gtt_alignment(dev,
2698 obj->base.size,
2699 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002700
Eric Anholt673a3942008-07-30 12:06:12 -07002701 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002702 alignment = map_and_fenceable ? fence_alignment :
2703 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002704 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002705 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2706 return -EINVAL;
2707 }
2708
Chris Wilson05394f32010-11-08 19:18:58 +00002709 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002710
Chris Wilson654fc602010-05-27 13:18:21 +01002711 /* If the object is bigger than the entire aperture, reject it early
2712 * before evicting everything in a vain attempt to find space.
2713 */
Chris Wilson05394f32010-11-08 19:18:58 +00002714 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002715 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002716 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2717 return -E2BIG;
2718 }
2719
Eric Anholt673a3942008-07-30 12:06:12 -07002720 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002721 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002722 free_space =
2723 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002724 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002725 dev_priv->mm.gtt_mappable_end,
2726 0);
2727 else
2728 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002729 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002730
2731 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002732 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002733 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002734 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002735 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002736 dev_priv->mm.gtt_mappable_end,
2737 0);
2738 else
Chris Wilson05394f32010-11-08 19:18:58 +00002739 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002740 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002741 }
Chris Wilson05394f32010-11-08 19:18:58 +00002742 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002743 /* If the gtt is empty and we're still having trouble
2744 * fitting our object in, we're out of memory.
2745 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002746 ret = i915_gem_evict_something(dev, size, alignment,
2747 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002748 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002749 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002750
Eric Anholt673a3942008-07-30 12:06:12 -07002751 goto search_free;
2752 }
2753
Chris Wilsone5281cc2010-10-28 13:45:36 +01002754 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002755 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002756 drm_mm_put_block(obj->gtt_space);
2757 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002758
2759 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002760 /* first try to reclaim some memory by clearing the GTT */
2761 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002762 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002763 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002764 if (gfpmask) {
2765 gfpmask = 0;
2766 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002767 }
2768
Chris Wilson809b6332011-01-10 17:33:15 +00002769 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002770 }
2771
2772 goto search_free;
2773 }
2774
Eric Anholt673a3942008-07-30 12:06:12 -07002775 return ret;
2776 }
2777
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002778 ret = i915_gem_gtt_bind_object(obj);
2779 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002780 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002781 drm_mm_put_block(obj->gtt_space);
2782 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002783
Chris Wilson809b6332011-01-10 17:33:15 +00002784 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002785 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002786
2787 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002788 }
Eric Anholt673a3942008-07-30 12:06:12 -07002789
Chris Wilson6299f992010-11-24 12:23:44 +00002790 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002791 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002792
Eric Anholt673a3942008-07-30 12:06:12 -07002793 /* Assert that the object is not currently in any GPU domain. As it
2794 * wasn't in the GTT, there shouldn't be any way it could have been in
2795 * a GPU cache
2796 */
Chris Wilson05394f32010-11-08 19:18:58 +00002797 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2798 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002799
Chris Wilson6299f992010-11-24 12:23:44 +00002800 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002801
Daniel Vetter75e9e912010-11-04 17:11:09 +01002802 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002803 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002804 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002805
Daniel Vetter75e9e912010-11-04 17:11:09 +01002806 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002807 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002808
Chris Wilson05394f32010-11-08 19:18:58 +00002809 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002810
Chris Wilsondb53a302011-02-03 11:57:46 +00002811 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002812 return 0;
2813}
2814
2815void
Chris Wilson05394f32010-11-08 19:18:58 +00002816i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002817{
Eric Anholt673a3942008-07-30 12:06:12 -07002818 /* If we don't have a page list set up, then we're not pinned
2819 * to GPU, and we can ignore the cache flush because it'll happen
2820 * again at bind time.
2821 */
Chris Wilson05394f32010-11-08 19:18:58 +00002822 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002823 return;
2824
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002825 /* If the GPU is snooping the contents of the CPU cache,
2826 * we do not need to manually clear the CPU cache lines. However,
2827 * the caches are only snooped when the render cache is
2828 * flushed/invalidated. As we always have to emit invalidations
2829 * and flushes when moving into and out of the RENDER domain, correct
2830 * snooping behaviour occurs naturally as the result of our domain
2831 * tracking.
2832 */
2833 if (obj->cache_level != I915_CACHE_NONE)
2834 return;
2835
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002836 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002837
Chris Wilson05394f32010-11-08 19:18:58 +00002838 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002839}
2840
Eric Anholte47c68e2008-11-14 13:35:19 -08002841/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002842static int
Chris Wilson3619df02010-11-28 15:37:17 +00002843i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002844{
Chris Wilson05394f32010-11-08 19:18:58 +00002845 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002846 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002847
2848 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002849 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002850}
2851
2852/** Flushes the GTT write domain for the object if it's dirty. */
2853static void
Chris Wilson05394f32010-11-08 19:18:58 +00002854i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002855{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002856 uint32_t old_write_domain;
2857
Chris Wilson05394f32010-11-08 19:18:58 +00002858 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002859 return;
2860
Chris Wilson63256ec2011-01-04 18:42:07 +00002861 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002862 * to it immediately go to main memory as far as we know, so there's
2863 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002864 *
2865 * However, we do have to enforce the order so that all writes through
2866 * the GTT land before any writes to the device, such as updates to
2867 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002868 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002869 wmb();
2870
Chris Wilson05394f32010-11-08 19:18:58 +00002871 old_write_domain = obj->base.write_domain;
2872 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002873
2874 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002875 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002876 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002877}
2878
2879/** Flushes the CPU write domain for the object if it's dirty. */
2880static void
Chris Wilson05394f32010-11-08 19:18:58 +00002881i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002882{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002883 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002884
Chris Wilson05394f32010-11-08 19:18:58 +00002885 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002886 return;
2887
2888 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002889 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002890 old_write_domain = obj->base.write_domain;
2891 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002892
2893 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002894 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002895 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002896}
2897
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002898/**
2899 * Moves a single object to the GTT read, and possibly write domain.
2900 *
2901 * This function returns when the move is complete, including waiting on
2902 * flushes to occur.
2903 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002904int
Chris Wilson20217462010-11-23 15:26:33 +00002905i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002906{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002907 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002908 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002909
Eric Anholt02354392008-11-26 13:58:13 -08002910 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002911 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002912 return -EINVAL;
2913
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002914 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2915 return 0;
2916
Chris Wilson88241782011-01-07 17:09:48 +00002917 ret = i915_gem_object_flush_gpu_write_domain(obj);
2918 if (ret)
2919 return ret;
2920
Chris Wilson87ca9c82010-12-02 09:42:56 +00002921 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002922 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002923 if (ret)
2924 return ret;
2925 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002926
Chris Wilson72133422010-09-13 23:56:38 +01002927 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002928
Chris Wilson05394f32010-11-08 19:18:58 +00002929 old_write_domain = obj->base.write_domain;
2930 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002931
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002932 /* It should now be out of any other write domains, and we can update
2933 * the domain values for our changes.
2934 */
Chris Wilson05394f32010-11-08 19:18:58 +00002935 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2936 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002937 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002938 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2939 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2940 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002941 }
2942
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002943 trace_i915_gem_object_change_domain(obj,
2944 old_read_domains,
2945 old_write_domain);
2946
Eric Anholte47c68e2008-11-14 13:35:19 -08002947 return 0;
2948}
2949
Chris Wilsone4ffd172011-04-04 09:44:39 +01002950int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2951 enum i915_cache_level cache_level)
2952{
2953 int ret;
2954
2955 if (obj->cache_level == cache_level)
2956 return 0;
2957
2958 if (obj->pin_count) {
2959 DRM_DEBUG("can not change the cache level of pinned objects\n");
2960 return -EBUSY;
2961 }
2962
2963 if (obj->gtt_space) {
2964 ret = i915_gem_object_finish_gpu(obj);
2965 if (ret)
2966 return ret;
2967
2968 i915_gem_object_finish_gtt(obj);
2969
2970 /* Before SandyBridge, you could not use tiling or fence
2971 * registers with snooped memory, so relinquish any fences
2972 * currently pointing to our region in the aperture.
2973 */
2974 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2975 ret = i915_gem_object_put_fence(obj);
2976 if (ret)
2977 return ret;
2978 }
2979
2980 i915_gem_gtt_rebind_object(obj, cache_level);
2981 }
2982
2983 if (cache_level == I915_CACHE_NONE) {
2984 u32 old_read_domains, old_write_domain;
2985
2986 /* If we're coming from LLC cached, then we haven't
2987 * actually been tracking whether the data is in the
2988 * CPU cache or not, since we only allow one bit set
2989 * in obj->write_domain and have been skipping the clflushes.
2990 * Just set it to the CPU cache for now.
2991 */
2992 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2993 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2994
2995 old_read_domains = obj->base.read_domains;
2996 old_write_domain = obj->base.write_domain;
2997
2998 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2999 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3000
3001 trace_i915_gem_object_change_domain(obj,
3002 old_read_domains,
3003 old_write_domain);
3004 }
3005
3006 obj->cache_level = cache_level;
3007 return 0;
3008}
3009
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003010/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003011 * Prepare buffer for display plane (scanout, cursors, etc).
3012 * Can be called from an uninterruptible phase (modesetting) and allows
3013 * any flushes to be pipelined (for pageflips).
3014 *
3015 * For the display plane, we want to be in the GTT but out of any write
3016 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
3017 * ability to pipeline the waits, pinning and any additional subtleties
3018 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003019 */
3020int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003021i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3022 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003023 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003024{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003025 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003026 int ret;
3027
Chris Wilson88241782011-01-07 17:09:48 +00003028 ret = i915_gem_object_flush_gpu_write_domain(obj);
3029 if (ret)
3030 return ret;
3031
Chris Wilson0be73282010-12-06 14:36:27 +00003032 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00003033 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07003034 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003035 return ret;
3036 }
3037
Eric Anholta7ef0642011-03-29 16:59:54 -07003038 /* The display engine is not coherent with the LLC cache on gen6. As
3039 * a result, we make sure that the pinning that is about to occur is
3040 * done with uncached PTEs. This is lowest common denominator for all
3041 * chipsets.
3042 *
3043 * However for gen6+, we could do better by using the GFDT bit instead
3044 * of uncaching, which would allow us to flush all the LLC-cached data
3045 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3046 */
3047 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3048 if (ret)
3049 return ret;
3050
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003051 /* As the user may map the buffer once pinned in the display plane
3052 * (e.g. libkms for the bootup splash), we have to ensure that we
3053 * always use map_and_fenceable for all scanout buffers.
3054 */
3055 ret = i915_gem_object_pin(obj, alignment, true);
3056 if (ret)
3057 return ret;
3058
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003059 i915_gem_object_flush_cpu_write_domain(obj);
3060
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003061 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003062 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003063
3064 /* It should now be out of any other write domains, and we can update
3065 * the domain values for our changes.
3066 */
3067 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003068 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003069
3070 trace_i915_gem_object_change_domain(obj,
3071 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003072 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003073
3074 return 0;
3075}
3076
Chris Wilson85345512010-11-13 09:49:11 +00003077int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003078i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003079{
Chris Wilson88241782011-01-07 17:09:48 +00003080 int ret;
3081
Chris Wilsona8198ee2011-04-13 22:04:09 +01003082 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003083 return 0;
3084
Chris Wilson88241782011-01-07 17:09:48 +00003085 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003086 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00003087 if (ret)
3088 return ret;
3089 }
Chris Wilson85345512010-11-13 09:49:11 +00003090
Chris Wilsona8198ee2011-04-13 22:04:09 +01003091 /* Ensure that we invalidate the GPU's caches and TLBs. */
3092 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
3093
Chris Wilsonce453d82011-02-21 14:43:56 +00003094 return i915_gem_object_wait_rendering(obj);
Chris Wilson85345512010-11-13 09:49:11 +00003095}
3096
Eric Anholte47c68e2008-11-14 13:35:19 -08003097/**
3098 * Moves a single object to the CPU read, and possibly write domain.
3099 *
3100 * This function returns when the move is complete, including waiting on
3101 * flushes to occur.
3102 */
3103static int
Chris Wilson919926a2010-11-12 13:42:53 +00003104i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003105{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003106 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003107 int ret;
3108
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003109 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3110 return 0;
3111
Chris Wilson88241782011-01-07 17:09:48 +00003112 ret = i915_gem_object_flush_gpu_write_domain(obj);
3113 if (ret)
3114 return ret;
3115
Chris Wilsonce453d82011-02-21 14:43:56 +00003116 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003117 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003118 return ret;
3119
3120 i915_gem_object_flush_gtt_write_domain(obj);
3121
3122 /* If we have a partially-valid cache of the object in the CPU,
3123 * finish invalidating it and free the per-page flags.
3124 */
3125 i915_gem_object_set_to_full_cpu_read_domain(obj);
3126
Chris Wilson05394f32010-11-08 19:18:58 +00003127 old_write_domain = obj->base.write_domain;
3128 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003129
Eric Anholte47c68e2008-11-14 13:35:19 -08003130 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003131 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003132 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003133
Chris Wilson05394f32010-11-08 19:18:58 +00003134 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003135 }
3136
3137 /* It should now be out of any other write domains, and we can update
3138 * the domain values for our changes.
3139 */
Chris Wilson05394f32010-11-08 19:18:58 +00003140 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003141
3142 /* If we're writing through the CPU, then the GPU read domains will
3143 * need to be invalidated at next use.
3144 */
3145 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003146 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3147 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003148 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003149
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003150 trace_i915_gem_object_change_domain(obj,
3151 old_read_domains,
3152 old_write_domain);
3153
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003154 return 0;
3155}
3156
Eric Anholt673a3942008-07-30 12:06:12 -07003157/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003158 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003159 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003160 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3161 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3162 */
3163static void
Chris Wilson05394f32010-11-08 19:18:58 +00003164i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003165{
Chris Wilson05394f32010-11-08 19:18:58 +00003166 if (!obj->page_cpu_valid)
Eric Anholte47c68e2008-11-14 13:35:19 -08003167 return;
3168
3169 /* If we're partially in the CPU read domain, finish moving it in.
3170 */
Chris Wilson05394f32010-11-08 19:18:58 +00003171 if (obj->base.read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003172 int i;
3173
Chris Wilson05394f32010-11-08 19:18:58 +00003174 for (i = 0; i <= (obj->base.size - 1) / PAGE_SIZE; i++) {
3175 if (obj->page_cpu_valid[i])
Eric Anholte47c68e2008-11-14 13:35:19 -08003176 continue;
Chris Wilson05394f32010-11-08 19:18:58 +00003177 drm_clflush_pages(obj->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003178 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003179 }
3180
3181 /* Free the page_cpu_valid mappings which are now stale, whether
3182 * or not we've got I915_GEM_DOMAIN_CPU.
3183 */
Chris Wilson05394f32010-11-08 19:18:58 +00003184 kfree(obj->page_cpu_valid);
3185 obj->page_cpu_valid = NULL;
Eric Anholte47c68e2008-11-14 13:35:19 -08003186}
3187
3188/**
3189 * Set the CPU read domain on a range of the object.
3190 *
3191 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3192 * not entirely valid. The page_cpu_valid member of the object flags which
3193 * pages have been flushed, and will be respected by
3194 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3195 * of the whole object.
3196 *
3197 * This function returns when the move is complete, including waiting on
3198 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003199 */
3200static int
Chris Wilson05394f32010-11-08 19:18:58 +00003201i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -08003202 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003203{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003204 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003205 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003206
Chris Wilson05394f32010-11-08 19:18:58 +00003207 if (offset == 0 && size == obj->base.size)
Eric Anholte47c68e2008-11-14 13:35:19 -08003208 return i915_gem_object_set_to_cpu_domain(obj, 0);
3209
Chris Wilson88241782011-01-07 17:09:48 +00003210 ret = i915_gem_object_flush_gpu_write_domain(obj);
3211 if (ret)
3212 return ret;
3213
Chris Wilsonce453d82011-02-21 14:43:56 +00003214 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003215 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003216 return ret;
Daniel Vetterde18a292010-11-27 22:30:41 +01003217
Eric Anholte47c68e2008-11-14 13:35:19 -08003218 i915_gem_object_flush_gtt_write_domain(obj);
3219
3220 /* If we're already fully in the CPU read domain, we're done. */
Chris Wilson05394f32010-11-08 19:18:58 +00003221 if (obj->page_cpu_valid == NULL &&
3222 (obj->base.read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003223 return 0;
3224
Eric Anholte47c68e2008-11-14 13:35:19 -08003225 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3226 * newly adding I915_GEM_DOMAIN_CPU
3227 */
Chris Wilson05394f32010-11-08 19:18:58 +00003228 if (obj->page_cpu_valid == NULL) {
3229 obj->page_cpu_valid = kzalloc(obj->base.size / PAGE_SIZE,
3230 GFP_KERNEL);
3231 if (obj->page_cpu_valid == NULL)
Eric Anholte47c68e2008-11-14 13:35:19 -08003232 return -ENOMEM;
Chris Wilson05394f32010-11-08 19:18:58 +00003233 } else if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
3234 memset(obj->page_cpu_valid, 0, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003235
3236 /* Flush the cache on any pages that are still invalid from the CPU's
3237 * perspective.
3238 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003239 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3240 i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003241 if (obj->page_cpu_valid[i])
Eric Anholt673a3942008-07-30 12:06:12 -07003242 continue;
3243
Chris Wilson05394f32010-11-08 19:18:58 +00003244 drm_clflush_pages(obj->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003245
Chris Wilson05394f32010-11-08 19:18:58 +00003246 obj->page_cpu_valid[i] = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003247 }
3248
Eric Anholte47c68e2008-11-14 13:35:19 -08003249 /* It should now be out of any other write domains, and we can update
3250 * the domain values for our changes.
3251 */
Chris Wilson05394f32010-11-08 19:18:58 +00003252 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003253
Chris Wilson05394f32010-11-08 19:18:58 +00003254 old_read_domains = obj->base.read_domains;
3255 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003256
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003257 trace_i915_gem_object_change_domain(obj,
3258 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003259 obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003260
Eric Anholt673a3942008-07-30 12:06:12 -07003261 return 0;
3262}
3263
Eric Anholt673a3942008-07-30 12:06:12 -07003264/* Throttle our rendering by waiting until the ring has completed our requests
3265 * emitted over 20 msec ago.
3266 *
Eric Anholtb9624422009-06-03 07:27:35 +00003267 * Note that if we were to use the current jiffies each time around the loop,
3268 * we wouldn't escape the function with any frames outstanding if the time to
3269 * render a frame was over 20ms.
3270 *
Eric Anholt673a3942008-07-30 12:06:12 -07003271 * This should get us reasonable parallelism between CPU and GPU but also
3272 * relatively low latency when blocking on a particular request to finish.
3273 */
3274static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003275i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003276{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003277 struct drm_i915_private *dev_priv = dev->dev_private;
3278 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003279 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003280 struct drm_i915_gem_request *request;
3281 struct intel_ring_buffer *ring = NULL;
3282 u32 seqno = 0;
3283 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003284
Chris Wilsone110e8d2011-01-26 15:39:14 +00003285 if (atomic_read(&dev_priv->mm.wedged))
3286 return -EIO;
3287
Chris Wilson1c255952010-09-26 11:03:27 +01003288 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003289 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003290 if (time_after_eq(request->emitted_jiffies, recent_enough))
3291 break;
3292
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003293 ring = request->ring;
3294 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003295 }
Chris Wilson1c255952010-09-26 11:03:27 +01003296 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003297
3298 if (seqno == 0)
3299 return 0;
3300
3301 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003302 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003303 /* And wait for the seqno passing without holding any locks and
3304 * causing extra latency for others. This is safe as the irq
3305 * generation is designed to be run atomically and so is
3306 * lockless.
3307 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003308 if (ring->irq_get(ring)) {
3309 ret = wait_event_interruptible(ring->irq_queue,
3310 i915_seqno_passed(ring->get_seqno(ring), seqno)
3311 || atomic_read(&dev_priv->mm.wedged));
3312 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003313
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003314 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3315 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003316 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3317 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003318 atomic_read(&dev_priv->mm.wedged), 3000)) {
3319 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003320 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003321 }
3322
3323 if (ret == 0)
3324 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003325
Eric Anholt673a3942008-07-30 12:06:12 -07003326 return ret;
3327}
3328
Eric Anholt673a3942008-07-30 12:06:12 -07003329int
Chris Wilson05394f32010-11-08 19:18:58 +00003330i915_gem_object_pin(struct drm_i915_gem_object *obj,
3331 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003332 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003333{
Chris Wilson05394f32010-11-08 19:18:58 +00003334 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003335 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003336 int ret;
3337
Chris Wilson05394f32010-11-08 19:18:58 +00003338 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003339 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003340
Chris Wilson05394f32010-11-08 19:18:58 +00003341 if (obj->gtt_space != NULL) {
3342 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3343 (map_and_fenceable && !obj->map_and_fenceable)) {
3344 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003345 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003346 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3347 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003348 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003349 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003350 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003351 ret = i915_gem_object_unbind(obj);
3352 if (ret)
3353 return ret;
3354 }
3355 }
3356
Chris Wilson05394f32010-11-08 19:18:58 +00003357 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003358 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003359 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003360 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003361 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003362 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003363
Chris Wilson05394f32010-11-08 19:18:58 +00003364 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003365 if (!obj->active)
3366 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003367 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003368 }
Chris Wilson6299f992010-11-24 12:23:44 +00003369 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003370
Chris Wilson23bc5982010-09-29 16:10:57 +01003371 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003372 return 0;
3373}
3374
3375void
Chris Wilson05394f32010-11-08 19:18:58 +00003376i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003377{
Chris Wilson05394f32010-11-08 19:18:58 +00003378 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003379 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003380
Chris Wilson23bc5982010-09-29 16:10:57 +01003381 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003382 BUG_ON(obj->pin_count == 0);
3383 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003384
Chris Wilson05394f32010-11-08 19:18:58 +00003385 if (--obj->pin_count == 0) {
3386 if (!obj->active)
3387 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003388 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003389 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003390 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003391 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003392}
3393
3394int
3395i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003396 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003397{
3398 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003399 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003400 int ret;
3401
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003402 ret = i915_mutex_lock_interruptible(dev);
3403 if (ret)
3404 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003405
Chris Wilson05394f32010-11-08 19:18:58 +00003406 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003407 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003408 ret = -ENOENT;
3409 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003410 }
Eric Anholt673a3942008-07-30 12:06:12 -07003411
Chris Wilson05394f32010-11-08 19:18:58 +00003412 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003413 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003414 ret = -EINVAL;
3415 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003416 }
3417
Chris Wilson05394f32010-11-08 19:18:58 +00003418 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003419 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3420 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003421 ret = -EINVAL;
3422 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003423 }
3424
Chris Wilson05394f32010-11-08 19:18:58 +00003425 obj->user_pin_count++;
3426 obj->pin_filp = file;
3427 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003428 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003429 if (ret)
3430 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003431 }
3432
3433 /* XXX - flush the CPU caches for pinned objects
3434 * as the X server doesn't manage domains yet
3435 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003436 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003437 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003438out:
Chris Wilson05394f32010-11-08 19:18:58 +00003439 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003440unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003441 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003442 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003443}
3444
3445int
3446i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003447 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003448{
3449 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003450 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003451 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003452
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003453 ret = i915_mutex_lock_interruptible(dev);
3454 if (ret)
3455 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003456
Chris Wilson05394f32010-11-08 19:18:58 +00003457 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003458 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003459 ret = -ENOENT;
3460 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003461 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003462
Chris Wilson05394f32010-11-08 19:18:58 +00003463 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003464 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3465 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003466 ret = -EINVAL;
3467 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003468 }
Chris Wilson05394f32010-11-08 19:18:58 +00003469 obj->user_pin_count--;
3470 if (obj->user_pin_count == 0) {
3471 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003472 i915_gem_object_unpin(obj);
3473 }
Eric Anholt673a3942008-07-30 12:06:12 -07003474
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003475out:
Chris Wilson05394f32010-11-08 19:18:58 +00003476 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003477unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003478 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003479 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003480}
3481
3482int
3483i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003484 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003485{
3486 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003487 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003488 int ret;
3489
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003490 ret = i915_mutex_lock_interruptible(dev);
3491 if (ret)
3492 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003493
Chris Wilson05394f32010-11-08 19:18:58 +00003494 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003495 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003496 ret = -ENOENT;
3497 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003498 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003499
Chris Wilson0be555b2010-08-04 15:36:30 +01003500 /* Count all active objects as busy, even if they are currently not used
3501 * by the gpu. Users of this interface expect objects to eventually
3502 * become non-busy without any further actions, therefore emit any
3503 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003504 */
Chris Wilson05394f32010-11-08 19:18:58 +00003505 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003506 if (args->busy) {
3507 /* Unconditionally flush objects, even when the gpu still uses this
3508 * object. Userspace calling this function indicates that it wants to
3509 * use this buffer rather sooner than later, so issuing the required
3510 * flush earlier is beneficial.
3511 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003512 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003513 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003514 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003515 } else if (obj->ring->outstanding_lazy_request ==
3516 obj->last_rendering_seqno) {
3517 struct drm_i915_gem_request *request;
3518
Chris Wilson7a194872010-12-07 10:38:40 +00003519 /* This ring is not being cleared by active usage,
3520 * so emit a request to do so.
3521 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003522 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003523 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003524 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003525 if (ret)
3526 kfree(request);
3527 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003528 ret = -ENOMEM;
3529 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003530
3531 /* Update the active list for the hardware's current position.
3532 * Otherwise this only updates on a delayed timer or when irqs
3533 * are actually unmasked, and our working set ends up being
3534 * larger than required.
3535 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003536 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003537
Chris Wilson05394f32010-11-08 19:18:58 +00003538 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003539 }
Eric Anholt673a3942008-07-30 12:06:12 -07003540
Chris Wilson05394f32010-11-08 19:18:58 +00003541 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003542unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003543 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003544 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003545}
3546
3547int
3548i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3549 struct drm_file *file_priv)
3550{
Akshay Joshi0206e352011-08-16 15:34:10 -04003551 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003552}
3553
Chris Wilson3ef94da2009-09-14 16:50:29 +01003554int
3555i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3556 struct drm_file *file_priv)
3557{
3558 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003559 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003560 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003561
3562 switch (args->madv) {
3563 case I915_MADV_DONTNEED:
3564 case I915_MADV_WILLNEED:
3565 break;
3566 default:
3567 return -EINVAL;
3568 }
3569
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003570 ret = i915_mutex_lock_interruptible(dev);
3571 if (ret)
3572 return ret;
3573
Chris Wilson05394f32010-11-08 19:18:58 +00003574 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003575 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003576 ret = -ENOENT;
3577 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003578 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003579
Chris Wilson05394f32010-11-08 19:18:58 +00003580 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003581 ret = -EINVAL;
3582 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003583 }
3584
Chris Wilson05394f32010-11-08 19:18:58 +00003585 if (obj->madv != __I915_MADV_PURGED)
3586 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003587
Chris Wilson2d7ef392009-09-20 23:13:10 +01003588 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003589 if (i915_gem_object_is_purgeable(obj) &&
3590 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003591 i915_gem_object_truncate(obj);
3592
Chris Wilson05394f32010-11-08 19:18:58 +00003593 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003594
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003595out:
Chris Wilson05394f32010-11-08 19:18:58 +00003596 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003597unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003598 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003599 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003600}
3601
Chris Wilson05394f32010-11-08 19:18:58 +00003602struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3603 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003604{
Chris Wilson73aa8082010-09-30 11:46:12 +01003605 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003606 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003607 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003608
3609 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3610 if (obj == NULL)
3611 return NULL;
3612
3613 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3614 kfree(obj);
3615 return NULL;
3616 }
3617
Hugh Dickins5949eac2011-06-27 16:18:18 -07003618 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3619 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3620
Chris Wilson73aa8082010-09-30 11:46:12 +01003621 i915_gem_info_add_obj(dev_priv, size);
3622
Daniel Vetterc397b902010-04-09 19:05:07 +00003623 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3624 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3625
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003626 if (HAS_LLC(dev)) {
3627 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003628 * cache) for about a 10% performance improvement
3629 * compared to uncached. Graphics requests other than
3630 * display scanout are coherent with the CPU in
3631 * accessing this cache. This means in this mode we
3632 * don't need to clflush on the CPU side, and on the
3633 * GPU side we only need to flush internal caches to
3634 * get data visible to the CPU.
3635 *
3636 * However, we maintain the display planes as UC, and so
3637 * need to rebind when first used as such.
3638 */
3639 obj->cache_level = I915_CACHE_LLC;
3640 } else
3641 obj->cache_level = I915_CACHE_NONE;
3642
Daniel Vetter62b8b212010-04-09 19:05:08 +00003643 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003644 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003645 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003646 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003647 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003648 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003649 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003650 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003651 /* Avoid an unnecessary call to unbind on the first bind. */
3652 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003653
Chris Wilson05394f32010-11-08 19:18:58 +00003654 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003655}
3656
Eric Anholt673a3942008-07-30 12:06:12 -07003657int i915_gem_init_object(struct drm_gem_object *obj)
3658{
Daniel Vetterc397b902010-04-09 19:05:07 +00003659 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003660
Eric Anholt673a3942008-07-30 12:06:12 -07003661 return 0;
3662}
3663
Chris Wilson05394f32010-11-08 19:18:58 +00003664static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003665{
Chris Wilson05394f32010-11-08 19:18:58 +00003666 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003667 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003668 int ret;
3669
3670 ret = i915_gem_object_unbind(obj);
3671 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003672 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003673 &dev_priv->mm.deferred_free_list);
3674 return;
3675 }
3676
Chris Wilson26e12f82011-03-20 11:20:19 +00003677 trace_i915_gem_object_destroy(obj);
3678
Chris Wilson05394f32010-11-08 19:18:58 +00003679 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003680 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003681
Chris Wilson05394f32010-11-08 19:18:58 +00003682 drm_gem_object_release(&obj->base);
3683 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003684
Chris Wilson05394f32010-11-08 19:18:58 +00003685 kfree(obj->page_cpu_valid);
3686 kfree(obj->bit_17);
3687 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003688}
3689
Chris Wilson05394f32010-11-08 19:18:58 +00003690void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003691{
Chris Wilson05394f32010-11-08 19:18:58 +00003692 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3693 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003694
Chris Wilson05394f32010-11-08 19:18:58 +00003695 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003696 i915_gem_object_unpin(obj);
3697
Chris Wilson05394f32010-11-08 19:18:58 +00003698 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003699 i915_gem_detach_phys_object(dev, obj);
3700
Chris Wilsonbe726152010-07-23 23:18:50 +01003701 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003702}
3703
Jesse Barnes5669fca2009-02-17 15:13:31 -08003704int
Eric Anholt673a3942008-07-30 12:06:12 -07003705i915_gem_idle(struct drm_device *dev)
3706{
3707 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003708 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003709
Keith Packard6dbe2772008-10-14 21:41:13 -07003710 mutex_lock(&dev->struct_mutex);
3711
Chris Wilson87acb0a2010-10-19 10:13:00 +01003712 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003713 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003714 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003715 }
Eric Anholt673a3942008-07-30 12:06:12 -07003716
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003717 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003718 if (ret) {
3719 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003720 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003721 }
Eric Anholt673a3942008-07-30 12:06:12 -07003722
Chris Wilson29105cc2010-01-07 10:39:13 +00003723 /* Under UMS, be paranoid and evict. */
3724 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003725 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003726 if (ret) {
3727 mutex_unlock(&dev->struct_mutex);
3728 return ret;
3729 }
3730 }
3731
Chris Wilson312817a2010-11-22 11:50:11 +00003732 i915_gem_reset_fences(dev);
3733
Chris Wilson29105cc2010-01-07 10:39:13 +00003734 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3735 * We need to replace this with a semaphore, or something.
3736 * And not confound mm.suspended!
3737 */
3738 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003739 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003740
3741 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003742 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003743
Keith Packard6dbe2772008-10-14 21:41:13 -07003744 mutex_unlock(&dev->struct_mutex);
3745
Chris Wilson29105cc2010-01-07 10:39:13 +00003746 /* Cancel the retire work handler, which should be idle now. */
3747 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3748
Eric Anholt673a3942008-07-30 12:06:12 -07003749 return 0;
3750}
3751
Eric Anholt673a3942008-07-30 12:06:12 -07003752int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003753i915_gem_init_ringbuffer(struct drm_device *dev)
3754{
3755 drm_i915_private_t *dev_priv = dev->dev_private;
3756 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003757
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003758 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003759 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003760 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003761
3762 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003763 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003764 if (ret)
3765 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003766 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003767
Chris Wilson549f7362010-10-19 11:19:32 +01003768 if (HAS_BLT(dev)) {
3769 ret = intel_init_blt_ring_buffer(dev);
3770 if (ret)
3771 goto cleanup_bsd_ring;
3772 }
3773
Chris Wilson6f392d52010-08-07 11:01:22 +01003774 dev_priv->next_seqno = 1;
3775
Chris Wilson68f95ba2010-05-27 13:18:22 +01003776 return 0;
3777
Chris Wilson549f7362010-10-19 11:19:32 +01003778cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003779 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003780cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003781 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003782 return ret;
3783}
3784
3785void
3786i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3787{
3788 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003789 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003790
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003791 for (i = 0; i < I915_NUM_RINGS; i++)
3792 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003793}
3794
3795int
Eric Anholt673a3942008-07-30 12:06:12 -07003796i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3797 struct drm_file *file_priv)
3798{
3799 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003800 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003801
Jesse Barnes79e53942008-11-07 14:24:08 -08003802 if (drm_core_check_feature(dev, DRIVER_MODESET))
3803 return 0;
3804
Ben Gamariba1234d2009-09-14 17:48:47 -04003805 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003806 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003807 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003808 }
3809
Eric Anholt673a3942008-07-30 12:06:12 -07003810 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003811 dev_priv->mm.suspended = 0;
3812
3813 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003814 if (ret != 0) {
3815 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003816 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003817 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003818
Chris Wilson69dc4982010-10-19 10:36:51 +01003819 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003820 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3821 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003822 for (i = 0; i < I915_NUM_RINGS; i++) {
3823 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3824 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3825 }
Eric Anholt673a3942008-07-30 12:06:12 -07003826 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003827
Chris Wilson5f353082010-06-07 14:03:03 +01003828 ret = drm_irq_install(dev);
3829 if (ret)
3830 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003831
Eric Anholt673a3942008-07-30 12:06:12 -07003832 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003833
3834cleanup_ringbuffer:
3835 mutex_lock(&dev->struct_mutex);
3836 i915_gem_cleanup_ringbuffer(dev);
3837 dev_priv->mm.suspended = 1;
3838 mutex_unlock(&dev->struct_mutex);
3839
3840 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003841}
3842
3843int
3844i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3845 struct drm_file *file_priv)
3846{
Jesse Barnes79e53942008-11-07 14:24:08 -08003847 if (drm_core_check_feature(dev, DRIVER_MODESET))
3848 return 0;
3849
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003850 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003851 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003852}
3853
3854void
3855i915_gem_lastclose(struct drm_device *dev)
3856{
3857 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003858
Eric Anholte806b492009-01-22 09:56:58 -08003859 if (drm_core_check_feature(dev, DRIVER_MODESET))
3860 return;
3861
Keith Packard6dbe2772008-10-14 21:41:13 -07003862 ret = i915_gem_idle(dev);
3863 if (ret)
3864 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003865}
3866
Chris Wilson64193402010-10-24 12:38:05 +01003867static void
3868init_ring_lists(struct intel_ring_buffer *ring)
3869{
3870 INIT_LIST_HEAD(&ring->active_list);
3871 INIT_LIST_HEAD(&ring->request_list);
3872 INIT_LIST_HEAD(&ring->gpu_write_list);
3873}
3874
Eric Anholt673a3942008-07-30 12:06:12 -07003875void
3876i915_gem_load(struct drm_device *dev)
3877{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003878 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003879 drm_i915_private_t *dev_priv = dev->dev_private;
3880
Chris Wilson69dc4982010-10-19 10:36:51 +01003881 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003882 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3883 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003884 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003885 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003886 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003887 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003888 for (i = 0; i < I915_NUM_RINGS; i++)
3889 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003890 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003891 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003892 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3893 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003894 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003895
Dave Airlie94400122010-07-20 13:15:31 +10003896 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3897 if (IS_GEN3(dev)) {
3898 u32 tmp = I915_READ(MI_ARB_STATE);
3899 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3900 /* arb state is a masked write, so set bit + bit in mask */
3901 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3902 I915_WRITE(MI_ARB_STATE, tmp);
3903 }
3904 }
3905
Chris Wilson72bfa192010-12-19 11:42:05 +00003906 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3907
Jesse Barnesde151cf2008-11-12 10:03:55 -08003908 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003909 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3910 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003911
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003912 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003913 dev_priv->num_fence_regs = 16;
3914 else
3915 dev_priv->num_fence_regs = 8;
3916
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003917 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003918 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3919 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003920 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003921
Eric Anholt673a3942008-07-30 12:06:12 -07003922 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003923 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003924
Chris Wilsonce453d82011-02-21 14:43:56 +00003925 dev_priv->mm.interruptible = true;
3926
Chris Wilson17250b72010-10-28 12:51:39 +01003927 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3928 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3929 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003930}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003931
3932/*
3933 * Create a physically contiguous memory object for this object
3934 * e.g. for cursor + overlay regs
3935 */
Chris Wilson995b6762010-08-20 13:23:26 +01003936static int i915_gem_init_phys_object(struct drm_device *dev,
3937 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003938{
3939 drm_i915_private_t *dev_priv = dev->dev_private;
3940 struct drm_i915_gem_phys_object *phys_obj;
3941 int ret;
3942
3943 if (dev_priv->mm.phys_objs[id - 1] || !size)
3944 return 0;
3945
Eric Anholt9a298b22009-03-24 12:23:04 -07003946 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003947 if (!phys_obj)
3948 return -ENOMEM;
3949
3950 phys_obj->id = id;
3951
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003952 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003953 if (!phys_obj->handle) {
3954 ret = -ENOMEM;
3955 goto kfree_obj;
3956 }
3957#ifdef CONFIG_X86
3958 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3959#endif
3960
3961 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3962
3963 return 0;
3964kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003965 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003966 return ret;
3967}
3968
Chris Wilson995b6762010-08-20 13:23:26 +01003969static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003970{
3971 drm_i915_private_t *dev_priv = dev->dev_private;
3972 struct drm_i915_gem_phys_object *phys_obj;
3973
3974 if (!dev_priv->mm.phys_objs[id - 1])
3975 return;
3976
3977 phys_obj = dev_priv->mm.phys_objs[id - 1];
3978 if (phys_obj->cur_obj) {
3979 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3980 }
3981
3982#ifdef CONFIG_X86
3983 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3984#endif
3985 drm_pci_free(dev, phys_obj->handle);
3986 kfree(phys_obj);
3987 dev_priv->mm.phys_objs[id - 1] = NULL;
3988}
3989
3990void i915_gem_free_all_phys_object(struct drm_device *dev)
3991{
3992 int i;
3993
Dave Airlie260883c2009-01-22 17:58:49 +10003994 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003995 i915_gem_free_phys_object(dev, i);
3996}
3997
3998void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003999 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004000{
Chris Wilson05394f32010-11-08 19:18:58 +00004001 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004002 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004003 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004004 int page_count;
4005
Chris Wilson05394f32010-11-08 19:18:58 +00004006 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004007 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004008 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004009
Chris Wilson05394f32010-11-08 19:18:58 +00004010 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004011 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004012 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004013 if (!IS_ERR(page)) {
4014 char *dst = kmap_atomic(page);
4015 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4016 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004017
Chris Wilsone5281cc2010-10-28 13:45:36 +01004018 drm_clflush_pages(&page, 1);
4019
4020 set_page_dirty(page);
4021 mark_page_accessed(page);
4022 page_cache_release(page);
4023 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004024 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01004025 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01004026
Chris Wilson05394f32010-11-08 19:18:58 +00004027 obj->phys_obj->cur_obj = NULL;
4028 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004029}
4030
4031int
4032i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004033 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004034 int id,
4035 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004036{
Chris Wilson05394f32010-11-08 19:18:58 +00004037 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004038 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004039 int ret = 0;
4040 int page_count;
4041 int i;
4042
4043 if (id > I915_MAX_PHYS_OBJECT)
4044 return -EINVAL;
4045
Chris Wilson05394f32010-11-08 19:18:58 +00004046 if (obj->phys_obj) {
4047 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004048 return 0;
4049 i915_gem_detach_phys_object(dev, obj);
4050 }
4051
Dave Airlie71acb5e2008-12-30 20:31:46 +10004052 /* create a new object */
4053 if (!dev_priv->mm.phys_objs[id - 1]) {
4054 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004055 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004056 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004057 DRM_ERROR("failed to init phys object %d size: %zu\n",
4058 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004059 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004060 }
4061 }
4062
4063 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004064 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4065 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004066
Chris Wilson05394f32010-11-08 19:18:58 +00004067 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004068
4069 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004070 struct page *page;
4071 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004072
Hugh Dickins5949eac2011-06-27 16:18:18 -07004073 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004074 if (IS_ERR(page))
4075 return PTR_ERR(page);
4076
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004077 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004078 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004079 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004080 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004081
4082 mark_page_accessed(page);
4083 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004084 }
4085
4086 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004087}
4088
4089static int
Chris Wilson05394f32010-11-08 19:18:58 +00004090i915_gem_phys_pwrite(struct drm_device *dev,
4091 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004092 struct drm_i915_gem_pwrite *args,
4093 struct drm_file *file_priv)
4094{
Chris Wilson05394f32010-11-08 19:18:58 +00004095 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004096 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004097
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004098 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4099 unsigned long unwritten;
4100
4101 /* The physical object once assigned is fixed for the lifetime
4102 * of the obj, so we can safely drop the lock and continue
4103 * to access vaddr.
4104 */
4105 mutex_unlock(&dev->struct_mutex);
4106 unwritten = copy_from_user(vaddr, user_data, args->size);
4107 mutex_lock(&dev->struct_mutex);
4108 if (unwritten)
4109 return -EFAULT;
4110 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004111
Daniel Vetter40ce6572010-11-05 18:12:18 +01004112 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004113 return 0;
4114}
Eric Anholtb9624422009-06-03 07:27:35 +00004115
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004116void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004117{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004118 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004119
4120 /* Clean up our request list when the client is going away, so that
4121 * later retire_requests won't dereference our soon-to-be-gone
4122 * file_priv.
4123 */
Chris Wilson1c255952010-09-26 11:03:27 +01004124 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004125 while (!list_empty(&file_priv->mm.request_list)) {
4126 struct drm_i915_gem_request *request;
4127
4128 request = list_first_entry(&file_priv->mm.request_list,
4129 struct drm_i915_gem_request,
4130 client_list);
4131 list_del(&request->client_list);
4132 request->file_priv = NULL;
4133 }
Chris Wilson1c255952010-09-26 11:03:27 +01004134 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004135}
Chris Wilson31169712009-09-14 16:50:28 +01004136
Chris Wilson31169712009-09-14 16:50:28 +01004137static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004138i915_gpu_is_active(struct drm_device *dev)
4139{
4140 drm_i915_private_t *dev_priv = dev->dev_private;
4141 int lists_empty;
4142
Chris Wilson1637ef42010-04-20 17:10:35 +01004143 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004144 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004145
4146 return !lists_empty;
4147}
4148
4149static int
Ying Han1495f232011-05-24 17:12:27 -07004150i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004151{
Chris Wilson17250b72010-10-28 12:51:39 +01004152 struct drm_i915_private *dev_priv =
4153 container_of(shrinker,
4154 struct drm_i915_private,
4155 mm.inactive_shrinker);
4156 struct drm_device *dev = dev_priv->dev;
4157 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004158 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004159 int cnt;
4160
4161 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004162 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004163
4164 /* "fast-path" to count number of available objects */
4165 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004166 cnt = 0;
4167 list_for_each_entry(obj,
4168 &dev_priv->mm.inactive_list,
4169 mm_list)
4170 cnt++;
4171 mutex_unlock(&dev->struct_mutex);
4172 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004173 }
4174
Chris Wilson1637ef42010-04-20 17:10:35 +01004175rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004176 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004177 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004178
Chris Wilson17250b72010-10-28 12:51:39 +01004179 list_for_each_entry_safe(obj, next,
4180 &dev_priv->mm.inactive_list,
4181 mm_list) {
4182 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004183 if (i915_gem_object_unbind(obj) == 0 &&
4184 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004185 break;
Chris Wilson31169712009-09-14 16:50:28 +01004186 }
Chris Wilson31169712009-09-14 16:50:28 +01004187 }
4188
4189 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004190 cnt = 0;
4191 list_for_each_entry_safe(obj, next,
4192 &dev_priv->mm.inactive_list,
4193 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004194 if (nr_to_scan &&
4195 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004196 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004197 else
Chris Wilson17250b72010-10-28 12:51:39 +01004198 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004199 }
4200
Chris Wilson17250b72010-10-28 12:51:39 +01004201 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004202 /*
4203 * We are desperate for pages, so as a last resort, wait
4204 * for the GPU to finish and discard whatever we can.
4205 * This has a dramatic impact to reduce the number of
4206 * OOM-killer events whilst running the GPU aggressively.
4207 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004208 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004209 goto rescan;
4210 }
Chris Wilson17250b72010-10-28 12:51:39 +01004211 mutex_unlock(&dev->struct_mutex);
4212 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004213}