blob: 60ff1b63b568c464248fb5651d16fb550d54c69b [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,
Chris Wilsonce453d82011-02-21 14:43:56 +00001946 uint32_t seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001947{
Chris Wilsondb53a302011-02-03 11:57:46 +00001948 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001949 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001950 int ret = 0;
1951
1952 BUG_ON(seqno == 0);
1953
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001954 if (atomic_read(&dev_priv->mm.wedged)) {
1955 struct completion *x = &dev_priv->error_completion;
1956 bool recovery_complete;
1957 unsigned long flags;
1958
1959 /* Give the error handler a chance to run. */
1960 spin_lock_irqsave(&x->wait.lock, flags);
1961 recovery_complete = x->done > 0;
1962 spin_unlock_irqrestore(&x->wait.lock, flags);
1963
1964 return recovery_complete ? -EIO : -EAGAIN;
1965 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001966
Chris Wilson5d97eb62010-11-10 20:40:02 +00001967 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001968 struct drm_i915_gem_request *request;
1969
1970 request = kzalloc(sizeof(*request), GFP_KERNEL);
1971 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001972 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001973
Chris Wilsondb53a302011-02-03 11:57:46 +00001974 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001975 if (ret) {
1976 kfree(request);
1977 return ret;
1978 }
1979
1980 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001981 }
1982
Chris Wilson78501ea2010-10-27 12:18:21 +01001983 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001984 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001985 ier = I915_READ(DEIER) | I915_READ(GTIER);
1986 else
1987 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001988 if (!ier) {
1989 DRM_ERROR("something (likely vbetool) disabled "
1990 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001991 ring->dev->driver->irq_preinstall(ring->dev);
1992 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001993 }
1994
Chris Wilsondb53a302011-02-03 11:57:46 +00001995 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001996
Chris Wilsonb2223492010-10-27 15:27:33 +01001997 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001998 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001999 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002000 ret = wait_event_interruptible(ring->irq_queue,
2001 i915_seqno_passed(ring->get_seqno(ring), seqno)
2002 || atomic_read(&dev_priv->mm.wedged));
2003 else
2004 wait_event(ring->irq_queue,
2005 i915_seqno_passed(ring->get_seqno(ring), seqno)
2006 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002007
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002008 ring->irq_put(ring);
Chris Wilsonb5ba1772010-12-14 12:17:15 +00002009 } else if (wait_for(i915_seqno_passed(ring->get_seqno(ring),
2010 seqno) ||
2011 atomic_read(&dev_priv->mm.wedged), 3000))
2012 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01002013 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002014
Chris Wilsondb53a302011-02-03 11:57:46 +00002015 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002016 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002017 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002018 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002019
2020 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002021 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002022 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002023 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002024
2025 /* Directly dispatch request retiring. While we have the work queue
2026 * to handle this, the waiter on a request often wants an associated
2027 * buffer to have made it to the inactive list, and we would need
2028 * a separate wait queue to handle that.
Daniel Vettereb1711b2011-12-06 12:12:33 +01002029 *
2030 * To avoid a recursion with the ilk VT-d workaround (that calls
2031 * gpu_idle when unbinding objects with interruptible==false) don't
2032 * retire requests in that case (because it might call unbind if the
2033 * active list holds the last reference to the object).
Eric Anholt673a3942008-07-30 12:06:12 -07002034 */
Daniel Vettereb1711b2011-12-06 12:12:33 +01002035 if (ret == 0 && dev_priv->mm.interruptible)
Chris Wilsondb53a302011-02-03 11:57:46 +00002036 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002037
2038 return ret;
2039}
2040
Daniel Vetter48764bf2009-09-15 22:57:32 +02002041/**
Eric Anholt673a3942008-07-30 12:06:12 -07002042 * Ensures that all rendering to the object has completed and the object is
2043 * safe to unbind from the GTT or access from the CPU.
2044 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00002045int
Chris Wilsonce453d82011-02-21 14:43:56 +00002046i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002047{
Eric Anholt673a3942008-07-30 12:06:12 -07002048 int ret;
2049
Eric Anholte47c68e2008-11-14 13:35:19 -08002050 /* This function only exists to support waiting for existing rendering,
2051 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002052 */
Chris Wilson05394f32010-11-08 19:18:58 +00002053 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002054
2055 /* If there is rendering queued on the buffer being evicted, wait for
2056 * it.
2057 */
Chris Wilson05394f32010-11-08 19:18:58 +00002058 if (obj->active) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002059 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno);
Chris Wilson2cf34d72010-09-14 13:03:28 +01002060 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002061 return ret;
2062 }
2063
2064 return 0;
2065}
2066
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002067static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2068{
2069 u32 old_write_domain, old_read_domains;
2070
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002071 /* Act a barrier for all accesses through the GTT */
2072 mb();
2073
2074 /* Force a pagefault for domain tracking on next user access */
2075 i915_gem_release_mmap(obj);
2076
Keith Packardb97c3d92011-06-24 21:02:59 -07002077 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2078 return;
2079
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002080 old_read_domains = obj->base.read_domains;
2081 old_write_domain = obj->base.write_domain;
2082
2083 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2084 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2085
2086 trace_i915_gem_object_change_domain(obj,
2087 old_read_domains,
2088 old_write_domain);
2089}
2090
Eric Anholt673a3942008-07-30 12:06:12 -07002091/**
2092 * Unbinds an object from the GTT aperture.
2093 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002094int
Chris Wilson05394f32010-11-08 19:18:58 +00002095i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002096{
Eric Anholt673a3942008-07-30 12:06:12 -07002097 int ret = 0;
2098
Chris Wilson05394f32010-11-08 19:18:58 +00002099 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002100 return 0;
2101
Chris Wilson05394f32010-11-08 19:18:58 +00002102 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002103 DRM_ERROR("Attempting to unbind pinned buffer\n");
2104 return -EINVAL;
2105 }
2106
Chris Wilsona8198ee2011-04-13 22:04:09 +01002107 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01002108 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002109 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002110 /* Continue on if we fail due to EIO, the GPU is hung so we
2111 * should be safe and we need to cleanup or else we might
2112 * cause memory corruption through use-after-free.
2113 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002114
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002115 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002116
2117 /* Move the object to the CPU domain to ensure that
2118 * any possible CPU writes while it's not in the GTT
2119 * are flushed when we go to remap it.
2120 */
2121 if (ret == 0)
2122 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2123 if (ret == -ERESTARTSYS)
2124 return ret;
Chris Wilson812ed492010-09-30 15:08:57 +01002125 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002126 /* In the event of a disaster, abandon all caches and
2127 * hope for the best.
2128 */
Chris Wilson812ed492010-09-30 15:08:57 +01002129 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002130 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed492010-09-30 15:08:57 +01002131 }
Eric Anholt673a3942008-07-30 12:06:12 -07002132
Daniel Vetter96b47b62009-12-15 17:50:00 +01002133 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002134 ret = i915_gem_object_put_fence(obj);
2135 if (ret == -ERESTARTSYS)
2136 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002137
Chris Wilsondb53a302011-02-03 11:57:46 +00002138 trace_i915_gem_object_unbind(obj);
2139
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002140 i915_gem_gtt_unbind_object(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002141 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002142
Chris Wilson6299f992010-11-24 12:23:44 +00002143 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002144 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002145 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002146 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002147
Chris Wilson05394f32010-11-08 19:18:58 +00002148 drm_mm_put_block(obj->gtt_space);
2149 obj->gtt_space = NULL;
2150 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002151
Chris Wilson05394f32010-11-08 19:18:58 +00002152 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002153 i915_gem_object_truncate(obj);
2154
Chris Wilson8dc17752010-07-23 23:18:51 +01002155 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002156}
2157
Chris Wilson88241782011-01-07 17:09:48 +00002158int
Chris Wilsondb53a302011-02-03 11:57:46 +00002159i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002160 uint32_t invalidate_domains,
2161 uint32_t flush_domains)
2162{
Chris Wilson88241782011-01-07 17:09:48 +00002163 int ret;
2164
Chris Wilson36d527d2011-03-19 22:26:49 +00002165 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2166 return 0;
2167
Chris Wilsondb53a302011-02-03 11:57:46 +00002168 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2169
Chris Wilson88241782011-01-07 17:09:48 +00002170 ret = ring->flush(ring, invalidate_domains, flush_domains);
2171 if (ret)
2172 return ret;
2173
Chris Wilson36d527d2011-03-19 22:26:49 +00002174 if (flush_domains & I915_GEM_GPU_DOMAINS)
2175 i915_gem_process_flushing_list(ring, flush_domains);
2176
Chris Wilson88241782011-01-07 17:09:48 +00002177 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002178}
2179
Chris Wilsondb53a302011-02-03 11:57:46 +00002180static int i915_ring_idle(struct intel_ring_buffer *ring)
Chris Wilsona56ba562010-09-28 10:07:56 +01002181{
Chris Wilson88241782011-01-07 17:09:48 +00002182 int ret;
2183
Chris Wilson395b70b2010-10-28 21:28:46 +01002184 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002185 return 0;
2186
Chris Wilson88241782011-01-07 17:09:48 +00002187 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002188 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002189 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002190 if (ret)
2191 return ret;
2192 }
2193
Chris Wilsonce453d82011-02-21 14:43:56 +00002194 return i915_wait_request(ring, i915_gem_next_request_seqno(ring));
Chris Wilsona56ba562010-09-28 10:07:56 +01002195}
2196
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002197int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002198i915_gpu_idle(struct drm_device *dev)
2199{
2200 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002201 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002202
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002203 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002204 for (i = 0; i < I915_NUM_RINGS; i++) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002205 ret = i915_ring_idle(&dev_priv->ring[i]);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002206 if (ret)
2207 return ret;
2208 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002209
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002210 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002211}
2212
Daniel Vetterc6642782010-11-12 13:46:18 +00002213static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2214 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002215{
Chris Wilson05394f32010-11-08 19:18:58 +00002216 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002217 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002218 u32 size = obj->gtt_space->size;
2219 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002220 uint64_t val;
2221
Chris Wilson05394f32010-11-08 19:18:58 +00002222 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002223 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002224 val |= obj->gtt_offset & 0xfffff000;
2225 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002226 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2227
Chris Wilson05394f32010-11-08 19:18:58 +00002228 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002229 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2230 val |= I965_FENCE_REG_VALID;
2231
Daniel Vetterc6642782010-11-12 13:46:18 +00002232 if (pipelined) {
2233 int ret = intel_ring_begin(pipelined, 6);
2234 if (ret)
2235 return ret;
2236
2237 intel_ring_emit(pipelined, MI_NOOP);
2238 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2239 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2240 intel_ring_emit(pipelined, (u32)val);
2241 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2242 intel_ring_emit(pipelined, (u32)(val >> 32));
2243 intel_ring_advance(pipelined);
2244 } else
2245 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2246
2247 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002248}
2249
Daniel Vetterc6642782010-11-12 13:46:18 +00002250static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2251 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002252{
Chris Wilson05394f32010-11-08 19:18:58 +00002253 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002254 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002255 u32 size = obj->gtt_space->size;
2256 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002257 uint64_t val;
2258
Chris Wilson05394f32010-11-08 19:18:58 +00002259 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002260 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002261 val |= obj->gtt_offset & 0xfffff000;
2262 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2263 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002264 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2265 val |= I965_FENCE_REG_VALID;
2266
Daniel Vetterc6642782010-11-12 13:46:18 +00002267 if (pipelined) {
2268 int ret = intel_ring_begin(pipelined, 6);
2269 if (ret)
2270 return ret;
2271
2272 intel_ring_emit(pipelined, MI_NOOP);
2273 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2274 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2275 intel_ring_emit(pipelined, (u32)val);
2276 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2277 intel_ring_emit(pipelined, (u32)(val >> 32));
2278 intel_ring_advance(pipelined);
2279 } else
2280 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2281
2282 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002283}
2284
Daniel Vetterc6642782010-11-12 13:46:18 +00002285static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2286 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002287{
Chris Wilson05394f32010-11-08 19:18:58 +00002288 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002289 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002290 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002291 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002292 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002293
Daniel Vetterc6642782010-11-12 13:46:18 +00002294 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2295 (size & -size) != size ||
2296 (obj->gtt_offset & (size - 1)),
2297 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2298 obj->gtt_offset, obj->map_and_fenceable, size))
2299 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002300
Daniel Vetterc6642782010-11-12 13:46:18 +00002301 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002302 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002303 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002304 tile_width = 512;
2305
2306 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002307 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002308 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002309
Chris Wilson05394f32010-11-08 19:18:58 +00002310 val = obj->gtt_offset;
2311 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002312 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002313 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002314 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2315 val |= I830_FENCE_REG_VALID;
2316
Chris Wilson05394f32010-11-08 19:18:58 +00002317 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002318 if (fence_reg < 8)
2319 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002320 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002321 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002322
2323 if (pipelined) {
2324 int ret = intel_ring_begin(pipelined, 4);
2325 if (ret)
2326 return ret;
2327
2328 intel_ring_emit(pipelined, MI_NOOP);
2329 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2330 intel_ring_emit(pipelined, fence_reg);
2331 intel_ring_emit(pipelined, val);
2332 intel_ring_advance(pipelined);
2333 } else
2334 I915_WRITE(fence_reg, val);
2335
2336 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002337}
2338
Daniel Vetterc6642782010-11-12 13:46:18 +00002339static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2340 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002341{
Chris Wilson05394f32010-11-08 19:18:58 +00002342 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002343 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002344 u32 size = obj->gtt_space->size;
2345 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002346 uint32_t val;
2347 uint32_t pitch_val;
2348
Daniel Vetterc6642782010-11-12 13:46:18 +00002349 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2350 (size & -size) != size ||
2351 (obj->gtt_offset & (size - 1)),
2352 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2353 obj->gtt_offset, size))
2354 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002355
Chris Wilson05394f32010-11-08 19:18:58 +00002356 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002357 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002358
Chris Wilson05394f32010-11-08 19:18:58 +00002359 val = obj->gtt_offset;
2360 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002361 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002362 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002363 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2364 val |= I830_FENCE_REG_VALID;
2365
Daniel Vetterc6642782010-11-12 13:46:18 +00002366 if (pipelined) {
2367 int ret = intel_ring_begin(pipelined, 4);
2368 if (ret)
2369 return ret;
2370
2371 intel_ring_emit(pipelined, MI_NOOP);
2372 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2373 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2374 intel_ring_emit(pipelined, val);
2375 intel_ring_advance(pipelined);
2376 } else
2377 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2378
2379 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002380}
2381
Chris Wilsond9e86c02010-11-10 16:40:20 +00002382static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2383{
2384 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2385}
2386
2387static int
2388i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002389 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002390{
2391 int ret;
2392
2393 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002394 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002395 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002396 0, obj->base.write_domain);
2397 if (ret)
2398 return ret;
2399 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002400
2401 obj->fenced_gpu_access = false;
2402 }
2403
2404 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2405 if (!ring_passed_seqno(obj->last_fenced_ring,
2406 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002407 ret = i915_wait_request(obj->last_fenced_ring,
Chris Wilsonce453d82011-02-21 14:43:56 +00002408 obj->last_fenced_seqno);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002409 if (ret)
2410 return ret;
2411 }
2412
2413 obj->last_fenced_seqno = 0;
2414 obj->last_fenced_ring = NULL;
2415 }
2416
Chris Wilson63256ec2011-01-04 18:42:07 +00002417 /* Ensure that all CPU reads are completed before installing a fence
2418 * and all writes before removing the fence.
2419 */
2420 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2421 mb();
2422
Chris Wilsond9e86c02010-11-10 16:40:20 +00002423 return 0;
2424}
2425
2426int
2427i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2428{
2429 int ret;
2430
2431 if (obj->tiling_mode)
2432 i915_gem_release_mmap(obj);
2433
Chris Wilsonce453d82011-02-21 14:43:56 +00002434 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002435 if (ret)
2436 return ret;
2437
2438 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2439 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2440 i915_gem_clear_fence_reg(obj->base.dev,
2441 &dev_priv->fence_regs[obj->fence_reg]);
2442
2443 obj->fence_reg = I915_FENCE_REG_NONE;
2444 }
2445
2446 return 0;
2447}
2448
2449static struct drm_i915_fence_reg *
2450i915_find_fence_reg(struct drm_device *dev,
2451 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002452{
Daniel Vetterae3db242010-02-19 11:51:58 +01002453 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002454 struct drm_i915_fence_reg *reg, *first, *avail;
2455 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002456
2457 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002458 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002459 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2460 reg = &dev_priv->fence_regs[i];
2461 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002462 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002463
Chris Wilson05394f32010-11-08 19:18:58 +00002464 if (!reg->obj->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002465 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002466 }
2467
Chris Wilsond9e86c02010-11-10 16:40:20 +00002468 if (avail == NULL)
2469 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002470
2471 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002472 avail = first = NULL;
2473 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
2474 if (reg->obj->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002475 continue;
2476
Chris Wilsond9e86c02010-11-10 16:40:20 +00002477 if (first == NULL)
2478 first = reg;
2479
2480 if (!pipelined ||
2481 !reg->obj->last_fenced_ring ||
2482 reg->obj->last_fenced_ring == pipelined) {
2483 avail = reg;
2484 break;
2485 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002486 }
2487
Chris Wilsond9e86c02010-11-10 16:40:20 +00002488 if (avail == NULL)
2489 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002490
Chris Wilsona00b10c2010-09-24 21:15:47 +01002491 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002492}
2493
Jesse Barnesde151cf2008-11-12 10:03:55 -08002494/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002495 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002496 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002497 * @pipelined: ring on which to queue the change, or NULL for CPU access
2498 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002499 *
2500 * When mapping objects through the GTT, userspace wants to be able to write
2501 * to them without having to worry about swizzling if the object is tiled.
2502 *
2503 * This function walks the fence regs looking for a free one for @obj,
2504 * stealing one if it can't find any.
2505 *
2506 * It then sets up the reg based on the object's properties: address, pitch
2507 * and tiling format.
2508 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002509int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002510i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002511 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002512{
Chris Wilson05394f32010-11-08 19:18:58 +00002513 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002514 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002515 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002516 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002517
Chris Wilson6bda10d2010-12-05 21:04:18 +00002518 /* XXX disable pipelining. There are bugs. Shocking. */
2519 pipelined = NULL;
2520
Chris Wilsond9e86c02010-11-10 16:40:20 +00002521 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002522 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2523 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002524 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002525
Chris Wilson29c5a582011-03-17 15:23:22 +00002526 if (obj->tiling_changed) {
2527 ret = i915_gem_object_flush_fence(obj, pipelined);
2528 if (ret)
2529 return ret;
2530
2531 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2532 pipelined = NULL;
2533
2534 if (pipelined) {
2535 reg->setup_seqno =
2536 i915_gem_next_request_seqno(pipelined);
2537 obj->last_fenced_seqno = reg->setup_seqno;
2538 obj->last_fenced_ring = pipelined;
2539 }
2540
2541 goto update;
2542 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002543
2544 if (!pipelined) {
2545 if (reg->setup_seqno) {
2546 if (!ring_passed_seqno(obj->last_fenced_ring,
2547 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002548 ret = i915_wait_request(obj->last_fenced_ring,
Chris Wilsonce453d82011-02-21 14:43:56 +00002549 reg->setup_seqno);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002550 if (ret)
2551 return ret;
2552 }
2553
2554 reg->setup_seqno = 0;
2555 }
2556 } else if (obj->last_fenced_ring &&
2557 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002558 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002559 if (ret)
2560 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002561 }
2562
Eric Anholta09ba7f2009-08-29 12:49:51 -07002563 return 0;
2564 }
2565
Chris Wilsond9e86c02010-11-10 16:40:20 +00002566 reg = i915_find_fence_reg(dev, pipelined);
2567 if (reg == NULL)
2568 return -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002569
Chris Wilsonce453d82011-02-21 14:43:56 +00002570 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002571 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002572 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002573
Chris Wilsond9e86c02010-11-10 16:40:20 +00002574 if (reg->obj) {
2575 struct drm_i915_gem_object *old = reg->obj;
2576
2577 drm_gem_object_reference(&old->base);
2578
2579 if (old->tiling_mode)
2580 i915_gem_release_mmap(old);
2581
Chris Wilsonce453d82011-02-21 14:43:56 +00002582 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002583 if (ret) {
2584 drm_gem_object_unreference(&old->base);
2585 return ret;
2586 }
2587
2588 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2589 pipelined = NULL;
2590
2591 old->fence_reg = I915_FENCE_REG_NONE;
2592 old->last_fenced_ring = pipelined;
2593 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002594 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002595
2596 drm_gem_object_unreference(&old->base);
2597 } else if (obj->last_fenced_seqno == 0)
2598 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002599
Jesse Barnesde151cf2008-11-12 10:03:55 -08002600 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002601 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2602 obj->fence_reg = reg - dev_priv->fence_regs;
2603 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002604
Chris Wilsond9e86c02010-11-10 16:40:20 +00002605 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002606 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002607 obj->last_fenced_seqno = reg->setup_seqno;
2608
2609update:
2610 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002611 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc2011-05-06 13:55:53 -07002612 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002613 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002614 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002615 break;
2616 case 5:
2617 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002618 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002619 break;
2620 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002621 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002622 break;
2623 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002624 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002625 break;
2626 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002627
Daniel Vetterc6642782010-11-12 13:46:18 +00002628 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002629}
2630
2631/**
2632 * i915_gem_clear_fence_reg - clear out fence register info
2633 * @obj: object to clear
2634 *
2635 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002636 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002637 */
2638static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002639i915_gem_clear_fence_reg(struct drm_device *dev,
2640 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002641{
Jesse Barnes79e53942008-11-07 14:24:08 -08002642 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002643 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002644
Chris Wilsone259bef2010-09-17 00:32:02 +01002645 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc2011-05-06 13:55:53 -07002646 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002647 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002648 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002649 break;
2650 case 5:
2651 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002652 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002653 break;
2654 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002655 if (fence_reg >= 8)
2656 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002657 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002658 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002659 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002660
2661 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002662 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002663 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002664
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002665 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002666 reg->obj = NULL;
2667 reg->setup_seqno = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002668}
2669
2670/**
Eric Anholt673a3942008-07-30 12:06:12 -07002671 * Finds free space in the GTT aperture and binds the object there.
2672 */
2673static int
Chris Wilson05394f32010-11-08 19:18:58 +00002674i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002675 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002676 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002677{
Chris Wilson05394f32010-11-08 19:18:58 +00002678 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002679 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002680 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002681 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002682 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002683 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002684 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002685
Chris Wilson05394f32010-11-08 19:18:58 +00002686 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002687 DRM_ERROR("Attempting to bind a purgeable object\n");
2688 return -EINVAL;
2689 }
2690
Chris Wilsone28f8712011-07-18 13:11:49 -07002691 fence_size = i915_gem_get_gtt_size(dev,
2692 obj->base.size,
2693 obj->tiling_mode);
2694 fence_alignment = i915_gem_get_gtt_alignment(dev,
2695 obj->base.size,
2696 obj->tiling_mode);
2697 unfenced_alignment =
2698 i915_gem_get_unfenced_gtt_alignment(dev,
2699 obj->base.size,
2700 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002701
Eric Anholt673a3942008-07-30 12:06:12 -07002702 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002703 alignment = map_and_fenceable ? fence_alignment :
2704 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002705 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002706 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2707 return -EINVAL;
2708 }
2709
Chris Wilson05394f32010-11-08 19:18:58 +00002710 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002711
Chris Wilson654fc602010-05-27 13:18:21 +01002712 /* If the object is bigger than the entire aperture, reject it early
2713 * before evicting everything in a vain attempt to find space.
2714 */
Chris Wilson05394f32010-11-08 19:18:58 +00002715 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002716 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002717 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2718 return -E2BIG;
2719 }
2720
Eric Anholt673a3942008-07-30 12:06:12 -07002721 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002722 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002723 free_space =
2724 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002725 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002726 dev_priv->mm.gtt_mappable_end,
2727 0);
2728 else
2729 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002730 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002731
2732 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002733 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002734 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002735 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002736 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002737 dev_priv->mm.gtt_mappable_end,
2738 0);
2739 else
Chris Wilson05394f32010-11-08 19:18:58 +00002740 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002741 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002742 }
Chris Wilson05394f32010-11-08 19:18:58 +00002743 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002744 /* If the gtt is empty and we're still having trouble
2745 * fitting our object in, we're out of memory.
2746 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002747 ret = i915_gem_evict_something(dev, size, alignment,
2748 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002749 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002750 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002751
Eric Anholt673a3942008-07-30 12:06:12 -07002752 goto search_free;
2753 }
2754
Chris Wilsone5281cc2010-10-28 13:45:36 +01002755 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002756 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002757 drm_mm_put_block(obj->gtt_space);
2758 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002759
2760 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002761 /* first try to reclaim some memory by clearing the GTT */
2762 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002763 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002764 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002765 if (gfpmask) {
2766 gfpmask = 0;
2767 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002768 }
2769
Chris Wilson809b6332011-01-10 17:33:15 +00002770 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002771 }
2772
2773 goto search_free;
2774 }
2775
Eric Anholt673a3942008-07-30 12:06:12 -07002776 return ret;
2777 }
2778
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002779 ret = i915_gem_gtt_bind_object(obj);
2780 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002781 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002782 drm_mm_put_block(obj->gtt_space);
2783 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002784
Chris Wilson809b6332011-01-10 17:33:15 +00002785 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002786 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002787
2788 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002789 }
Eric Anholt673a3942008-07-30 12:06:12 -07002790
Chris Wilson6299f992010-11-24 12:23:44 +00002791 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002792 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002793
Eric Anholt673a3942008-07-30 12:06:12 -07002794 /* Assert that the object is not currently in any GPU domain. As it
2795 * wasn't in the GTT, there shouldn't be any way it could have been in
2796 * a GPU cache
2797 */
Chris Wilson05394f32010-11-08 19:18:58 +00002798 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2799 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002800
Chris Wilson6299f992010-11-24 12:23:44 +00002801 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002802
Daniel Vetter75e9e912010-11-04 17:11:09 +01002803 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002804 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002805 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002806
Daniel Vetter75e9e912010-11-04 17:11:09 +01002807 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002808 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002809
Chris Wilson05394f32010-11-08 19:18:58 +00002810 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002811
Chris Wilsondb53a302011-02-03 11:57:46 +00002812 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002813 return 0;
2814}
2815
2816void
Chris Wilson05394f32010-11-08 19:18:58 +00002817i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002818{
Eric Anholt673a3942008-07-30 12:06:12 -07002819 /* If we don't have a page list set up, then we're not pinned
2820 * to GPU, and we can ignore the cache flush because it'll happen
2821 * again at bind time.
2822 */
Chris Wilson05394f32010-11-08 19:18:58 +00002823 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002824 return;
2825
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002826 /* If the GPU is snooping the contents of the CPU cache,
2827 * we do not need to manually clear the CPU cache lines. However,
2828 * the caches are only snooped when the render cache is
2829 * flushed/invalidated. As we always have to emit invalidations
2830 * and flushes when moving into and out of the RENDER domain, correct
2831 * snooping behaviour occurs naturally as the result of our domain
2832 * tracking.
2833 */
2834 if (obj->cache_level != I915_CACHE_NONE)
2835 return;
2836
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002837 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002838
Chris Wilson05394f32010-11-08 19:18:58 +00002839 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002840}
2841
Eric Anholte47c68e2008-11-14 13:35:19 -08002842/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002843static int
Chris Wilson3619df02010-11-28 15:37:17 +00002844i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002845{
Chris Wilson05394f32010-11-08 19:18:58 +00002846 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002847 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002848
2849 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002850 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002851}
2852
2853/** Flushes the GTT write domain for the object if it's dirty. */
2854static void
Chris Wilson05394f32010-11-08 19:18:58 +00002855i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002856{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002857 uint32_t old_write_domain;
2858
Chris Wilson05394f32010-11-08 19:18:58 +00002859 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002860 return;
2861
Chris Wilson63256ec2011-01-04 18:42:07 +00002862 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002863 * to it immediately go to main memory as far as we know, so there's
2864 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002865 *
2866 * However, we do have to enforce the order so that all writes through
2867 * the GTT land before any writes to the device, such as updates to
2868 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002869 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002870 wmb();
2871
Chris Wilson05394f32010-11-08 19:18:58 +00002872 old_write_domain = obj->base.write_domain;
2873 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002874
2875 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002876 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002877 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002878}
2879
2880/** Flushes the CPU write domain for the object if it's dirty. */
2881static void
Chris Wilson05394f32010-11-08 19:18:58 +00002882i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002883{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002884 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002885
Chris Wilson05394f32010-11-08 19:18:58 +00002886 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002887 return;
2888
2889 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002890 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002891 old_write_domain = obj->base.write_domain;
2892 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002893
2894 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002895 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002896 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002897}
2898
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002899/**
2900 * Moves a single object to the GTT read, and possibly write domain.
2901 *
2902 * This function returns when the move is complete, including waiting on
2903 * flushes to occur.
2904 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002905int
Chris Wilson20217462010-11-23 15:26:33 +00002906i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002907{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002908 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002909 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002910
Eric Anholt02354392008-11-26 13:58:13 -08002911 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002912 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002913 return -EINVAL;
2914
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002915 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2916 return 0;
2917
Chris Wilson88241782011-01-07 17:09:48 +00002918 ret = i915_gem_object_flush_gpu_write_domain(obj);
2919 if (ret)
2920 return ret;
2921
Chris Wilson87ca9c82010-12-02 09:42:56 +00002922 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002923 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002924 if (ret)
2925 return ret;
2926 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002927
Chris Wilson72133422010-09-13 23:56:38 +01002928 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002929
Chris Wilson05394f32010-11-08 19:18:58 +00002930 old_write_domain = obj->base.write_domain;
2931 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002932
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002933 /* It should now be out of any other write domains, and we can update
2934 * the domain values for our changes.
2935 */
Chris Wilson05394f32010-11-08 19:18:58 +00002936 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2937 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002938 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002939 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2940 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2941 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002942 }
2943
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002944 trace_i915_gem_object_change_domain(obj,
2945 old_read_domains,
2946 old_write_domain);
2947
Eric Anholte47c68e2008-11-14 13:35:19 -08002948 return 0;
2949}
2950
Chris Wilsone4ffd172011-04-04 09:44:39 +01002951int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2952 enum i915_cache_level cache_level)
2953{
2954 int ret;
2955
2956 if (obj->cache_level == cache_level)
2957 return 0;
2958
2959 if (obj->pin_count) {
2960 DRM_DEBUG("can not change the cache level of pinned objects\n");
2961 return -EBUSY;
2962 }
2963
2964 if (obj->gtt_space) {
2965 ret = i915_gem_object_finish_gpu(obj);
2966 if (ret)
2967 return ret;
2968
2969 i915_gem_object_finish_gtt(obj);
2970
2971 /* Before SandyBridge, you could not use tiling or fence
2972 * registers with snooped memory, so relinquish any fences
2973 * currently pointing to our region in the aperture.
2974 */
2975 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2976 ret = i915_gem_object_put_fence(obj);
2977 if (ret)
2978 return ret;
2979 }
2980
2981 i915_gem_gtt_rebind_object(obj, cache_level);
2982 }
2983
2984 if (cache_level == I915_CACHE_NONE) {
2985 u32 old_read_domains, old_write_domain;
2986
2987 /* If we're coming from LLC cached, then we haven't
2988 * actually been tracking whether the data is in the
2989 * CPU cache or not, since we only allow one bit set
2990 * in obj->write_domain and have been skipping the clflushes.
2991 * Just set it to the CPU cache for now.
2992 */
2993 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2994 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2995
2996 old_read_domains = obj->base.read_domains;
2997 old_write_domain = obj->base.write_domain;
2998
2999 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3000 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3001
3002 trace_i915_gem_object_change_domain(obj,
3003 old_read_domains,
3004 old_write_domain);
3005 }
3006
3007 obj->cache_level = cache_level;
3008 return 0;
3009}
3010
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003011/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003012 * Prepare buffer for display plane (scanout, cursors, etc).
3013 * Can be called from an uninterruptible phase (modesetting) and allows
3014 * any flushes to be pipelined (for pageflips).
3015 *
3016 * For the display plane, we want to be in the GTT but out of any write
3017 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
3018 * ability to pipeline the waits, pinning and any additional subtleties
3019 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003020 */
3021int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003022i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3023 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003024 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003025{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003026 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003027 int ret;
3028
Chris Wilson88241782011-01-07 17:09:48 +00003029 ret = i915_gem_object_flush_gpu_write_domain(obj);
3030 if (ret)
3031 return ret;
3032
Chris Wilson0be73282010-12-06 14:36:27 +00003033 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00003034 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07003035 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003036 return ret;
3037 }
3038
Eric Anholta7ef0642011-03-29 16:59:54 -07003039 /* The display engine is not coherent with the LLC cache on gen6. As
3040 * a result, we make sure that the pinning that is about to occur is
3041 * done with uncached PTEs. This is lowest common denominator for all
3042 * chipsets.
3043 *
3044 * However for gen6+, we could do better by using the GFDT bit instead
3045 * of uncaching, which would allow us to flush all the LLC-cached data
3046 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3047 */
3048 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3049 if (ret)
3050 return ret;
3051
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003052 /* As the user may map the buffer once pinned in the display plane
3053 * (e.g. libkms for the bootup splash), we have to ensure that we
3054 * always use map_and_fenceable for all scanout buffers.
3055 */
3056 ret = i915_gem_object_pin(obj, alignment, true);
3057 if (ret)
3058 return ret;
3059
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003060 i915_gem_object_flush_cpu_write_domain(obj);
3061
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003062 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003063 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003064
3065 /* It should now be out of any other write domains, and we can update
3066 * the domain values for our changes.
3067 */
3068 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003069 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003070
3071 trace_i915_gem_object_change_domain(obj,
3072 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003073 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003074
3075 return 0;
3076}
3077
Chris Wilson85345512010-11-13 09:49:11 +00003078int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003079i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003080{
Chris Wilson88241782011-01-07 17:09:48 +00003081 int ret;
3082
Chris Wilsona8198ee2011-04-13 22:04:09 +01003083 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003084 return 0;
3085
Chris Wilson88241782011-01-07 17:09:48 +00003086 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003087 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00003088 if (ret)
3089 return ret;
3090 }
Chris Wilson85345512010-11-13 09:49:11 +00003091
Chris Wilsona8198ee2011-04-13 22:04:09 +01003092 /* Ensure that we invalidate the GPU's caches and TLBs. */
3093 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
3094
Chris Wilsonce453d82011-02-21 14:43:56 +00003095 return i915_gem_object_wait_rendering(obj);
Chris Wilson85345512010-11-13 09:49:11 +00003096}
3097
Eric Anholte47c68e2008-11-14 13:35:19 -08003098/**
3099 * Moves a single object to the CPU read, and possibly write domain.
3100 *
3101 * This function returns when the move is complete, including waiting on
3102 * flushes to occur.
3103 */
3104static int
Chris Wilson919926a2010-11-12 13:42:53 +00003105i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003106{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003107 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003108 int ret;
3109
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003110 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3111 return 0;
3112
Chris Wilson88241782011-01-07 17:09:48 +00003113 ret = i915_gem_object_flush_gpu_write_domain(obj);
3114 if (ret)
3115 return ret;
3116
Chris Wilsonce453d82011-02-21 14:43:56 +00003117 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003118 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003119 return ret;
3120
3121 i915_gem_object_flush_gtt_write_domain(obj);
3122
3123 /* If we have a partially-valid cache of the object in the CPU,
3124 * finish invalidating it and free the per-page flags.
3125 */
3126 i915_gem_object_set_to_full_cpu_read_domain(obj);
3127
Chris Wilson05394f32010-11-08 19:18:58 +00003128 old_write_domain = obj->base.write_domain;
3129 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003130
Eric Anholte47c68e2008-11-14 13:35:19 -08003131 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003132 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003133 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003134
Chris Wilson05394f32010-11-08 19:18:58 +00003135 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003136 }
3137
3138 /* It should now be out of any other write domains, and we can update
3139 * the domain values for our changes.
3140 */
Chris Wilson05394f32010-11-08 19:18:58 +00003141 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003142
3143 /* If we're writing through the CPU, then the GPU read domains will
3144 * need to be invalidated at next use.
3145 */
3146 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003147 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3148 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003149 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003150
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003151 trace_i915_gem_object_change_domain(obj,
3152 old_read_domains,
3153 old_write_domain);
3154
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003155 return 0;
3156}
3157
Eric Anholt673a3942008-07-30 12:06:12 -07003158/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003159 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003160 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003161 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3162 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3163 */
3164static void
Chris Wilson05394f32010-11-08 19:18:58 +00003165i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003166{
Chris Wilson05394f32010-11-08 19:18:58 +00003167 if (!obj->page_cpu_valid)
Eric Anholte47c68e2008-11-14 13:35:19 -08003168 return;
3169
3170 /* If we're partially in the CPU read domain, finish moving it in.
3171 */
Chris Wilson05394f32010-11-08 19:18:58 +00003172 if (obj->base.read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003173 int i;
3174
Chris Wilson05394f32010-11-08 19:18:58 +00003175 for (i = 0; i <= (obj->base.size - 1) / PAGE_SIZE; i++) {
3176 if (obj->page_cpu_valid[i])
Eric Anholte47c68e2008-11-14 13:35:19 -08003177 continue;
Chris Wilson05394f32010-11-08 19:18:58 +00003178 drm_clflush_pages(obj->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003179 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003180 }
3181
3182 /* Free the page_cpu_valid mappings which are now stale, whether
3183 * or not we've got I915_GEM_DOMAIN_CPU.
3184 */
Chris Wilson05394f32010-11-08 19:18:58 +00003185 kfree(obj->page_cpu_valid);
3186 obj->page_cpu_valid = NULL;
Eric Anholte47c68e2008-11-14 13:35:19 -08003187}
3188
3189/**
3190 * Set the CPU read domain on a range of the object.
3191 *
3192 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3193 * not entirely valid. The page_cpu_valid member of the object flags which
3194 * pages have been flushed, and will be respected by
3195 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3196 * of the whole object.
3197 *
3198 * This function returns when the move is complete, including waiting on
3199 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003200 */
3201static int
Chris Wilson05394f32010-11-08 19:18:58 +00003202i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -08003203 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003204{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003205 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003206 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003207
Chris Wilson05394f32010-11-08 19:18:58 +00003208 if (offset == 0 && size == obj->base.size)
Eric Anholte47c68e2008-11-14 13:35:19 -08003209 return i915_gem_object_set_to_cpu_domain(obj, 0);
3210
Chris Wilson88241782011-01-07 17:09:48 +00003211 ret = i915_gem_object_flush_gpu_write_domain(obj);
3212 if (ret)
3213 return ret;
3214
Chris Wilsonce453d82011-02-21 14:43:56 +00003215 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003216 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003217 return ret;
Daniel Vetterde18a292010-11-27 22:30:41 +01003218
Eric Anholte47c68e2008-11-14 13:35:19 -08003219 i915_gem_object_flush_gtt_write_domain(obj);
3220
3221 /* If we're already fully in the CPU read domain, we're done. */
Chris Wilson05394f32010-11-08 19:18:58 +00003222 if (obj->page_cpu_valid == NULL &&
3223 (obj->base.read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003224 return 0;
3225
Eric Anholte47c68e2008-11-14 13:35:19 -08003226 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3227 * newly adding I915_GEM_DOMAIN_CPU
3228 */
Chris Wilson05394f32010-11-08 19:18:58 +00003229 if (obj->page_cpu_valid == NULL) {
3230 obj->page_cpu_valid = kzalloc(obj->base.size / PAGE_SIZE,
3231 GFP_KERNEL);
3232 if (obj->page_cpu_valid == NULL)
Eric Anholte47c68e2008-11-14 13:35:19 -08003233 return -ENOMEM;
Chris Wilson05394f32010-11-08 19:18:58 +00003234 } else if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
3235 memset(obj->page_cpu_valid, 0, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003236
3237 /* Flush the cache on any pages that are still invalid from the CPU's
3238 * perspective.
3239 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003240 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3241 i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003242 if (obj->page_cpu_valid[i])
Eric Anholt673a3942008-07-30 12:06:12 -07003243 continue;
3244
Chris Wilson05394f32010-11-08 19:18:58 +00003245 drm_clflush_pages(obj->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003246
Chris Wilson05394f32010-11-08 19:18:58 +00003247 obj->page_cpu_valid[i] = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003248 }
3249
Eric Anholte47c68e2008-11-14 13:35:19 -08003250 /* It should now be out of any other write domains, and we can update
3251 * the domain values for our changes.
3252 */
Chris Wilson05394f32010-11-08 19:18:58 +00003253 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003254
Chris Wilson05394f32010-11-08 19:18:58 +00003255 old_read_domains = obj->base.read_domains;
3256 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003257
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003258 trace_i915_gem_object_change_domain(obj,
3259 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003260 obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003261
Eric Anholt673a3942008-07-30 12:06:12 -07003262 return 0;
3263}
3264
Eric Anholt673a3942008-07-30 12:06:12 -07003265/* Throttle our rendering by waiting until the ring has completed our requests
3266 * emitted over 20 msec ago.
3267 *
Eric Anholtb9624422009-06-03 07:27:35 +00003268 * Note that if we were to use the current jiffies each time around the loop,
3269 * we wouldn't escape the function with any frames outstanding if the time to
3270 * render a frame was over 20ms.
3271 *
Eric Anholt673a3942008-07-30 12:06:12 -07003272 * This should get us reasonable parallelism between CPU and GPU but also
3273 * relatively low latency when blocking on a particular request to finish.
3274 */
3275static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003276i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003277{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003278 struct drm_i915_private *dev_priv = dev->dev_private;
3279 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003280 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003281 struct drm_i915_gem_request *request;
3282 struct intel_ring_buffer *ring = NULL;
3283 u32 seqno = 0;
3284 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003285
Chris Wilsone110e8d2011-01-26 15:39:14 +00003286 if (atomic_read(&dev_priv->mm.wedged))
3287 return -EIO;
3288
Chris Wilson1c255952010-09-26 11:03:27 +01003289 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003290 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003291 if (time_after_eq(request->emitted_jiffies, recent_enough))
3292 break;
3293
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003294 ring = request->ring;
3295 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003296 }
Chris Wilson1c255952010-09-26 11:03:27 +01003297 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003298
3299 if (seqno == 0)
3300 return 0;
3301
3302 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003303 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003304 /* And wait for the seqno passing without holding any locks and
3305 * causing extra latency for others. This is safe as the irq
3306 * generation is designed to be run atomically and so is
3307 * lockless.
3308 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003309 if (ring->irq_get(ring)) {
3310 ret = wait_event_interruptible(ring->irq_queue,
3311 i915_seqno_passed(ring->get_seqno(ring), seqno)
3312 || atomic_read(&dev_priv->mm.wedged));
3313 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003314
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003315 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3316 ret = -EIO;
3317 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003318 }
3319
3320 if (ret == 0)
3321 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003322
Eric Anholt673a3942008-07-30 12:06:12 -07003323 return ret;
3324}
3325
Eric Anholt673a3942008-07-30 12:06:12 -07003326int
Chris Wilson05394f32010-11-08 19:18:58 +00003327i915_gem_object_pin(struct drm_i915_gem_object *obj,
3328 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003329 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003330{
Chris Wilson05394f32010-11-08 19:18:58 +00003331 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003332 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003333 int ret;
3334
Chris Wilson05394f32010-11-08 19:18:58 +00003335 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003336 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003337
Chris Wilson05394f32010-11-08 19:18:58 +00003338 if (obj->gtt_space != NULL) {
3339 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3340 (map_and_fenceable && !obj->map_and_fenceable)) {
3341 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003342 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003343 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3344 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003345 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003346 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003347 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003348 ret = i915_gem_object_unbind(obj);
3349 if (ret)
3350 return ret;
3351 }
3352 }
3353
Chris Wilson05394f32010-11-08 19:18:58 +00003354 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003355 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003356 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003357 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003358 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003359 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003360
Chris Wilson05394f32010-11-08 19:18:58 +00003361 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003362 if (!obj->active)
3363 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003364 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003365 }
Chris Wilson6299f992010-11-24 12:23:44 +00003366 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003367
Chris Wilson23bc5982010-09-29 16:10:57 +01003368 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003369 return 0;
3370}
3371
3372void
Chris Wilson05394f32010-11-08 19:18:58 +00003373i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003374{
Chris Wilson05394f32010-11-08 19:18:58 +00003375 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003376 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003377
Chris Wilson23bc5982010-09-29 16:10:57 +01003378 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003379 BUG_ON(obj->pin_count == 0);
3380 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003381
Chris Wilson05394f32010-11-08 19:18:58 +00003382 if (--obj->pin_count == 0) {
3383 if (!obj->active)
3384 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003385 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003386 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003387 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003388 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003389}
3390
3391int
3392i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003393 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003394{
3395 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003396 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003397 int ret;
3398
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003399 ret = i915_mutex_lock_interruptible(dev);
3400 if (ret)
3401 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003402
Chris Wilson05394f32010-11-08 19:18:58 +00003403 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003404 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003405 ret = -ENOENT;
3406 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003407 }
Eric Anholt673a3942008-07-30 12:06:12 -07003408
Chris Wilson05394f32010-11-08 19:18:58 +00003409 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003410 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003411 ret = -EINVAL;
3412 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003413 }
3414
Chris Wilson05394f32010-11-08 19:18:58 +00003415 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003416 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3417 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003418 ret = -EINVAL;
3419 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003420 }
3421
Chris Wilson05394f32010-11-08 19:18:58 +00003422 obj->user_pin_count++;
3423 obj->pin_filp = file;
3424 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003425 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003426 if (ret)
3427 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003428 }
3429
3430 /* XXX - flush the CPU caches for pinned objects
3431 * as the X server doesn't manage domains yet
3432 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003433 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003434 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003435out:
Chris Wilson05394f32010-11-08 19:18:58 +00003436 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003437unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003438 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003439 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003440}
3441
3442int
3443i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003444 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003445{
3446 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003447 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003448 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003449
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003450 ret = i915_mutex_lock_interruptible(dev);
3451 if (ret)
3452 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003453
Chris Wilson05394f32010-11-08 19:18:58 +00003454 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003455 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003456 ret = -ENOENT;
3457 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003458 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003459
Chris Wilson05394f32010-11-08 19:18:58 +00003460 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003461 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3462 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003463 ret = -EINVAL;
3464 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003465 }
Chris Wilson05394f32010-11-08 19:18:58 +00003466 obj->user_pin_count--;
3467 if (obj->user_pin_count == 0) {
3468 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003469 i915_gem_object_unpin(obj);
3470 }
Eric Anholt673a3942008-07-30 12:06:12 -07003471
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003472out:
Chris Wilson05394f32010-11-08 19:18:58 +00003473 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003474unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003475 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003476 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003477}
3478
3479int
3480i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003481 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003482{
3483 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003484 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003485 int ret;
3486
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003487 ret = i915_mutex_lock_interruptible(dev);
3488 if (ret)
3489 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003490
Chris Wilson05394f32010-11-08 19:18:58 +00003491 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003492 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003493 ret = -ENOENT;
3494 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003495 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003496
Chris Wilson0be555b2010-08-04 15:36:30 +01003497 /* Count all active objects as busy, even if they are currently not used
3498 * by the gpu. Users of this interface expect objects to eventually
3499 * become non-busy without any further actions, therefore emit any
3500 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003501 */
Chris Wilson05394f32010-11-08 19:18:58 +00003502 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003503 if (args->busy) {
3504 /* Unconditionally flush objects, even when the gpu still uses this
3505 * object. Userspace calling this function indicates that it wants to
3506 * use this buffer rather sooner than later, so issuing the required
3507 * flush earlier is beneficial.
3508 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003509 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003510 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003511 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003512 } else if (obj->ring->outstanding_lazy_request ==
3513 obj->last_rendering_seqno) {
3514 struct drm_i915_gem_request *request;
3515
Chris Wilson7a194872010-12-07 10:38:40 +00003516 /* This ring is not being cleared by active usage,
3517 * so emit a request to do so.
3518 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003519 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003520 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003521 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003522 if (ret)
3523 kfree(request);
3524 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003525 ret = -ENOMEM;
3526 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003527
3528 /* Update the active list for the hardware's current position.
3529 * Otherwise this only updates on a delayed timer or when irqs
3530 * are actually unmasked, and our working set ends up being
3531 * larger than required.
3532 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003533 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003534
Chris Wilson05394f32010-11-08 19:18:58 +00003535 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003536 }
Eric Anholt673a3942008-07-30 12:06:12 -07003537
Chris Wilson05394f32010-11-08 19:18:58 +00003538 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003539unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003540 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003541 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003542}
3543
3544int
3545i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3546 struct drm_file *file_priv)
3547{
Akshay Joshi0206e352011-08-16 15:34:10 -04003548 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003549}
3550
Chris Wilson3ef94da2009-09-14 16:50:29 +01003551int
3552i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3553 struct drm_file *file_priv)
3554{
3555 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003556 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003557 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003558
3559 switch (args->madv) {
3560 case I915_MADV_DONTNEED:
3561 case I915_MADV_WILLNEED:
3562 break;
3563 default:
3564 return -EINVAL;
3565 }
3566
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003567 ret = i915_mutex_lock_interruptible(dev);
3568 if (ret)
3569 return ret;
3570
Chris Wilson05394f32010-11-08 19:18:58 +00003571 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003572 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003573 ret = -ENOENT;
3574 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003575 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003576
Chris Wilson05394f32010-11-08 19:18:58 +00003577 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003578 ret = -EINVAL;
3579 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003580 }
3581
Chris Wilson05394f32010-11-08 19:18:58 +00003582 if (obj->madv != __I915_MADV_PURGED)
3583 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003584
Chris Wilson2d7ef392009-09-20 23:13:10 +01003585 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003586 if (i915_gem_object_is_purgeable(obj) &&
3587 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003588 i915_gem_object_truncate(obj);
3589
Chris Wilson05394f32010-11-08 19:18:58 +00003590 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003591
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003592out:
Chris Wilson05394f32010-11-08 19:18:58 +00003593 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003594unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003595 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003596 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003597}
3598
Chris Wilson05394f32010-11-08 19:18:58 +00003599struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3600 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003601{
Chris Wilson73aa8082010-09-30 11:46:12 +01003602 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003603 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003604 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003605
3606 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3607 if (obj == NULL)
3608 return NULL;
3609
3610 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3611 kfree(obj);
3612 return NULL;
3613 }
3614
Hugh Dickins5949eac2011-06-27 16:18:18 -07003615 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3616 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3617
Chris Wilson73aa8082010-09-30 11:46:12 +01003618 i915_gem_info_add_obj(dev_priv, size);
3619
Daniel Vetterc397b902010-04-09 19:05:07 +00003620 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3621 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3622
Jesse Barnes680da872011-11-03 14:15:13 -07003623 if (IS_GEN6(dev) || IS_GEN7(dev)) {
Eric Anholta1871112011-03-29 16:59:55 -07003624 /* On Gen6, we can have the GPU use the LLC (the CPU
3625 * cache) for about a 10% performance improvement
3626 * compared to uncached. Graphics requests other than
3627 * display scanout are coherent with the CPU in
3628 * accessing this cache. This means in this mode we
3629 * don't need to clflush on the CPU side, and on the
3630 * GPU side we only need to flush internal caches to
3631 * get data visible to the CPU.
3632 *
3633 * However, we maintain the display planes as UC, and so
3634 * need to rebind when first used as such.
3635 */
3636 obj->cache_level = I915_CACHE_LLC;
3637 } else
3638 obj->cache_level = I915_CACHE_NONE;
3639
Daniel Vetter62b8b212010-04-09 19:05:08 +00003640 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003641 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003642 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003643 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003644 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003645 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003646 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003647 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003648 /* Avoid an unnecessary call to unbind on the first bind. */
3649 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003650
Chris Wilson05394f32010-11-08 19:18:58 +00003651 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003652}
3653
Eric Anholt673a3942008-07-30 12:06:12 -07003654int i915_gem_init_object(struct drm_gem_object *obj)
3655{
Daniel Vetterc397b902010-04-09 19:05:07 +00003656 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003657
Eric Anholt673a3942008-07-30 12:06:12 -07003658 return 0;
3659}
3660
Chris Wilson05394f32010-11-08 19:18:58 +00003661static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003662{
Chris Wilson05394f32010-11-08 19:18:58 +00003663 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003664 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003665 int ret;
3666
3667 ret = i915_gem_object_unbind(obj);
3668 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003669 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003670 &dev_priv->mm.deferred_free_list);
3671 return;
3672 }
3673
Chris Wilson26e12f82011-03-20 11:20:19 +00003674 trace_i915_gem_object_destroy(obj);
3675
Chris Wilson05394f32010-11-08 19:18:58 +00003676 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003677 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003678
Chris Wilson05394f32010-11-08 19:18:58 +00003679 drm_gem_object_release(&obj->base);
3680 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003681
Chris Wilson05394f32010-11-08 19:18:58 +00003682 kfree(obj->page_cpu_valid);
3683 kfree(obj->bit_17);
3684 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003685}
3686
Chris Wilson05394f32010-11-08 19:18:58 +00003687void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003688{
Chris Wilson05394f32010-11-08 19:18:58 +00003689 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3690 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003691
Chris Wilson05394f32010-11-08 19:18:58 +00003692 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003693 i915_gem_object_unpin(obj);
3694
Chris Wilson05394f32010-11-08 19:18:58 +00003695 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003696 i915_gem_detach_phys_object(dev, obj);
3697
Chris Wilsonbe726152010-07-23 23:18:50 +01003698 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003699}
3700
Jesse Barnes5669fca2009-02-17 15:13:31 -08003701int
Eric Anholt673a3942008-07-30 12:06:12 -07003702i915_gem_idle(struct drm_device *dev)
3703{
3704 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003705 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003706
Keith Packard6dbe2772008-10-14 21:41:13 -07003707 mutex_lock(&dev->struct_mutex);
3708
Chris Wilson87acb0a2010-10-19 10:13:00 +01003709 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003710 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003711 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003712 }
Eric Anholt673a3942008-07-30 12:06:12 -07003713
Chris Wilson29105cc2010-01-07 10:39:13 +00003714 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003715 if (ret) {
3716 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003717 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003718 }
Eric Anholt673a3942008-07-30 12:06:12 -07003719
Chris Wilson29105cc2010-01-07 10:39:13 +00003720 /* Under UMS, be paranoid and evict. */
3721 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003722 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003723 if (ret) {
3724 mutex_unlock(&dev->struct_mutex);
3725 return ret;
3726 }
3727 }
3728
Chris Wilson312817a2010-11-22 11:50:11 +00003729 i915_gem_reset_fences(dev);
3730
Chris Wilson29105cc2010-01-07 10:39:13 +00003731 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3732 * We need to replace this with a semaphore, or something.
3733 * And not confound mm.suspended!
3734 */
3735 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003736 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003737
3738 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003739 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003740
Keith Packard6dbe2772008-10-14 21:41:13 -07003741 mutex_unlock(&dev->struct_mutex);
3742
Chris Wilson29105cc2010-01-07 10:39:13 +00003743 /* Cancel the retire work handler, which should be idle now. */
3744 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3745
Eric Anholt673a3942008-07-30 12:06:12 -07003746 return 0;
3747}
3748
Eric Anholt673a3942008-07-30 12:06:12 -07003749int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003750i915_gem_init_ringbuffer(struct drm_device *dev)
3751{
3752 drm_i915_private_t *dev_priv = dev->dev_private;
3753 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003754
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003755 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003756 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003757 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003758
3759 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003760 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003761 if (ret)
3762 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003763 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003764
Chris Wilson549f7362010-10-19 11:19:32 +01003765 if (HAS_BLT(dev)) {
3766 ret = intel_init_blt_ring_buffer(dev);
3767 if (ret)
3768 goto cleanup_bsd_ring;
3769 }
3770
Chris Wilson6f392d52010-08-07 11:01:22 +01003771 dev_priv->next_seqno = 1;
3772
Chris Wilson68f95ba2010-05-27 13:18:22 +01003773 return 0;
3774
Chris Wilson549f7362010-10-19 11:19:32 +01003775cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003776 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003777cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003778 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003779 return ret;
3780}
3781
3782void
3783i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3784{
3785 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003786 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003787
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003788 for (i = 0; i < I915_NUM_RINGS; i++)
3789 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003790}
3791
3792int
Eric Anholt673a3942008-07-30 12:06:12 -07003793i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3794 struct drm_file *file_priv)
3795{
3796 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003797 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003798
Jesse Barnes79e53942008-11-07 14:24:08 -08003799 if (drm_core_check_feature(dev, DRIVER_MODESET))
3800 return 0;
3801
Ben Gamariba1234d2009-09-14 17:48:47 -04003802 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003803 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003804 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003805 }
3806
Eric Anholt673a3942008-07-30 12:06:12 -07003807 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003808 dev_priv->mm.suspended = 0;
3809
3810 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003811 if (ret != 0) {
3812 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003813 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003814 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003815
Chris Wilson69dc4982010-10-19 10:36:51 +01003816 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003817 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3818 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003819 for (i = 0; i < I915_NUM_RINGS; i++) {
3820 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3821 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3822 }
Eric Anholt673a3942008-07-30 12:06:12 -07003823 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003824
Chris Wilson5f353082010-06-07 14:03:03 +01003825 ret = drm_irq_install(dev);
3826 if (ret)
3827 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003828
Eric Anholt673a3942008-07-30 12:06:12 -07003829 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003830
3831cleanup_ringbuffer:
3832 mutex_lock(&dev->struct_mutex);
3833 i915_gem_cleanup_ringbuffer(dev);
3834 dev_priv->mm.suspended = 1;
3835 mutex_unlock(&dev->struct_mutex);
3836
3837 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003838}
3839
3840int
3841i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3842 struct drm_file *file_priv)
3843{
Jesse Barnes79e53942008-11-07 14:24:08 -08003844 if (drm_core_check_feature(dev, DRIVER_MODESET))
3845 return 0;
3846
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003847 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003848 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003849}
3850
3851void
3852i915_gem_lastclose(struct drm_device *dev)
3853{
3854 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003855
Eric Anholte806b492009-01-22 09:56:58 -08003856 if (drm_core_check_feature(dev, DRIVER_MODESET))
3857 return;
3858
Keith Packard6dbe2772008-10-14 21:41:13 -07003859 ret = i915_gem_idle(dev);
3860 if (ret)
3861 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003862}
3863
Chris Wilson64193402010-10-24 12:38:05 +01003864static void
3865init_ring_lists(struct intel_ring_buffer *ring)
3866{
3867 INIT_LIST_HEAD(&ring->active_list);
3868 INIT_LIST_HEAD(&ring->request_list);
3869 INIT_LIST_HEAD(&ring->gpu_write_list);
3870}
3871
Eric Anholt673a3942008-07-30 12:06:12 -07003872void
3873i915_gem_load(struct drm_device *dev)
3874{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003875 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003876 drm_i915_private_t *dev_priv = dev->dev_private;
3877
Chris Wilson69dc4982010-10-19 10:36:51 +01003878 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003879 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3880 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003881 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003882 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003883 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003884 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003885 for (i = 0; i < I915_NUM_RINGS; i++)
3886 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003887 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003888 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003889 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3890 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003891 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003892
Dave Airlie94400122010-07-20 13:15:31 +10003893 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3894 if (IS_GEN3(dev)) {
3895 u32 tmp = I915_READ(MI_ARB_STATE);
3896 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3897 /* arb state is a masked write, so set bit + bit in mask */
3898 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3899 I915_WRITE(MI_ARB_STATE, tmp);
3900 }
3901 }
3902
Chris Wilson72bfa192010-12-19 11:42:05 +00003903 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3904
Jesse Barnesde151cf2008-11-12 10:03:55 -08003905 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003906 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3907 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003908
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003909 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003910 dev_priv->num_fence_regs = 16;
3911 else
3912 dev_priv->num_fence_regs = 8;
3913
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003914 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003915 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3916 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003917 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003918
Eric Anholt673a3942008-07-30 12:06:12 -07003919 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003920 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003921
Chris Wilsonce453d82011-02-21 14:43:56 +00003922 dev_priv->mm.interruptible = true;
3923
Chris Wilson17250b72010-10-28 12:51:39 +01003924 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3925 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3926 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003927}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003928
3929/*
3930 * Create a physically contiguous memory object for this object
3931 * e.g. for cursor + overlay regs
3932 */
Chris Wilson995b6762010-08-20 13:23:26 +01003933static int i915_gem_init_phys_object(struct drm_device *dev,
3934 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003935{
3936 drm_i915_private_t *dev_priv = dev->dev_private;
3937 struct drm_i915_gem_phys_object *phys_obj;
3938 int ret;
3939
3940 if (dev_priv->mm.phys_objs[id - 1] || !size)
3941 return 0;
3942
Eric Anholt9a298b22009-03-24 12:23:04 -07003943 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003944 if (!phys_obj)
3945 return -ENOMEM;
3946
3947 phys_obj->id = id;
3948
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003949 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003950 if (!phys_obj->handle) {
3951 ret = -ENOMEM;
3952 goto kfree_obj;
3953 }
3954#ifdef CONFIG_X86
3955 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3956#endif
3957
3958 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3959
3960 return 0;
3961kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003962 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003963 return ret;
3964}
3965
Chris Wilson995b6762010-08-20 13:23:26 +01003966static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003967{
3968 drm_i915_private_t *dev_priv = dev->dev_private;
3969 struct drm_i915_gem_phys_object *phys_obj;
3970
3971 if (!dev_priv->mm.phys_objs[id - 1])
3972 return;
3973
3974 phys_obj = dev_priv->mm.phys_objs[id - 1];
3975 if (phys_obj->cur_obj) {
3976 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3977 }
3978
3979#ifdef CONFIG_X86
3980 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3981#endif
3982 drm_pci_free(dev, phys_obj->handle);
3983 kfree(phys_obj);
3984 dev_priv->mm.phys_objs[id - 1] = NULL;
3985}
3986
3987void i915_gem_free_all_phys_object(struct drm_device *dev)
3988{
3989 int i;
3990
Dave Airlie260883c2009-01-22 17:58:49 +10003991 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003992 i915_gem_free_phys_object(dev, i);
3993}
3994
3995void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003996 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003997{
Chris Wilson05394f32010-11-08 19:18:58 +00003998 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003999 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004000 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004001 int page_count;
4002
Chris Wilson05394f32010-11-08 19:18:58 +00004003 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004004 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004005 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004006
Chris Wilson05394f32010-11-08 19:18:58 +00004007 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004008 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004009 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004010 if (!IS_ERR(page)) {
4011 char *dst = kmap_atomic(page);
4012 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4013 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004014
Chris Wilsone5281cc2010-10-28 13:45:36 +01004015 drm_clflush_pages(&page, 1);
4016
4017 set_page_dirty(page);
4018 mark_page_accessed(page);
4019 page_cache_release(page);
4020 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004021 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01004022 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01004023
Chris Wilson05394f32010-11-08 19:18:58 +00004024 obj->phys_obj->cur_obj = NULL;
4025 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004026}
4027
4028int
4029i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004030 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004031 int id,
4032 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004033{
Chris Wilson05394f32010-11-08 19:18:58 +00004034 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004035 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004036 int ret = 0;
4037 int page_count;
4038 int i;
4039
4040 if (id > I915_MAX_PHYS_OBJECT)
4041 return -EINVAL;
4042
Chris Wilson05394f32010-11-08 19:18:58 +00004043 if (obj->phys_obj) {
4044 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004045 return 0;
4046 i915_gem_detach_phys_object(dev, obj);
4047 }
4048
Dave Airlie71acb5e2008-12-30 20:31:46 +10004049 /* create a new object */
4050 if (!dev_priv->mm.phys_objs[id - 1]) {
4051 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004052 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004053 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004054 DRM_ERROR("failed to init phys object %d size: %zu\n",
4055 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004056 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004057 }
4058 }
4059
4060 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004061 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4062 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004063
Chris Wilson05394f32010-11-08 19:18:58 +00004064 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004065
4066 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004067 struct page *page;
4068 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004069
Hugh Dickins5949eac2011-06-27 16:18:18 -07004070 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004071 if (IS_ERR(page))
4072 return PTR_ERR(page);
4073
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004074 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004075 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004076 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004077 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004078
4079 mark_page_accessed(page);
4080 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004081 }
4082
4083 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004084}
4085
4086static int
Chris Wilson05394f32010-11-08 19:18:58 +00004087i915_gem_phys_pwrite(struct drm_device *dev,
4088 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004089 struct drm_i915_gem_pwrite *args,
4090 struct drm_file *file_priv)
4091{
Chris Wilson05394f32010-11-08 19:18:58 +00004092 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004093 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004094
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004095 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4096 unsigned long unwritten;
4097
4098 /* The physical object once assigned is fixed for the lifetime
4099 * of the obj, so we can safely drop the lock and continue
4100 * to access vaddr.
4101 */
4102 mutex_unlock(&dev->struct_mutex);
4103 unwritten = copy_from_user(vaddr, user_data, args->size);
4104 mutex_lock(&dev->struct_mutex);
4105 if (unwritten)
4106 return -EFAULT;
4107 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004108
Daniel Vetter40ce6572010-11-05 18:12:18 +01004109 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004110 return 0;
4111}
Eric Anholtb9624422009-06-03 07:27:35 +00004112
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004113void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004114{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004115 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004116
4117 /* Clean up our request list when the client is going away, so that
4118 * later retire_requests won't dereference our soon-to-be-gone
4119 * file_priv.
4120 */
Chris Wilson1c255952010-09-26 11:03:27 +01004121 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004122 while (!list_empty(&file_priv->mm.request_list)) {
4123 struct drm_i915_gem_request *request;
4124
4125 request = list_first_entry(&file_priv->mm.request_list,
4126 struct drm_i915_gem_request,
4127 client_list);
4128 list_del(&request->client_list);
4129 request->file_priv = NULL;
4130 }
Chris Wilson1c255952010-09-26 11:03:27 +01004131 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004132}
Chris Wilson31169712009-09-14 16:50:28 +01004133
Chris Wilson31169712009-09-14 16:50:28 +01004134static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004135i915_gpu_is_active(struct drm_device *dev)
4136{
4137 drm_i915_private_t *dev_priv = dev->dev_private;
4138 int lists_empty;
4139
Chris Wilson1637ef42010-04-20 17:10:35 +01004140 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004141 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004142
4143 return !lists_empty;
4144}
4145
4146static int
Ying Han1495f232011-05-24 17:12:27 -07004147i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004148{
Chris Wilson17250b72010-10-28 12:51:39 +01004149 struct drm_i915_private *dev_priv =
4150 container_of(shrinker,
4151 struct drm_i915_private,
4152 mm.inactive_shrinker);
4153 struct drm_device *dev = dev_priv->dev;
4154 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004155 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004156 int cnt;
4157
4158 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004159 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004160
4161 /* "fast-path" to count number of available objects */
4162 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004163 cnt = 0;
4164 list_for_each_entry(obj,
4165 &dev_priv->mm.inactive_list,
4166 mm_list)
4167 cnt++;
4168 mutex_unlock(&dev->struct_mutex);
4169 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004170 }
4171
Chris Wilson1637ef42010-04-20 17:10:35 +01004172rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004173 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004174 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004175
Chris Wilson17250b72010-10-28 12:51:39 +01004176 list_for_each_entry_safe(obj, next,
4177 &dev_priv->mm.inactive_list,
4178 mm_list) {
4179 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004180 if (i915_gem_object_unbind(obj) == 0 &&
4181 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004182 break;
Chris Wilson31169712009-09-14 16:50:28 +01004183 }
Chris Wilson31169712009-09-14 16:50:28 +01004184 }
4185
4186 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004187 cnt = 0;
4188 list_for_each_entry_safe(obj, next,
4189 &dev_priv->mm.inactive_list,
4190 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004191 if (nr_to_scan &&
4192 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004193 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004194 else
Chris Wilson17250b72010-10-28 12:51:39 +01004195 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004196 }
4197
Chris Wilson17250b72010-10-28 12:51:39 +01004198 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004199 /*
4200 * We are desperate for pages, so as a last resort, wait
4201 * for the GPU to finish and discard whatever we can.
4202 * This has a dramatic impact to reduce the number of
4203 * OOM-killer events whilst running the GPU aggressively.
4204 */
Chris Wilson17250b72010-10-28 12:51:39 +01004205 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004206 goto rescan;
4207 }
Chris Wilson17250b72010-10-28 12:51:39 +01004208 mutex_unlock(&dev->struct_mutex);
4209 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004210}