blob: c78930ed2e807d15309b9bcc87188826242fb4cb [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070036#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson88241782011-01-07 17:09:48 +000039static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000040static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
41static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000042static __must_check int i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj,
43 bool write);
44static __must_check int i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
45 uint64_t offset,
46 uint64_t size);
Chris Wilson05394f32010-11-08 19:18:58 +000047static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000048static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
49 unsigned alignment,
50 bool map_and_fenceable);
Chris Wilsond9e86c02010-11-10 16:40:20 +000051static void i915_gem_clear_fence_reg(struct drm_device *dev,
52 struct drm_i915_fence_reg *reg);
Chris Wilson05394f32010-11-08 19:18:58 +000053static int i915_gem_phys_pwrite(struct drm_device *dev,
54 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100055 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000056 struct drm_file *file);
57static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070058
Chris Wilson17250b72010-10-28 12:51:39 +010059static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070060 struct shrink_control *sc);
Chris Wilson31169712009-09-14 16:50:28 +010061
Chris Wilson73aa8082010-09-30 11:46:12 +010062/* some bookkeeping */
63static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
64 size_t size)
65{
66 dev_priv->mm.object_count++;
67 dev_priv->mm.object_memory += size;
68}
69
70static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
71 size_t size)
72{
73 dev_priv->mm.object_count--;
74 dev_priv->mm.object_memory -= size;
75}
76
Chris Wilson21dd3732011-01-26 15:55:56 +000077static int
78i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010079{
80 struct drm_i915_private *dev_priv = dev->dev_private;
81 struct completion *x = &dev_priv->error_completion;
82 unsigned long flags;
83 int ret;
84
85 if (!atomic_read(&dev_priv->mm.wedged))
86 return 0;
87
88 ret = wait_for_completion_interruptible(x);
89 if (ret)
90 return ret;
91
Chris Wilson21dd3732011-01-26 15:55:56 +000092 if (atomic_read(&dev_priv->mm.wedged)) {
93 /* GPU is hung, bump the completion count to account for
94 * the token we just consumed so that we never hit zero and
95 * end up waiting upon a subsequent completion event that
96 * will never happen.
97 */
98 spin_lock_irqsave(&x->wait.lock, flags);
99 x->done++;
100 spin_unlock_irqrestore(&x->wait.lock, flags);
101 }
102 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100103}
104
Chris Wilson54cf91d2010-11-25 18:00:26 +0000105int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100106{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100107 int ret;
108
Chris Wilson21dd3732011-01-26 15:55:56 +0000109 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100110 if (ret)
111 return ret;
112
113 ret = mutex_lock_interruptible(&dev->struct_mutex);
114 if (ret)
115 return ret;
116
Chris Wilson23bc5982010-09-29 16:10:57 +0100117 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100118 return 0;
119}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100120
Chris Wilson7d1c4802010-08-07 21:45:03 +0100121static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000122i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100123{
Chris Wilson05394f32010-11-08 19:18:58 +0000124 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100125}
126
Chris Wilson20217462010-11-23 15:26:33 +0000127void i915_gem_do_init(struct drm_device *dev,
128 unsigned long start,
129 unsigned long mappable_end,
130 unsigned long end)
Jesse Barnes79e53942008-11-07 14:24:08 -0800131{
132 drm_i915_private_t *dev_priv = dev->dev_private;
133
Chris Wilsonbee4a182011-01-21 10:54:32 +0000134 drm_mm_init(&dev_priv->mm.gtt_space, start, end - start);
Jesse Barnes79e53942008-11-07 14:24:08 -0800135
Chris Wilsonbee4a182011-01-21 10:54:32 +0000136 dev_priv->mm.gtt_start = start;
137 dev_priv->mm.gtt_mappable_end = mappable_end;
138 dev_priv->mm.gtt_end = end;
Chris Wilson73aa8082010-09-30 11:46:12 +0100139 dev_priv->mm.gtt_total = end - start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200140 dev_priv->mm.mappable_gtt_total = min(end, mappable_end) - start;
Chris Wilsonbee4a182011-01-21 10:54:32 +0000141
142 /* Take over this portion of the GTT */
143 intel_gtt_clear_range(start / PAGE_SIZE, (end-start) / PAGE_SIZE);
Jesse Barnes79e53942008-11-07 14:24:08 -0800144}
Keith Packard6dbe2772008-10-14 21:41:13 -0700145
Eric Anholt673a3942008-07-30 12:06:12 -0700146int
147i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000148 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700149{
Eric Anholt673a3942008-07-30 12:06:12 -0700150 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000151
152 if (args->gtt_start >= args->gtt_end ||
153 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
154 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700155
156 mutex_lock(&dev->struct_mutex);
Chris Wilson20217462010-11-23 15:26:33 +0000157 i915_gem_do_init(dev, args->gtt_start, args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700158 mutex_unlock(&dev->struct_mutex);
159
Chris Wilson20217462010-11-23 15:26:33 +0000160 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700161}
162
Eric Anholt5a125c32008-10-22 21:40:13 -0700163int
164i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000165 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700166{
Chris Wilson73aa8082010-09-30 11:46:12 +0100167 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700168 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000169 struct drm_i915_gem_object *obj;
170 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700171
172 if (!(dev->driver->driver_features & DRIVER_GEM))
173 return -ENODEV;
174
Chris Wilson6299f992010-11-24 12:23:44 +0000175 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000177 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
178 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100179 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700180
Chris Wilson6299f992010-11-24 12:23:44 +0000181 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400182 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000183
Eric Anholt5a125c32008-10-22 21:40:13 -0700184 return 0;
185}
186
Dave Airlieff72145b2011-02-07 12:16:14 +1000187static int
188i915_gem_create(struct drm_file *file,
189 struct drm_device *dev,
190 uint64_t size,
191 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700192{
Chris Wilson05394f32010-11-08 19:18:58 +0000193 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300194 int ret;
195 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700196
Dave Airlieff72145b2011-02-07 12:16:14 +1000197 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200198 if (size == 0)
199 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700200
201 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000202 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700203 if (obj == NULL)
204 return -ENOMEM;
205
Chris Wilson05394f32010-11-08 19:18:58 +0000206 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100207 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000208 drm_gem_object_release(&obj->base);
209 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100210 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700211 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100212 }
213
Chris Wilson202f2fe2010-10-14 13:20:40 +0100214 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000215 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100216 trace_i915_gem_object_create(obj);
217
Dave Airlieff72145b2011-02-07 12:16:14 +1000218 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700219 return 0;
220}
221
Dave Airlieff72145b2011-02-07 12:16:14 +1000222int
223i915_gem_dumb_create(struct drm_file *file,
224 struct drm_device *dev,
225 struct drm_mode_create_dumb *args)
226{
227 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000228 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000229 args->size = args->pitch * args->height;
230 return i915_gem_create(file, dev,
231 args->size, &args->handle);
232}
233
234int i915_gem_dumb_destroy(struct drm_file *file,
235 struct drm_device *dev,
236 uint32_t handle)
237{
238 return drm_gem_handle_delete(file, handle);
239}
240
241/**
242 * Creates a new mm object and returns a handle to it.
243 */
244int
245i915_gem_create_ioctl(struct drm_device *dev, void *data,
246 struct drm_file *file)
247{
248 struct drm_i915_gem_create *args = data;
249 return i915_gem_create(file, dev,
250 args->size, &args->handle);
251}
252
Chris Wilson05394f32010-11-08 19:18:58 +0000253static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700254{
Chris Wilson05394f32010-11-08 19:18:58 +0000255 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700256
257 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000258 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700259}
260
Chris Wilson99a03df2010-05-27 14:15:34 +0100261static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700262slow_shmem_copy(struct page *dst_page,
263 int dst_offset,
264 struct page *src_page,
265 int src_offset,
266 int length)
267{
268 char *dst_vaddr, *src_vaddr;
269
Chris Wilson99a03df2010-05-27 14:15:34 +0100270 dst_vaddr = kmap(dst_page);
271 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700272
273 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
274
Chris Wilson99a03df2010-05-27 14:15:34 +0100275 kunmap(src_page);
276 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700277}
278
Chris Wilson99a03df2010-05-27 14:15:34 +0100279static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700280slow_shmem_bit17_copy(struct page *gpu_page,
281 int gpu_offset,
282 struct page *cpu_page,
283 int cpu_offset,
284 int length,
285 int is_read)
286{
287 char *gpu_vaddr, *cpu_vaddr;
288
289 /* Use the unswizzled path if this page isn't affected. */
290 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
291 if (is_read)
292 return slow_shmem_copy(cpu_page, cpu_offset,
293 gpu_page, gpu_offset, length);
294 else
295 return slow_shmem_copy(gpu_page, gpu_offset,
296 cpu_page, cpu_offset, length);
297 }
298
Chris Wilson99a03df2010-05-27 14:15:34 +0100299 gpu_vaddr = kmap(gpu_page);
300 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700301
302 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
303 * XORing with the other bits (A9 for Y, A9 and A10 for X)
304 */
305 while (length > 0) {
306 int cacheline_end = ALIGN(gpu_offset + 1, 64);
307 int this_length = min(cacheline_end - gpu_offset, length);
308 int swizzled_gpu_offset = gpu_offset ^ 64;
309
310 if (is_read) {
311 memcpy(cpu_vaddr + cpu_offset,
312 gpu_vaddr + swizzled_gpu_offset,
313 this_length);
314 } else {
315 memcpy(gpu_vaddr + swizzled_gpu_offset,
316 cpu_vaddr + cpu_offset,
317 this_length);
318 }
319 cpu_offset += this_length;
320 gpu_offset += this_length;
321 length -= this_length;
322 }
323
Chris Wilson99a03df2010-05-27 14:15:34 +0100324 kunmap(cpu_page);
325 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700326}
327
Eric Anholt673a3942008-07-30 12:06:12 -0700328/**
Eric Anholteb014592009-03-10 11:44:52 -0700329 * This is the fast shmem pread path, which attempts to copy_from_user directly
330 * from the backing pages of the object to the user's address space. On a
331 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
332 */
333static int
Chris Wilson05394f32010-11-08 19:18:58 +0000334i915_gem_shmem_pread_fast(struct drm_device *dev,
335 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700336 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000337 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700338{
Chris Wilson05394f32010-11-08 19:18:58 +0000339 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700340 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100341 loff_t offset;
Eric Anholteb014592009-03-10 11:44:52 -0700342 char __user *user_data;
343 int page_offset, page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700344
345 user_data = (char __user *) (uintptr_t) args->data_ptr;
346 remain = args->size;
347
Eric Anholteb014592009-03-10 11:44:52 -0700348 offset = args->offset;
349
350 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100351 struct page *page;
352 char *vaddr;
353 int ret;
354
Eric Anholteb014592009-03-10 11:44:52 -0700355 /* Operation in this page
356 *
Eric Anholteb014592009-03-10 11:44:52 -0700357 * page_offset = offset within page
358 * page_length = bytes to copy for this page
359 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100360 page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700361 page_length = remain;
362 if ((page_offset + remain) > PAGE_SIZE)
363 page_length = PAGE_SIZE - page_offset;
364
Hugh Dickins5949eac2011-06-27 16:18:18 -0700365 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100366 if (IS_ERR(page))
367 return PTR_ERR(page);
368
369 vaddr = kmap_atomic(page);
370 ret = __copy_to_user_inatomic(user_data,
371 vaddr + page_offset,
372 page_length);
373 kunmap_atomic(vaddr);
374
375 mark_page_accessed(page);
376 page_cache_release(page);
377 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100378 return -EFAULT;
Eric Anholteb014592009-03-10 11:44:52 -0700379
380 remain -= page_length;
381 user_data += page_length;
382 offset += page_length;
383 }
384
Chris Wilson4f27b752010-10-14 15:26:45 +0100385 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700386}
387
388/**
389 * This is the fallback shmem pread path, which allocates temporary storage
390 * in kernel space to copy_to_user into outside of the struct_mutex, so we
391 * can copy out of the object's backing pages while holding the struct mutex
392 * and not take page faults.
393 */
394static int
Chris Wilson05394f32010-11-08 19:18:58 +0000395i915_gem_shmem_pread_slow(struct drm_device *dev,
396 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700397 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000398 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700399{
Chris Wilson05394f32010-11-08 19:18:58 +0000400 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700401 struct mm_struct *mm = current->mm;
402 struct page **user_pages;
403 ssize_t remain;
404 loff_t offset, pinned_pages, i;
405 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100406 int shmem_page_offset;
407 int data_page_index, data_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700408 int page_length;
409 int ret;
410 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700411 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700412
413 remain = args->size;
414
415 /* Pin the user pages containing the data. We can't fault while
416 * holding the struct mutex, yet we want to hold it while
417 * dereferencing the user data.
418 */
419 first_data_page = data_ptr / PAGE_SIZE;
420 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
421 num_pages = last_data_page - first_data_page + 1;
422
Chris Wilson4f27b752010-10-14 15:26:45 +0100423 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700424 if (user_pages == NULL)
425 return -ENOMEM;
426
Chris Wilson4f27b752010-10-14 15:26:45 +0100427 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700428 down_read(&mm->mmap_sem);
429 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700430 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700431 up_read(&mm->mmap_sem);
Chris Wilson4f27b752010-10-14 15:26:45 +0100432 mutex_lock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700433 if (pinned_pages < num_pages) {
434 ret = -EFAULT;
Chris Wilson4f27b752010-10-14 15:26:45 +0100435 goto out;
Eric Anholteb014592009-03-10 11:44:52 -0700436 }
437
Chris Wilson4f27b752010-10-14 15:26:45 +0100438 ret = i915_gem_object_set_cpu_read_domain_range(obj,
439 args->offset,
Eric Anholteb014592009-03-10 11:44:52 -0700440 args->size);
Chris Wilson4f27b752010-10-14 15:26:45 +0100441 if (ret)
442 goto out;
443
444 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700445
Eric Anholteb014592009-03-10 11:44:52 -0700446 offset = args->offset;
447
448 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100449 struct page *page;
450
Eric Anholteb014592009-03-10 11:44:52 -0700451 /* Operation in this page
452 *
Eric Anholteb014592009-03-10 11:44:52 -0700453 * shmem_page_offset = offset within page in shmem file
454 * data_page_index = page number in get_user_pages return
455 * data_page_offset = offset with data_page_index page.
456 * page_length = bytes to copy for this page
457 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100458 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700459 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100460 data_page_offset = offset_in_page(data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700461
462 page_length = remain;
463 if ((shmem_page_offset + page_length) > PAGE_SIZE)
464 page_length = PAGE_SIZE - shmem_page_offset;
465 if ((data_page_offset + page_length) > PAGE_SIZE)
466 page_length = PAGE_SIZE - data_page_offset;
467
Hugh Dickins5949eac2011-06-27 16:18:18 -0700468 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Jesper Juhlb65552f2011-06-12 20:53:44 +0000469 if (IS_ERR(page)) {
470 ret = PTR_ERR(page);
471 goto out;
472 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100473
Eric Anholt280b7132009-03-12 16:56:27 -0700474 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100475 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700476 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100477 user_pages[data_page_index],
478 data_page_offset,
479 page_length,
480 1);
481 } else {
482 slow_shmem_copy(user_pages[data_page_index],
483 data_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100484 page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100485 shmem_page_offset,
486 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700487 }
Eric Anholteb014592009-03-10 11:44:52 -0700488
Chris Wilsone5281cc2010-10-28 13:45:36 +0100489 mark_page_accessed(page);
490 page_cache_release(page);
491
Eric Anholteb014592009-03-10 11:44:52 -0700492 remain -= page_length;
493 data_ptr += page_length;
494 offset += page_length;
495 }
496
Chris Wilson4f27b752010-10-14 15:26:45 +0100497out:
Eric Anholteb014592009-03-10 11:44:52 -0700498 for (i = 0; i < pinned_pages; i++) {
499 SetPageDirty(user_pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100500 mark_page_accessed(user_pages[i]);
Eric Anholteb014592009-03-10 11:44:52 -0700501 page_cache_release(user_pages[i]);
502 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700503 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700504
505 return ret;
506}
507
Eric Anholt673a3942008-07-30 12:06:12 -0700508/**
509 * Reads data from the object referenced by handle.
510 *
511 * On error, the contents of *data are undefined.
512 */
513int
514i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000515 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700516{
517 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000518 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100519 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700520
Chris Wilson51311d02010-11-17 09:10:42 +0000521 if (args->size == 0)
522 return 0;
523
524 if (!access_ok(VERIFY_WRITE,
525 (char __user *)(uintptr_t)args->data_ptr,
526 args->size))
527 return -EFAULT;
528
529 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
530 args->size);
531 if (ret)
532 return -EFAULT;
533
Chris Wilson4f27b752010-10-14 15:26:45 +0100534 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100535 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100536 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700537
Chris Wilson05394f32010-11-08 19:18:58 +0000538 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000539 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100540 ret = -ENOENT;
541 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100542 }
Eric Anholt673a3942008-07-30 12:06:12 -0700543
Chris Wilson7dcd2492010-09-26 20:21:44 +0100544 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000545 if (args->offset > obj->base.size ||
546 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100547 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100548 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100549 }
550
Chris Wilsondb53a302011-02-03 11:57:46 +0000551 trace_i915_gem_object_pread(obj, args->offset, args->size);
552
Chris Wilson4f27b752010-10-14 15:26:45 +0100553 ret = i915_gem_object_set_cpu_read_domain_range(obj,
554 args->offset,
555 args->size);
556 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100557 goto out;
Chris Wilson4f27b752010-10-14 15:26:45 +0100558
559 ret = -EFAULT;
560 if (!i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson05394f32010-11-08 19:18:58 +0000561 ret = i915_gem_shmem_pread_fast(dev, obj, args, file);
Chris Wilson4f27b752010-10-14 15:26:45 +0100562 if (ret == -EFAULT)
Chris Wilson05394f32010-11-08 19:18:58 +0000563 ret = i915_gem_shmem_pread_slow(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700564
Chris Wilson35b62a82010-09-26 20:23:38 +0100565out:
Chris Wilson05394f32010-11-08 19:18:58 +0000566 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100567unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100568 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700569 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700570}
571
Keith Packard0839ccb2008-10-30 19:38:48 -0700572/* This is the fast write path which cannot handle
573 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700574 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700575
Keith Packard0839ccb2008-10-30 19:38:48 -0700576static inline int
577fast_user_write(struct io_mapping *mapping,
578 loff_t page_base, int page_offset,
579 char __user *user_data,
580 int length)
581{
582 char *vaddr_atomic;
583 unsigned long unwritten;
584
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700585 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700586 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
587 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700588 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100589 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700590}
591
592/* Here's the write path which can sleep for
593 * page faults
594 */
595
Chris Wilsonab34c222010-05-27 14:15:35 +0100596static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700597slow_kernel_write(struct io_mapping *mapping,
598 loff_t gtt_base, int gtt_offset,
599 struct page *user_page, int user_offset,
600 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700601{
Chris Wilsonab34c222010-05-27 14:15:35 +0100602 char __iomem *dst_vaddr;
603 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700604
Chris Wilsonab34c222010-05-27 14:15:35 +0100605 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
606 src_vaddr = kmap(user_page);
607
608 memcpy_toio(dst_vaddr + gtt_offset,
609 src_vaddr + user_offset,
610 length);
611
612 kunmap(user_page);
613 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700614}
615
Eric Anholt3de09aa2009-03-09 09:42:23 -0700616/**
617 * This is the fast pwrite path, where we copy the data directly from the
618 * user into the GTT, uncached.
619 */
Eric Anholt673a3942008-07-30 12:06:12 -0700620static int
Chris Wilson05394f32010-11-08 19:18:58 +0000621i915_gem_gtt_pwrite_fast(struct drm_device *dev,
622 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700623 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000624 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700625{
Keith Packard0839ccb2008-10-30 19:38:48 -0700626 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700627 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700628 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700629 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700630 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700631
632 user_data = (char __user *) (uintptr_t) args->data_ptr;
633 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700634
Chris Wilson05394f32010-11-08 19:18:58 +0000635 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700636
637 while (remain > 0) {
638 /* Operation in this page
639 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700640 * page_base = page offset within aperture
641 * page_offset = offset within page
642 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700643 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100644 page_base = offset & PAGE_MASK;
645 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700646 page_length = remain;
647 if ((page_offset + remain) > PAGE_SIZE)
648 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700649
Keith Packard0839ccb2008-10-30 19:38:48 -0700650 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700651 * source page isn't available. Return the error and we'll
652 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700653 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100654 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
655 page_offset, user_data, page_length))
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100656 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700657
Keith Packard0839ccb2008-10-30 19:38:48 -0700658 remain -= page_length;
659 user_data += page_length;
660 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700661 }
Eric Anholt673a3942008-07-30 12:06:12 -0700662
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100663 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700664}
665
Eric Anholt3de09aa2009-03-09 09:42:23 -0700666/**
667 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
668 * the memory and maps it using kmap_atomic for copying.
669 *
670 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
671 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
672 */
Eric Anholt3043c602008-10-02 12:24:47 -0700673static int
Chris Wilson05394f32010-11-08 19:18:58 +0000674i915_gem_gtt_pwrite_slow(struct drm_device *dev,
675 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700676 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000677 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700678{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700679 drm_i915_private_t *dev_priv = dev->dev_private;
680 ssize_t remain;
681 loff_t gtt_page_base, offset;
682 loff_t first_data_page, last_data_page, num_pages;
683 loff_t pinned_pages, i;
684 struct page **user_pages;
685 struct mm_struct *mm = current->mm;
686 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700687 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700688 uint64_t data_ptr = args->data_ptr;
689
690 remain = args->size;
691
692 /* Pin the user pages containing the data. We can't fault while
693 * holding the struct mutex, and all of the pwrite implementations
694 * want to hold it while dereferencing the user data.
695 */
696 first_data_page = data_ptr / PAGE_SIZE;
697 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
698 num_pages = last_data_page - first_data_page + 1;
699
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100700 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700701 if (user_pages == NULL)
702 return -ENOMEM;
703
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100704 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700705 down_read(&mm->mmap_sem);
706 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
707 num_pages, 0, 0, user_pages, NULL);
708 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100709 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700710 if (pinned_pages < num_pages) {
711 ret = -EFAULT;
712 goto out_unpin_pages;
713 }
714
Chris Wilsond9e86c02010-11-10 16:40:20 +0000715 ret = i915_gem_object_set_to_gtt_domain(obj, true);
716 if (ret)
717 goto out_unpin_pages;
718
719 ret = i915_gem_object_put_fence(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700720 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100721 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700722
Chris Wilson05394f32010-11-08 19:18:58 +0000723 offset = obj->gtt_offset + args->offset;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700724
725 while (remain > 0) {
726 /* Operation in this page
727 *
728 * gtt_page_base = page offset within aperture
729 * gtt_page_offset = offset within page in aperture
730 * data_page_index = page number in get_user_pages return
731 * data_page_offset = offset with data_page_index page.
732 * page_length = bytes to copy for this page
733 */
734 gtt_page_base = offset & PAGE_MASK;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100735 gtt_page_offset = offset_in_page(offset);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700736 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100737 data_page_offset = offset_in_page(data_ptr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700738
739 page_length = remain;
740 if ((gtt_page_offset + page_length) > PAGE_SIZE)
741 page_length = PAGE_SIZE - gtt_page_offset;
742 if ((data_page_offset + page_length) > PAGE_SIZE)
743 page_length = PAGE_SIZE - data_page_offset;
744
Chris Wilsonab34c222010-05-27 14:15:35 +0100745 slow_kernel_write(dev_priv->mm.gtt_mapping,
746 gtt_page_base, gtt_page_offset,
747 user_pages[data_page_index],
748 data_page_offset,
749 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700750
751 remain -= page_length;
752 offset += page_length;
753 data_ptr += page_length;
754 }
755
Eric Anholt3de09aa2009-03-09 09:42:23 -0700756out_unpin_pages:
757 for (i = 0; i < pinned_pages; i++)
758 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700759 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700760
761 return ret;
762}
763
Eric Anholt40123c12009-03-09 13:42:30 -0700764/**
765 * This is the fast shmem pwrite path, which attempts to directly
766 * copy_from_user into the kmapped pages backing the object.
767 */
Eric Anholt673a3942008-07-30 12:06:12 -0700768static int
Chris Wilson05394f32010-11-08 19:18:58 +0000769i915_gem_shmem_pwrite_fast(struct drm_device *dev,
770 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700771 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000772 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700773{
Chris Wilson05394f32010-11-08 19:18:58 +0000774 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700775 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100776 loff_t offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700777 char __user *user_data;
778 int page_offset, page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700779
780 user_data = (char __user *) (uintptr_t) args->data_ptr;
781 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700782
Eric Anholt673a3942008-07-30 12:06:12 -0700783 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000784 obj->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700785
Eric Anholt40123c12009-03-09 13:42:30 -0700786 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100787 struct page *page;
788 char *vaddr;
789 int ret;
790
Eric Anholt40123c12009-03-09 13:42:30 -0700791 /* Operation in this page
792 *
Eric Anholt40123c12009-03-09 13:42:30 -0700793 * page_offset = offset within page
794 * page_length = bytes to copy for this page
795 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100796 page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700797 page_length = remain;
798 if ((page_offset + remain) > PAGE_SIZE)
799 page_length = PAGE_SIZE - page_offset;
800
Hugh Dickins5949eac2011-06-27 16:18:18 -0700801 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100802 if (IS_ERR(page))
803 return PTR_ERR(page);
804
Daniel Vetter130c2562011-09-17 20:55:46 +0200805 vaddr = kmap_atomic(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100806 ret = __copy_from_user_inatomic(vaddr + page_offset,
807 user_data,
808 page_length);
Daniel Vetter130c2562011-09-17 20:55:46 +0200809 kunmap_atomic(vaddr);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100810
811 set_page_dirty(page);
812 mark_page_accessed(page);
813 page_cache_release(page);
814
815 /* If we get a fault while copying data, then (presumably) our
816 * source page isn't available. Return the error and we'll
817 * retry in the slow path.
818 */
819 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100820 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700821
822 remain -= page_length;
823 user_data += page_length;
824 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700825 }
826
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100827 return 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700828}
829
830/**
831 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
832 * the memory and maps it using kmap_atomic for copying.
833 *
834 * This avoids taking mmap_sem for faulting on the user's address while the
835 * struct_mutex is held.
836 */
837static int
Chris Wilson05394f32010-11-08 19:18:58 +0000838i915_gem_shmem_pwrite_slow(struct drm_device *dev,
839 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700840 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000841 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700842{
Chris Wilson05394f32010-11-08 19:18:58 +0000843 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700844 struct mm_struct *mm = current->mm;
845 struct page **user_pages;
846 ssize_t remain;
847 loff_t offset, pinned_pages, i;
848 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100849 int shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700850 int data_page_index, data_page_offset;
851 int page_length;
852 int ret;
853 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700854 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700855
856 remain = args->size;
857
858 /* Pin the user pages containing the data. We can't fault while
859 * holding the struct mutex, and all of the pwrite implementations
860 * want to hold it while dereferencing the user data.
861 */
862 first_data_page = data_ptr / PAGE_SIZE;
863 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
864 num_pages = last_data_page - first_data_page + 1;
865
Chris Wilson4f27b752010-10-14 15:26:45 +0100866 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700867 if (user_pages == NULL)
868 return -ENOMEM;
869
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100870 mutex_unlock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700871 down_read(&mm->mmap_sem);
872 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
873 num_pages, 0, 0, user_pages, NULL);
874 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100875 mutex_lock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700876 if (pinned_pages < num_pages) {
877 ret = -EFAULT;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100878 goto out;
Eric Anholt40123c12009-03-09 13:42:30 -0700879 }
880
Eric Anholt40123c12009-03-09 13:42:30 -0700881 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100882 if (ret)
883 goto out;
884
885 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700886
Eric Anholt40123c12009-03-09 13:42:30 -0700887 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000888 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700889
890 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100891 struct page *page;
892
Eric Anholt40123c12009-03-09 13:42:30 -0700893 /* Operation in this page
894 *
Eric Anholt40123c12009-03-09 13:42:30 -0700895 * shmem_page_offset = offset within page in shmem file
896 * data_page_index = page number in get_user_pages return
897 * data_page_offset = offset with data_page_index page.
898 * page_length = bytes to copy for this page
899 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100900 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700901 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100902 data_page_offset = offset_in_page(data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700903
904 page_length = remain;
905 if ((shmem_page_offset + page_length) > PAGE_SIZE)
906 page_length = PAGE_SIZE - shmem_page_offset;
907 if ((data_page_offset + page_length) > PAGE_SIZE)
908 page_length = PAGE_SIZE - data_page_offset;
909
Hugh Dickins5949eac2011-06-27 16:18:18 -0700910 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100911 if (IS_ERR(page)) {
912 ret = PTR_ERR(page);
913 goto out;
914 }
915
Eric Anholt280b7132009-03-12 16:56:27 -0700916 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100917 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700918 shmem_page_offset,
919 user_pages[data_page_index],
920 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100921 page_length,
922 0);
923 } else {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100924 slow_shmem_copy(page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100925 shmem_page_offset,
926 user_pages[data_page_index],
927 data_page_offset,
928 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700929 }
Eric Anholt40123c12009-03-09 13:42:30 -0700930
Chris Wilsone5281cc2010-10-28 13:45:36 +0100931 set_page_dirty(page);
932 mark_page_accessed(page);
933 page_cache_release(page);
934
Eric Anholt40123c12009-03-09 13:42:30 -0700935 remain -= page_length;
936 data_ptr += page_length;
937 offset += page_length;
938 }
939
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100940out:
Eric Anholt40123c12009-03-09 13:42:30 -0700941 for (i = 0; i < pinned_pages; i++)
942 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700943 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -0700944
945 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700946}
947
948/**
949 * Writes data to the object referenced by handle.
950 *
951 * On error, the contents of the buffer that were to be modified are undefined.
952 */
953int
954i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100955 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700956{
957 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000958 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000959 int ret;
960
961 if (args->size == 0)
962 return 0;
963
964 if (!access_ok(VERIFY_READ,
965 (char __user *)(uintptr_t)args->data_ptr,
966 args->size))
967 return -EFAULT;
968
969 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
970 args->size);
971 if (ret)
972 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700973
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100974 ret = i915_mutex_lock_interruptible(dev);
975 if (ret)
976 return ret;
977
Chris Wilson05394f32010-11-08 19:18:58 +0000978 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000979 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100980 ret = -ENOENT;
981 goto unlock;
982 }
Eric Anholt673a3942008-07-30 12:06:12 -0700983
Chris Wilson7dcd2492010-09-26 20:21:44 +0100984 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000985 if (args->offset > obj->base.size ||
986 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100987 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100988 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100989 }
990
Chris Wilsondb53a302011-02-03 11:57:46 +0000991 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
992
Eric Anholt673a3942008-07-30 12:06:12 -0700993 /* We can only do the GTT pwrite on untiled buffers, as otherwise
994 * it would end up going through the fenced access, and we'll get
995 * different detiling behavior between reading and writing.
996 * pread/pwrite currently are reading and writing from the CPU
997 * perspective, requiring manual detiling by the client.
998 */
Chris Wilson05394f32010-11-08 19:18:58 +0000999 if (obj->phys_obj)
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001000 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001001 else if (obj->gtt_space &&
Chris Wilson05394f32010-11-08 19:18:58 +00001002 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001003 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001004 if (ret)
1005 goto out;
1006
Chris Wilsond9e86c02010-11-10 16:40:20 +00001007 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1008 if (ret)
1009 goto out_unpin;
1010
1011 ret = i915_gem_object_put_fence(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001012 if (ret)
1013 goto out_unpin;
1014
1015 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
1016 if (ret == -EFAULT)
1017 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
1018
1019out_unpin:
1020 i915_gem_object_unpin(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001021 } else {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001022 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1023 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001024 goto out;
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001025
1026 ret = -EFAULT;
1027 if (!i915_gem_object_needs_bit17_swizzle(obj))
1028 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file);
1029 if (ret == -EFAULT)
1030 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file);
Eric Anholt40123c12009-03-09 13:42:30 -07001031 }
Eric Anholt673a3942008-07-30 12:06:12 -07001032
Chris Wilson35b62a82010-09-26 20:23:38 +01001033out:
Chris Wilson05394f32010-11-08 19:18:58 +00001034 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001035unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001036 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001037 return ret;
1038}
1039
1040/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001041 * Called when user space prepares to use an object with the CPU, either
1042 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001043 */
1044int
1045i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001046 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001047{
1048 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001049 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001050 uint32_t read_domains = args->read_domains;
1051 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001052 int ret;
1053
1054 if (!(dev->driver->driver_features & DRIVER_GEM))
1055 return -ENODEV;
1056
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001057 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001058 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001059 return -EINVAL;
1060
Chris Wilson21d509e2009-06-06 09:46:02 +01001061 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001062 return -EINVAL;
1063
1064 /* Having something in the write domain implies it's in the read
1065 * domain, and only that read domain. Enforce that in the request.
1066 */
1067 if (write_domain != 0 && read_domains != write_domain)
1068 return -EINVAL;
1069
Chris Wilson76c1dec2010-09-25 11:22:51 +01001070 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001071 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001072 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001073
Chris Wilson05394f32010-11-08 19:18:58 +00001074 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001075 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001076 ret = -ENOENT;
1077 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001078 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001079
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001080 if (read_domains & I915_GEM_DOMAIN_GTT) {
1081 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001082
1083 /* Silently promote "you're not bound, there was nothing to do"
1084 * to success, since the client was just asking us to
1085 * make sure everything was done.
1086 */
1087 if (ret == -EINVAL)
1088 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001089 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001090 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001091 }
1092
Chris Wilson05394f32010-11-08 19:18:58 +00001093 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001094unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001095 mutex_unlock(&dev->struct_mutex);
1096 return ret;
1097}
1098
1099/**
1100 * Called when user space has done writes to this buffer
1101 */
1102int
1103i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001104 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001105{
1106 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001107 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001108 int ret = 0;
1109
1110 if (!(dev->driver->driver_features & DRIVER_GEM))
1111 return -ENODEV;
1112
Chris Wilson76c1dec2010-09-25 11:22:51 +01001113 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001114 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001115 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001116
Chris Wilson05394f32010-11-08 19:18:58 +00001117 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001118 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001119 ret = -ENOENT;
1120 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001121 }
1122
Eric Anholt673a3942008-07-30 12:06:12 -07001123 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001124 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001125 i915_gem_object_flush_cpu_write_domain(obj);
1126
Chris Wilson05394f32010-11-08 19:18:58 +00001127 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001128unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001129 mutex_unlock(&dev->struct_mutex);
1130 return ret;
1131}
1132
1133/**
1134 * Maps the contents of an object, returning the address it is mapped
1135 * into.
1136 *
1137 * While the mapping holds a reference on the contents of the object, it doesn't
1138 * imply a ref on the object itself.
1139 */
1140int
1141i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001142 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001143{
Chris Wilsonda761a62010-10-27 17:37:08 +01001144 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001145 struct drm_i915_gem_mmap *args = data;
1146 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001147 unsigned long addr;
1148
1149 if (!(dev->driver->driver_features & DRIVER_GEM))
1150 return -ENODEV;
1151
Chris Wilson05394f32010-11-08 19:18:58 +00001152 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001153 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001154 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001155
Chris Wilsonda761a62010-10-27 17:37:08 +01001156 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1157 drm_gem_object_unreference_unlocked(obj);
1158 return -E2BIG;
1159 }
1160
Eric Anholt673a3942008-07-30 12:06:12 -07001161 down_write(&current->mm->mmap_sem);
1162 addr = do_mmap(obj->filp, 0, args->size,
1163 PROT_READ | PROT_WRITE, MAP_SHARED,
1164 args->offset);
1165 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001166 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001167 if (IS_ERR((void *)addr))
1168 return addr;
1169
1170 args->addr_ptr = (uint64_t) addr;
1171
1172 return 0;
1173}
1174
Jesse Barnesde151cf2008-11-12 10:03:55 -08001175/**
1176 * i915_gem_fault - fault a page into the GTT
1177 * vma: VMA in question
1178 * vmf: fault info
1179 *
1180 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1181 * from userspace. The fault handler takes care of binding the object to
1182 * the GTT (if needed), allocating and programming a fence register (again,
1183 * only if needed based on whether the old reg is still valid or the object
1184 * is tiled) and inserting a new PTE into the faulting process.
1185 *
1186 * Note that the faulting process may involve evicting existing objects
1187 * from the GTT and/or fence registers to make room. So performance may
1188 * suffer if the GTT working set is large or there are few fence registers
1189 * left.
1190 */
1191int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1192{
Chris Wilson05394f32010-11-08 19:18:58 +00001193 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1194 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001195 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001196 pgoff_t page_offset;
1197 unsigned long pfn;
1198 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001199 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001200
1201 /* We don't use vmf->pgoff since that has the fake offset */
1202 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1203 PAGE_SHIFT;
1204
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001205 ret = i915_mutex_lock_interruptible(dev);
1206 if (ret)
1207 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001208
Chris Wilsondb53a302011-02-03 11:57:46 +00001209 trace_i915_gem_object_fault(obj, page_offset, true, write);
1210
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001211 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001212 if (!obj->map_and_fenceable) {
1213 ret = i915_gem_object_unbind(obj);
1214 if (ret)
1215 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001216 }
Chris Wilson05394f32010-11-08 19:18:58 +00001217 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001218 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001219 if (ret)
1220 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001221
Eric Anholte92d03b2011-06-14 16:43:09 -07001222 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1223 if (ret)
1224 goto unlock;
1225 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001226
Chris Wilsond9e86c02010-11-10 16:40:20 +00001227 if (obj->tiling_mode == I915_TILING_NONE)
1228 ret = i915_gem_object_put_fence(obj);
1229 else
Chris Wilsonce453d82011-02-21 14:43:56 +00001230 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001231 if (ret)
1232 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001233
Chris Wilson05394f32010-11-08 19:18:58 +00001234 if (i915_gem_object_is_inactive(obj))
1235 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001236
Chris Wilson6299f992010-11-24 12:23:44 +00001237 obj->fault_mappable = true;
1238
Chris Wilson05394f32010-11-08 19:18:58 +00001239 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001240 page_offset;
1241
1242 /* Finally, remap it using the new GTT offset */
1243 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001244unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001245 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001246out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001247 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001248 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001249 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001250 /* Give the error handler a chance to run and move the
1251 * objects off the GPU active list. Next time we service the
1252 * fault, we should be able to transition the page into the
1253 * GTT without touching the GPU (and so avoid further
1254 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1255 * with coherency, just lost writes.
1256 */
Chris Wilson045e7692010-11-07 09:18:22 +00001257 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001258 case 0:
1259 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001260 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001261 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001262 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001263 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001264 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001265 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001266 }
1267}
1268
1269/**
Chris Wilson901782b2009-07-10 08:18:50 +01001270 * i915_gem_release_mmap - remove physical page mappings
1271 * @obj: obj in question
1272 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001273 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001274 * relinquish ownership of the pages back to the system.
1275 *
1276 * It is vital that we remove the page mapping if we have mapped a tiled
1277 * object through the GTT and then lose the fence register due to
1278 * resource pressure. Similarly if the object has been moved out of the
1279 * aperture, than pages mapped into userspace must be revoked. Removing the
1280 * mapping will then trigger a page fault on the next user access, allowing
1281 * fixup by i915_gem_fault().
1282 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001283void
Chris Wilson05394f32010-11-08 19:18:58 +00001284i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001285{
Chris Wilson6299f992010-11-24 12:23:44 +00001286 if (!obj->fault_mappable)
1287 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001288
Chris Wilsonf6e47882011-03-20 21:09:12 +00001289 if (obj->base.dev->dev_mapping)
1290 unmap_mapping_range(obj->base.dev->dev_mapping,
1291 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1292 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001293
Chris Wilson6299f992010-11-24 12:23:44 +00001294 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001295}
1296
Chris Wilson92b88ae2010-11-09 11:47:32 +00001297static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001298i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001299{
Chris Wilsone28f8712011-07-18 13:11:49 -07001300 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001301
1302 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001303 tiling_mode == I915_TILING_NONE)
1304 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001305
1306 /* Previous chips need a power-of-two fence region when tiling */
1307 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001308 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001309 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001310 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001311
Chris Wilsone28f8712011-07-18 13:11:49 -07001312 while (gtt_size < size)
1313 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001314
Chris Wilsone28f8712011-07-18 13:11:49 -07001315 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001316}
1317
Jesse Barnesde151cf2008-11-12 10:03:55 -08001318/**
1319 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1320 * @obj: object to check
1321 *
1322 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001323 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001324 */
1325static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001326i915_gem_get_gtt_alignment(struct drm_device *dev,
1327 uint32_t size,
1328 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001329{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001330 /*
1331 * Minimum alignment is 4k (GTT page size), but might be greater
1332 * if a fence register is needed for the object.
1333 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001334 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001335 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001336 return 4096;
1337
1338 /*
1339 * Previous chips need to be aligned to the size of the smallest
1340 * fence register that can contain the object.
1341 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001342 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001343}
1344
Daniel Vetter5e783302010-11-14 22:32:36 +01001345/**
1346 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1347 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001348 * @dev: the device
1349 * @size: size of the object
1350 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001351 *
1352 * Return the required GTT alignment for an object, only taking into account
1353 * unfenced tiled surface requirements.
1354 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001355uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001356i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1357 uint32_t size,
1358 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001359{
Daniel Vetter5e783302010-11-14 22:32:36 +01001360 /*
1361 * Minimum alignment is 4k (GTT page size) for sane hw.
1362 */
1363 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001364 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001365 return 4096;
1366
Chris Wilsone28f8712011-07-18 13:11:49 -07001367 /* Previous hardware however needs to be aligned to a power-of-two
1368 * tile height. The simplest method for determining this is to reuse
1369 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001370 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001371 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001372}
1373
Jesse Barnesde151cf2008-11-12 10:03:55 -08001374int
Dave Airlieff72145b2011-02-07 12:16:14 +10001375i915_gem_mmap_gtt(struct drm_file *file,
1376 struct drm_device *dev,
1377 uint32_t handle,
1378 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001379{
Chris Wilsonda761a62010-10-27 17:37:08 +01001380 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001381 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001382 int ret;
1383
1384 if (!(dev->driver->driver_features & DRIVER_GEM))
1385 return -ENODEV;
1386
Chris Wilson76c1dec2010-09-25 11:22:51 +01001387 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001388 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001389 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001390
Dave Airlieff72145b2011-02-07 12:16:14 +10001391 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001392 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001393 ret = -ENOENT;
1394 goto unlock;
1395 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001396
Chris Wilson05394f32010-11-08 19:18:58 +00001397 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001398 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001399 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001400 }
1401
Chris Wilson05394f32010-11-08 19:18:58 +00001402 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001403 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001404 ret = -EINVAL;
1405 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001406 }
1407
Chris Wilson05394f32010-11-08 19:18:58 +00001408 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001409 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001410 if (ret)
1411 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001412 }
1413
Dave Airlieff72145b2011-02-07 12:16:14 +10001414 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001415
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001416out:
Chris Wilson05394f32010-11-08 19:18:58 +00001417 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001418unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001419 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001420 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001421}
1422
Dave Airlieff72145b2011-02-07 12:16:14 +10001423/**
1424 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1425 * @dev: DRM device
1426 * @data: GTT mapping ioctl data
1427 * @file: GEM object info
1428 *
1429 * Simply returns the fake offset to userspace so it can mmap it.
1430 * The mmap call will end up in drm_gem_mmap(), which will set things
1431 * up so we can get faults in the handler above.
1432 *
1433 * The fault handler will take care of binding the object into the GTT
1434 * (since it may have been evicted to make room for something), allocating
1435 * a fence register, and mapping the appropriate aperture address into
1436 * userspace.
1437 */
1438int
1439i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1440 struct drm_file *file)
1441{
1442 struct drm_i915_gem_mmap_gtt *args = data;
1443
1444 if (!(dev->driver->driver_features & DRIVER_GEM))
1445 return -ENODEV;
1446
1447 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1448}
1449
1450
Chris Wilsone5281cc2010-10-28 13:45:36 +01001451static int
Chris Wilson05394f32010-11-08 19:18:58 +00001452i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001453 gfp_t gfpmask)
1454{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001455 int page_count, i;
1456 struct address_space *mapping;
1457 struct inode *inode;
1458 struct page *page;
1459
1460 /* Get the list of pages out of our struct file. They'll be pinned
1461 * at this point until we release them.
1462 */
Chris Wilson05394f32010-11-08 19:18:58 +00001463 page_count = obj->base.size / PAGE_SIZE;
1464 BUG_ON(obj->pages != NULL);
1465 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1466 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001467 return -ENOMEM;
1468
Chris Wilson05394f32010-11-08 19:18:58 +00001469 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001470 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001471 gfpmask |= mapping_gfp_mask(mapping);
1472
Chris Wilsone5281cc2010-10-28 13:45:36 +01001473 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001474 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001475 if (IS_ERR(page))
1476 goto err_pages;
1477
Chris Wilson05394f32010-11-08 19:18:58 +00001478 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001479 }
1480
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001481 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001482 i915_gem_object_do_bit_17_swizzle(obj);
1483
1484 return 0;
1485
1486err_pages:
1487 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001488 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001489
Chris Wilson05394f32010-11-08 19:18:58 +00001490 drm_free_large(obj->pages);
1491 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001492 return PTR_ERR(page);
1493}
1494
Chris Wilson5cdf5882010-09-27 15:51:07 +01001495static void
Chris Wilson05394f32010-11-08 19:18:58 +00001496i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001497{
Chris Wilson05394f32010-11-08 19:18:58 +00001498 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001499 int i;
1500
Chris Wilson05394f32010-11-08 19:18:58 +00001501 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001502
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001503 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001504 i915_gem_object_save_bit_17_swizzle(obj);
1505
Chris Wilson05394f32010-11-08 19:18:58 +00001506 if (obj->madv == I915_MADV_DONTNEED)
1507 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001508
1509 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001510 if (obj->dirty)
1511 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001512
Chris Wilson05394f32010-11-08 19:18:58 +00001513 if (obj->madv == I915_MADV_WILLNEED)
1514 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001515
Chris Wilson05394f32010-11-08 19:18:58 +00001516 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001517 }
Chris Wilson05394f32010-11-08 19:18:58 +00001518 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001519
Chris Wilson05394f32010-11-08 19:18:58 +00001520 drm_free_large(obj->pages);
1521 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001522}
1523
Chris Wilson54cf91d2010-11-25 18:00:26 +00001524void
Chris Wilson05394f32010-11-08 19:18:58 +00001525i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001526 struct intel_ring_buffer *ring,
1527 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001528{
Chris Wilson05394f32010-11-08 19:18:58 +00001529 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001530 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001531
Zou Nan hai852835f2010-05-21 09:08:56 +08001532 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001533 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001534
1535 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001536 if (!obj->active) {
1537 drm_gem_object_reference(&obj->base);
1538 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001539 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001540
Eric Anholt673a3942008-07-30 12:06:12 -07001541 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001542 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1543 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001544
Chris Wilson05394f32010-11-08 19:18:58 +00001545 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001546 if (obj->fenced_gpu_access) {
1547 struct drm_i915_fence_reg *reg;
1548
1549 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1550
1551 obj->last_fenced_seqno = seqno;
1552 obj->last_fenced_ring = ring;
1553
1554 reg = &dev_priv->fence_regs[obj->fence_reg];
1555 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1556 }
1557}
1558
1559static void
1560i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1561{
1562 list_del_init(&obj->ring_list);
1563 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001564}
1565
Eric Anholtce44b0e2008-11-06 16:00:31 -08001566static void
Chris Wilson05394f32010-11-08 19:18:58 +00001567i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001568{
Chris Wilson05394f32010-11-08 19:18:58 +00001569 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001570 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001571
Chris Wilson05394f32010-11-08 19:18:58 +00001572 BUG_ON(!obj->active);
1573 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001574
1575 i915_gem_object_move_off_active(obj);
1576}
1577
1578static void
1579i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1580{
1581 struct drm_device *dev = obj->base.dev;
1582 struct drm_i915_private *dev_priv = dev->dev_private;
1583
1584 if (obj->pin_count != 0)
1585 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1586 else
1587 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1588
1589 BUG_ON(!list_empty(&obj->gpu_write_list));
1590 BUG_ON(!obj->active);
1591 obj->ring = NULL;
1592
1593 i915_gem_object_move_off_active(obj);
1594 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001595
1596 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001597 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001598 drm_gem_object_unreference(&obj->base);
1599
1600 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001601}
Eric Anholt673a3942008-07-30 12:06:12 -07001602
Chris Wilson963b4832009-09-20 23:03:54 +01001603/* Immediately discard the backing storage */
1604static void
Chris Wilson05394f32010-11-08 19:18:58 +00001605i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001606{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001607 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001608
Chris Wilsonae9fed62010-08-07 11:01:30 +01001609 /* Our goal here is to return as much of the memory as
1610 * is possible back to the system as we are called from OOM.
1611 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001612 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001613 */
Chris Wilson05394f32010-11-08 19:18:58 +00001614 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001615 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001616
Chris Wilson05394f32010-11-08 19:18:58 +00001617 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001618}
1619
1620static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001621i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001622{
Chris Wilson05394f32010-11-08 19:18:58 +00001623 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001624}
1625
Eric Anholt673a3942008-07-30 12:06:12 -07001626static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001627i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1628 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001629{
Chris Wilson05394f32010-11-08 19:18:58 +00001630 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001631
Chris Wilson05394f32010-11-08 19:18:58 +00001632 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001633 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001634 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001635 if (obj->base.write_domain & flush_domains) {
1636 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001637
Chris Wilson05394f32010-11-08 19:18:58 +00001638 obj->base.write_domain = 0;
1639 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001640 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001641 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001642
Daniel Vetter63560392010-02-19 11:51:59 +01001643 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001644 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001645 old_write_domain);
1646 }
1647 }
1648}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001649
Chris Wilson3cce4692010-10-27 16:11:02 +01001650int
Chris Wilsondb53a302011-02-03 11:57:46 +00001651i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001652 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001653 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001654{
Chris Wilsondb53a302011-02-03 11:57:46 +00001655 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001656 uint32_t seqno;
1657 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001658 int ret;
1659
1660 BUG_ON(request == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001661
Chris Wilson3cce4692010-10-27 16:11:02 +01001662 ret = ring->add_request(ring, &seqno);
1663 if (ret)
1664 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001665
Chris Wilsondb53a302011-02-03 11:57:46 +00001666 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001667
1668 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001669 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001670 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001671 was_empty = list_empty(&ring->request_list);
1672 list_add_tail(&request->list, &ring->request_list);
1673
Chris Wilsondb53a302011-02-03 11:57:46 +00001674 if (file) {
1675 struct drm_i915_file_private *file_priv = file->driver_priv;
1676
Chris Wilson1c255952010-09-26 11:03:27 +01001677 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001678 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001679 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001680 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001681 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001682 }
Eric Anholt673a3942008-07-30 12:06:12 -07001683
Chris Wilsondb53a302011-02-03 11:57:46 +00001684 ring->outstanding_lazy_request = false;
1685
Ben Gamarif65d9422009-09-14 17:48:44 -04001686 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001687 if (i915_enable_hangcheck) {
1688 mod_timer(&dev_priv->hangcheck_timer,
1689 jiffies +
1690 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1691 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001692 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001693 queue_delayed_work(dev_priv->wq,
1694 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001695 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001696 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001697}
1698
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001699static inline void
1700i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001701{
Chris Wilson1c255952010-09-26 11:03:27 +01001702 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001703
Chris Wilson1c255952010-09-26 11:03:27 +01001704 if (!file_priv)
1705 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001706
Chris Wilson1c255952010-09-26 11:03:27 +01001707 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001708 if (request->file_priv) {
1709 list_del(&request->client_list);
1710 request->file_priv = NULL;
1711 }
Chris Wilson1c255952010-09-26 11:03:27 +01001712 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001713}
1714
Chris Wilsondfaae392010-09-22 10:31:52 +01001715static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1716 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001717{
Chris Wilsondfaae392010-09-22 10:31:52 +01001718 while (!list_empty(&ring->request_list)) {
1719 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001720
Chris Wilsondfaae392010-09-22 10:31:52 +01001721 request = list_first_entry(&ring->request_list,
1722 struct drm_i915_gem_request,
1723 list);
1724
1725 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001726 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001727 kfree(request);
1728 }
1729
1730 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001731 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001732
Chris Wilson05394f32010-11-08 19:18:58 +00001733 obj = list_first_entry(&ring->active_list,
1734 struct drm_i915_gem_object,
1735 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001736
Chris Wilson05394f32010-11-08 19:18:58 +00001737 obj->base.write_domain = 0;
1738 list_del_init(&obj->gpu_write_list);
1739 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001740 }
Eric Anholt673a3942008-07-30 12:06:12 -07001741}
1742
Chris Wilson312817a2010-11-22 11:50:11 +00001743static void i915_gem_reset_fences(struct drm_device *dev)
1744{
1745 struct drm_i915_private *dev_priv = dev->dev_private;
1746 int i;
1747
Daniel Vetter4b9de732011-10-09 21:52:02 +02001748 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001749 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001750 struct drm_i915_gem_object *obj = reg->obj;
1751
1752 if (!obj)
1753 continue;
1754
1755 if (obj->tiling_mode)
1756 i915_gem_release_mmap(obj);
1757
Chris Wilsond9e86c02010-11-10 16:40:20 +00001758 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1759 reg->obj->fenced_gpu_access = false;
1760 reg->obj->last_fenced_seqno = 0;
1761 reg->obj->last_fenced_ring = NULL;
1762 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001763 }
1764}
1765
Chris Wilson069efc12010-09-30 16:53:18 +01001766void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001767{
Chris Wilsondfaae392010-09-22 10:31:52 +01001768 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001769 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001770 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001771
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001772 for (i = 0; i < I915_NUM_RINGS; i++)
1773 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001774
1775 /* Remove anything from the flushing lists. The GPU cache is likely
1776 * to be lost on reset along with the data, so simply move the
1777 * lost bo to the inactive list.
1778 */
1779 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001780 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001781 struct drm_i915_gem_object,
1782 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001783
Chris Wilson05394f32010-11-08 19:18:58 +00001784 obj->base.write_domain = 0;
1785 list_del_init(&obj->gpu_write_list);
1786 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001787 }
Chris Wilson9375e442010-09-19 12:21:28 +01001788
Chris Wilsondfaae392010-09-22 10:31:52 +01001789 /* Move everything out of the GPU domains to ensure we do any
1790 * necessary invalidation upon reuse.
1791 */
Chris Wilson05394f32010-11-08 19:18:58 +00001792 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001793 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001794 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001795 {
Chris Wilson05394f32010-11-08 19:18:58 +00001796 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001797 }
Chris Wilson069efc12010-09-30 16:53:18 +01001798
1799 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001800 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001801}
1802
1803/**
1804 * This function clears the request list as sequence numbers are passed.
1805 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001806static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001807i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001808{
Eric Anholt673a3942008-07-30 12:06:12 -07001809 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001810 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001811
Chris Wilsondb53a302011-02-03 11:57:46 +00001812 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001813 return;
1814
Chris Wilsondb53a302011-02-03 11:57:46 +00001815 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001816
Chris Wilson78501ea2010-10-27 12:18:21 +01001817 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001818
Chris Wilson076e2c02011-01-21 10:07:18 +00001819 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001820 if (seqno >= ring->sync_seqno[i])
1821 ring->sync_seqno[i] = 0;
1822
Zou Nan hai852835f2010-05-21 09:08:56 +08001823 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001824 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001825
Zou Nan hai852835f2010-05-21 09:08:56 +08001826 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001827 struct drm_i915_gem_request,
1828 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001829
Chris Wilsondfaae392010-09-22 10:31:52 +01001830 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001831 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001832
Chris Wilsondb53a302011-02-03 11:57:46 +00001833 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001834
1835 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001836 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001837 kfree(request);
1838 }
1839
1840 /* Move any buffers on the active list that are no longer referenced
1841 * by the ringbuffer to the flushing/inactive lists as appropriate.
1842 */
1843 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001844 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001845
Akshay Joshi0206e352011-08-16 15:34:10 -04001846 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001847 struct drm_i915_gem_object,
1848 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001849
Chris Wilson05394f32010-11-08 19:18:58 +00001850 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001851 break;
1852
Chris Wilson05394f32010-11-08 19:18:58 +00001853 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001854 i915_gem_object_move_to_flushing(obj);
1855 else
1856 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001857 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001858
Chris Wilsondb53a302011-02-03 11:57:46 +00001859 if (unlikely(ring->trace_irq_seqno &&
1860 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001861 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001862 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001863 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001864
Chris Wilsondb53a302011-02-03 11:57:46 +00001865 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001866}
1867
1868void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001869i915_gem_retire_requests(struct drm_device *dev)
1870{
1871 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001872 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001873
Chris Wilsonbe726152010-07-23 23:18:50 +01001874 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001875 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001876
1877 /* We must be careful that during unbind() we do not
1878 * accidentally infinitely recurse into retire requests.
1879 * Currently:
1880 * retire -> free -> unbind -> wait -> retire_ring
1881 */
Chris Wilson05394f32010-11-08 19:18:58 +00001882 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001883 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001884 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001885 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001886 }
1887
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001888 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001889 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001890}
1891
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001892static void
Eric Anholt673a3942008-07-30 12:06:12 -07001893i915_gem_retire_work_handler(struct work_struct *work)
1894{
1895 drm_i915_private_t *dev_priv;
1896 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001897 bool idle;
1898 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001899
1900 dev_priv = container_of(work, drm_i915_private_t,
1901 mm.retire_work.work);
1902 dev = dev_priv->dev;
1903
Chris Wilson891b48c2010-09-29 12:26:37 +01001904 /* Come back later if the device is busy... */
1905 if (!mutex_trylock(&dev->struct_mutex)) {
1906 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1907 return;
1908 }
1909
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001910 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001911
Chris Wilson0a587052011-01-09 21:05:44 +00001912 /* Send a periodic flush down the ring so we don't hold onto GEM
1913 * objects indefinitely.
1914 */
1915 idle = true;
1916 for (i = 0; i < I915_NUM_RINGS; i++) {
1917 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1918
1919 if (!list_empty(&ring->gpu_write_list)) {
1920 struct drm_i915_gem_request *request;
1921 int ret;
1922
Chris Wilsondb53a302011-02-03 11:57:46 +00001923 ret = i915_gem_flush_ring(ring,
1924 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001925 request = kzalloc(sizeof(*request), GFP_KERNEL);
1926 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001927 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001928 kfree(request);
1929 }
1930
1931 idle &= list_empty(&ring->request_list);
1932 }
1933
1934 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001935 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001936
Eric Anholt673a3942008-07-30 12:06:12 -07001937 mutex_unlock(&dev->struct_mutex);
1938}
1939
Chris Wilsondb53a302011-02-03 11:57:46 +00001940/**
1941 * Waits for a sequence number to be signaled, and cleans up the
1942 * request and object lists appropriately for that event.
1943 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001944int
Chris Wilsondb53a302011-02-03 11:57:46 +00001945i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001946 uint32_t seqno,
1947 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001948{
Chris Wilsondb53a302011-02-03 11:57:46 +00001949 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001950 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001951 int ret = 0;
1952
1953 BUG_ON(seqno == 0);
1954
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001955 if (atomic_read(&dev_priv->mm.wedged)) {
1956 struct completion *x = &dev_priv->error_completion;
1957 bool recovery_complete;
1958 unsigned long flags;
1959
1960 /* Give the error handler a chance to run. */
1961 spin_lock_irqsave(&x->wait.lock, flags);
1962 recovery_complete = x->done > 0;
1963 spin_unlock_irqrestore(&x->wait.lock, flags);
1964
1965 return recovery_complete ? -EIO : -EAGAIN;
1966 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001967
Chris Wilson5d97eb62010-11-10 20:40:02 +00001968 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001969 struct drm_i915_gem_request *request;
1970
1971 request = kzalloc(sizeof(*request), GFP_KERNEL);
1972 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001973 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001974
Chris Wilsondb53a302011-02-03 11:57:46 +00001975 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001976 if (ret) {
1977 kfree(request);
1978 return ret;
1979 }
1980
1981 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001982 }
1983
Chris Wilson78501ea2010-10-27 12:18:21 +01001984 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001985 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001986 ier = I915_READ(DEIER) | I915_READ(GTIER);
1987 else
1988 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001989 if (!ier) {
1990 DRM_ERROR("something (likely vbetool) disabled "
1991 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001992 ring->dev->driver->irq_preinstall(ring->dev);
1993 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001994 }
1995
Chris Wilsondb53a302011-02-03 11:57:46 +00001996 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001997
Chris Wilsonb2223492010-10-27 15:27:33 +01001998 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001999 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002000 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002001 ret = wait_event_interruptible(ring->irq_queue,
2002 i915_seqno_passed(ring->get_seqno(ring), seqno)
2003 || atomic_read(&dev_priv->mm.wedged));
2004 else
2005 wait_event(ring->irq_queue,
2006 i915_seqno_passed(ring->get_seqno(ring), seqno)
2007 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002008
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002009 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08002010 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
2011 seqno) ||
2012 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00002013 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01002014 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002015
Chris Wilsondb53a302011-02-03 11:57:46 +00002016 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002017 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002018 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002019 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002020
2021 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002022 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002023 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002024 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002025
2026 /* Directly dispatch request retiring. While we have the work queue
2027 * to handle this, the waiter on a request often wants an associated
2028 * buffer to have made it to the inactive list, and we would need
2029 * a separate wait queue to handle that.
2030 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002031 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00002032 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002033
2034 return ret;
2035}
2036
Daniel Vetter48764bf2009-09-15 22:57:32 +02002037/**
Eric Anholt673a3942008-07-30 12:06:12 -07002038 * Ensures that all rendering to the object has completed and the object is
2039 * safe to unbind from the GTT or access from the CPU.
2040 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00002041int
Chris Wilsonce453d82011-02-21 14:43:56 +00002042i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002043{
Eric Anholt673a3942008-07-30 12:06:12 -07002044 int ret;
2045
Eric Anholte47c68e2008-11-14 13:35:19 -08002046 /* This function only exists to support waiting for existing rendering,
2047 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002048 */
Chris Wilson05394f32010-11-08 19:18:58 +00002049 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002050
2051 /* If there is rendering queued on the buffer being evicted, wait for
2052 * it.
2053 */
Chris Wilson05394f32010-11-08 19:18:58 +00002054 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002055 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
2056 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01002057 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002058 return ret;
2059 }
2060
2061 return 0;
2062}
2063
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002064static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2065{
2066 u32 old_write_domain, old_read_domains;
2067
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002068 /* Act a barrier for all accesses through the GTT */
2069 mb();
2070
2071 /* Force a pagefault for domain tracking on next user access */
2072 i915_gem_release_mmap(obj);
2073
Keith Packardb97c3d92011-06-24 21:02:59 -07002074 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2075 return;
2076
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002077 old_read_domains = obj->base.read_domains;
2078 old_write_domain = obj->base.write_domain;
2079
2080 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2081 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2082
2083 trace_i915_gem_object_change_domain(obj,
2084 old_read_domains,
2085 old_write_domain);
2086}
2087
Eric Anholt673a3942008-07-30 12:06:12 -07002088/**
2089 * Unbinds an object from the GTT aperture.
2090 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002091int
Chris Wilson05394f32010-11-08 19:18:58 +00002092i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002093{
Eric Anholt673a3942008-07-30 12:06:12 -07002094 int ret = 0;
2095
Chris Wilson05394f32010-11-08 19:18:58 +00002096 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002097 return 0;
2098
Chris Wilson05394f32010-11-08 19:18:58 +00002099 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002100 DRM_ERROR("Attempting to unbind pinned buffer\n");
2101 return -EINVAL;
2102 }
2103
Chris Wilsona8198ee2011-04-13 22:04:09 +01002104 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01002105 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002106 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002107 /* Continue on if we fail due to EIO, the GPU is hung so we
2108 * should be safe and we need to cleanup or else we might
2109 * cause memory corruption through use-after-free.
2110 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002111
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002112 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002113
2114 /* Move the object to the CPU domain to ensure that
2115 * any possible CPU writes while it's not in the GTT
2116 * are flushed when we go to remap it.
2117 */
2118 if (ret == 0)
2119 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2120 if (ret == -ERESTARTSYS)
2121 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002122 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002123 /* In the event of a disaster, abandon all caches and
2124 * hope for the best.
2125 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002126 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002127 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002128 }
Eric Anholt673a3942008-07-30 12:06:12 -07002129
Daniel Vetter96b47b62009-12-15 17:50:00 +01002130 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002131 ret = i915_gem_object_put_fence(obj);
2132 if (ret == -ERESTARTSYS)
2133 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002134
Chris Wilsondb53a302011-02-03 11:57:46 +00002135 trace_i915_gem_object_unbind(obj);
2136
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002137 i915_gem_gtt_unbind_object(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002138 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002139
Chris Wilson6299f992010-11-24 12:23:44 +00002140 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002141 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002142 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002143 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002144
Chris Wilson05394f32010-11-08 19:18:58 +00002145 drm_mm_put_block(obj->gtt_space);
2146 obj->gtt_space = NULL;
2147 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002148
Chris Wilson05394f32010-11-08 19:18:58 +00002149 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002150 i915_gem_object_truncate(obj);
2151
Chris Wilson8dc17752010-07-23 23:18:51 +01002152 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002153}
2154
Chris Wilson88241782011-01-07 17:09:48 +00002155int
Chris Wilsondb53a302011-02-03 11:57:46 +00002156i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002157 uint32_t invalidate_domains,
2158 uint32_t flush_domains)
2159{
Chris Wilson88241782011-01-07 17:09:48 +00002160 int ret;
2161
Chris Wilson36d527d2011-03-19 22:26:49 +00002162 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2163 return 0;
2164
Chris Wilsondb53a302011-02-03 11:57:46 +00002165 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2166
Chris Wilson88241782011-01-07 17:09:48 +00002167 ret = ring->flush(ring, invalidate_domains, flush_domains);
2168 if (ret)
2169 return ret;
2170
Chris Wilson36d527d2011-03-19 22:26:49 +00002171 if (flush_domains & I915_GEM_GPU_DOMAINS)
2172 i915_gem_process_flushing_list(ring, flush_domains);
2173
Chris Wilson88241782011-01-07 17:09:48 +00002174 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002175}
2176
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002177static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002178{
Chris Wilson88241782011-01-07 17:09:48 +00002179 int ret;
2180
Chris Wilson395b70b2010-10-28 21:28:46 +01002181 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002182 return 0;
2183
Chris Wilson88241782011-01-07 17:09:48 +00002184 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002185 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002186 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002187 if (ret)
2188 return ret;
2189 }
2190
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002191 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2192 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002193}
2194
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002195int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002196{
2197 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002198 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002199
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002200 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002201 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002202 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002203 if (ret)
2204 return ret;
2205 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002206
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002207 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002208}
2209
Daniel Vetterc6642782010-11-12 13:46:18 +00002210static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2211 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002212{
Chris Wilson05394f32010-11-08 19:18:58 +00002213 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002214 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002215 u32 size = obj->gtt_space->size;
2216 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002217 uint64_t val;
2218
Chris Wilson05394f32010-11-08 19:18:58 +00002219 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002220 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002221 val |= obj->gtt_offset & 0xfffff000;
2222 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002223 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2224
Chris Wilson05394f32010-11-08 19:18:58 +00002225 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002226 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2227 val |= I965_FENCE_REG_VALID;
2228
Daniel Vetterc6642782010-11-12 13:46:18 +00002229 if (pipelined) {
2230 int ret = intel_ring_begin(pipelined, 6);
2231 if (ret)
2232 return ret;
2233
2234 intel_ring_emit(pipelined, MI_NOOP);
2235 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2236 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2237 intel_ring_emit(pipelined, (u32)val);
2238 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2239 intel_ring_emit(pipelined, (u32)(val >> 32));
2240 intel_ring_advance(pipelined);
2241 } else
2242 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2243
2244 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002245}
2246
Daniel Vetterc6642782010-11-12 13:46:18 +00002247static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2248 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002249{
Chris Wilson05394f32010-11-08 19:18:58 +00002250 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002251 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002252 u32 size = obj->gtt_space->size;
2253 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002254 uint64_t val;
2255
Chris Wilson05394f32010-11-08 19:18:58 +00002256 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002257 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002258 val |= obj->gtt_offset & 0xfffff000;
2259 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2260 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002261 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2262 val |= I965_FENCE_REG_VALID;
2263
Daniel Vetterc6642782010-11-12 13:46:18 +00002264 if (pipelined) {
2265 int ret = intel_ring_begin(pipelined, 6);
2266 if (ret)
2267 return ret;
2268
2269 intel_ring_emit(pipelined, MI_NOOP);
2270 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2271 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2272 intel_ring_emit(pipelined, (u32)val);
2273 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2274 intel_ring_emit(pipelined, (u32)(val >> 32));
2275 intel_ring_advance(pipelined);
2276 } else
2277 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2278
2279 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002280}
2281
Daniel Vetterc6642782010-11-12 13:46:18 +00002282static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2283 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002284{
Chris Wilson05394f32010-11-08 19:18:58 +00002285 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002286 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002287 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002288 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002289 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002290
Daniel Vetterc6642782010-11-12 13:46:18 +00002291 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2292 (size & -size) != size ||
2293 (obj->gtt_offset & (size - 1)),
2294 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2295 obj->gtt_offset, obj->map_and_fenceable, size))
2296 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002297
Daniel Vetterc6642782010-11-12 13:46:18 +00002298 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002299 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002300 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002301 tile_width = 512;
2302
2303 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002304 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002305 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002306
Chris Wilson05394f32010-11-08 19:18:58 +00002307 val = obj->gtt_offset;
2308 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002309 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002310 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002311 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2312 val |= I830_FENCE_REG_VALID;
2313
Chris Wilson05394f32010-11-08 19:18:58 +00002314 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002315 if (fence_reg < 8)
2316 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002317 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002318 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002319
2320 if (pipelined) {
2321 int ret = intel_ring_begin(pipelined, 4);
2322 if (ret)
2323 return ret;
2324
2325 intel_ring_emit(pipelined, MI_NOOP);
2326 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2327 intel_ring_emit(pipelined, fence_reg);
2328 intel_ring_emit(pipelined, val);
2329 intel_ring_advance(pipelined);
2330 } else
2331 I915_WRITE(fence_reg, val);
2332
2333 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002334}
2335
Daniel Vetterc6642782010-11-12 13:46:18 +00002336static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2337 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002338{
Chris Wilson05394f32010-11-08 19:18:58 +00002339 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002340 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002341 u32 size = obj->gtt_space->size;
2342 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002343 uint32_t val;
2344 uint32_t pitch_val;
2345
Daniel Vetterc6642782010-11-12 13:46:18 +00002346 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2347 (size & -size) != size ||
2348 (obj->gtt_offset & (size - 1)),
2349 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2350 obj->gtt_offset, size))
2351 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002352
Chris Wilson05394f32010-11-08 19:18:58 +00002353 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002354 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002355
Chris Wilson05394f32010-11-08 19:18:58 +00002356 val = obj->gtt_offset;
2357 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002358 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002359 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002360 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2361 val |= I830_FENCE_REG_VALID;
2362
Daniel Vetterc6642782010-11-12 13:46:18 +00002363 if (pipelined) {
2364 int ret = intel_ring_begin(pipelined, 4);
2365 if (ret)
2366 return ret;
2367
2368 intel_ring_emit(pipelined, MI_NOOP);
2369 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2370 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2371 intel_ring_emit(pipelined, val);
2372 intel_ring_advance(pipelined);
2373 } else
2374 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2375
2376 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002377}
2378
Chris Wilsond9e86c02010-11-10 16:40:20 +00002379static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2380{
2381 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2382}
2383
2384static int
2385i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002386 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002387{
2388 int ret;
2389
2390 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002391 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002392 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002393 0, obj->base.write_domain);
2394 if (ret)
2395 return ret;
2396 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002397
2398 obj->fenced_gpu_access = false;
2399 }
2400
2401 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2402 if (!ring_passed_seqno(obj->last_fenced_ring,
2403 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002404 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002405 obj->last_fenced_seqno,
2406 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002407 if (ret)
2408 return ret;
2409 }
2410
2411 obj->last_fenced_seqno = 0;
2412 obj->last_fenced_ring = NULL;
2413 }
2414
Chris Wilson63256ec2011-01-04 18:42:07 +00002415 /* Ensure that all CPU reads are completed before installing a fence
2416 * and all writes before removing the fence.
2417 */
2418 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2419 mb();
2420
Chris Wilsond9e86c02010-11-10 16:40:20 +00002421 return 0;
2422}
2423
2424int
2425i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2426{
2427 int ret;
2428
2429 if (obj->tiling_mode)
2430 i915_gem_release_mmap(obj);
2431
Chris Wilsonce453d82011-02-21 14:43:56 +00002432 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002433 if (ret)
2434 return ret;
2435
2436 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2437 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002438
2439 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002440 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 Wilson1690e1e2011-12-14 13:57:08 +01002464 if (!reg->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) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002474 if (reg->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,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002549 reg->setup_seqno,
2550 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002551 if (ret)
2552 return ret;
2553 }
2554
2555 reg->setup_seqno = 0;
2556 }
2557 } else if (obj->last_fenced_ring &&
2558 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002559 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002560 if (ret)
2561 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002562 }
2563
Eric Anholta09ba7f2009-08-29 12:49:51 -07002564 return 0;
2565 }
2566
Chris Wilsond9e86c02010-11-10 16:40:20 +00002567 reg = i915_find_fence_reg(dev, pipelined);
2568 if (reg == NULL)
2569 return -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002570
Chris Wilsonce453d82011-02-21 14:43:56 +00002571 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002572 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002573 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002574
Chris Wilsond9e86c02010-11-10 16:40:20 +00002575 if (reg->obj) {
2576 struct drm_i915_gem_object *old = reg->obj;
2577
2578 drm_gem_object_reference(&old->base);
2579
2580 if (old->tiling_mode)
2581 i915_gem_release_mmap(old);
2582
Chris Wilsonce453d82011-02-21 14:43:56 +00002583 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002584 if (ret) {
2585 drm_gem_object_unreference(&old->base);
2586 return ret;
2587 }
2588
2589 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2590 pipelined = NULL;
2591
2592 old->fence_reg = I915_FENCE_REG_NONE;
2593 old->last_fenced_ring = pipelined;
2594 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002595 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002596
2597 drm_gem_object_unreference(&old->base);
2598 } else if (obj->last_fenced_seqno == 0)
2599 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002600
Jesse Barnesde151cf2008-11-12 10:03:55 -08002601 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002602 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2603 obj->fence_reg = reg - dev_priv->fence_regs;
2604 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002605
Chris Wilsond9e86c02010-11-10 16:40:20 +00002606 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002607 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002608 obj->last_fenced_seqno = reg->setup_seqno;
2609
2610update:
2611 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002612 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002613 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002614 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002615 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002616 break;
2617 case 5:
2618 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002619 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002620 break;
2621 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002622 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002623 break;
2624 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002625 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002626 break;
2627 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002628
Daniel Vetterc6642782010-11-12 13:46:18 +00002629 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002630}
2631
2632/**
2633 * i915_gem_clear_fence_reg - clear out fence register info
2634 * @obj: object to clear
2635 *
2636 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002637 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002638 */
2639static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002640i915_gem_clear_fence_reg(struct drm_device *dev,
2641 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002642{
Jesse Barnes79e53942008-11-07 14:24:08 -08002643 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002644 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002645
Chris Wilsone259bef2010-09-17 00:32:02 +01002646 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002647 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002648 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002649 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002650 break;
2651 case 5:
2652 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002653 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002654 break;
2655 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002656 if (fence_reg >= 8)
2657 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002658 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002659 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002660 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002661
2662 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002663 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002664 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002665
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002666 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002667 reg->obj = NULL;
2668 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002669 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002670}
2671
2672/**
Eric Anholt673a3942008-07-30 12:06:12 -07002673 * Finds free space in the GTT aperture and binds the object there.
2674 */
2675static int
Chris Wilson05394f32010-11-08 19:18:58 +00002676i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002677 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002678 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002679{
Chris Wilson05394f32010-11-08 19:18:58 +00002680 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002681 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002682 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002683 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002684 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002685 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002686 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002687
Chris Wilson05394f32010-11-08 19:18:58 +00002688 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002689 DRM_ERROR("Attempting to bind a purgeable object\n");
2690 return -EINVAL;
2691 }
2692
Chris Wilsone28f8712011-07-18 13:11:49 -07002693 fence_size = i915_gem_get_gtt_size(dev,
2694 obj->base.size,
2695 obj->tiling_mode);
2696 fence_alignment = i915_gem_get_gtt_alignment(dev,
2697 obj->base.size,
2698 obj->tiling_mode);
2699 unfenced_alignment =
2700 i915_gem_get_unfenced_gtt_alignment(dev,
2701 obj->base.size,
2702 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002703
Eric Anholt673a3942008-07-30 12:06:12 -07002704 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002705 alignment = map_and_fenceable ? fence_alignment :
2706 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002707 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002708 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2709 return -EINVAL;
2710 }
2711
Chris Wilson05394f32010-11-08 19:18:58 +00002712 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002713
Chris Wilson654fc602010-05-27 13:18:21 +01002714 /* If the object is bigger than the entire aperture, reject it early
2715 * before evicting everything in a vain attempt to find space.
2716 */
Chris Wilson05394f32010-11-08 19:18:58 +00002717 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002718 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002719 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2720 return -E2BIG;
2721 }
2722
Eric Anholt673a3942008-07-30 12:06:12 -07002723 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002724 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002725 free_space =
2726 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002727 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002728 dev_priv->mm.gtt_mappable_end,
2729 0);
2730 else
2731 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002732 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002733
2734 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002735 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002736 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002737 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002738 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002739 dev_priv->mm.gtt_mappable_end,
2740 0);
2741 else
Chris Wilson05394f32010-11-08 19:18:58 +00002742 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002743 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002744 }
Chris Wilson05394f32010-11-08 19:18:58 +00002745 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002746 /* If the gtt is empty and we're still having trouble
2747 * fitting our object in, we're out of memory.
2748 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002749 ret = i915_gem_evict_something(dev, size, alignment,
2750 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002751 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002752 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002753
Eric Anholt673a3942008-07-30 12:06:12 -07002754 goto search_free;
2755 }
2756
Chris Wilsone5281cc2010-10-28 13:45:36 +01002757 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002758 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002759 drm_mm_put_block(obj->gtt_space);
2760 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002761
2762 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002763 /* first try to reclaim some memory by clearing the GTT */
2764 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002765 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002766 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002767 if (gfpmask) {
2768 gfpmask = 0;
2769 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002770 }
2771
Chris Wilson809b6332011-01-10 17:33:15 +00002772 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002773 }
2774
2775 goto search_free;
2776 }
2777
Eric Anholt673a3942008-07-30 12:06:12 -07002778 return ret;
2779 }
2780
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002781 ret = i915_gem_gtt_bind_object(obj);
2782 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002783 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002784 drm_mm_put_block(obj->gtt_space);
2785 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002786
Chris Wilson809b6332011-01-10 17:33:15 +00002787 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002788 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002789
2790 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002791 }
Eric Anholt673a3942008-07-30 12:06:12 -07002792
Chris Wilson6299f992010-11-24 12:23:44 +00002793 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002794 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002795
Eric Anholt673a3942008-07-30 12:06:12 -07002796 /* Assert that the object is not currently in any GPU domain. As it
2797 * wasn't in the GTT, there shouldn't be any way it could have been in
2798 * a GPU cache
2799 */
Chris Wilson05394f32010-11-08 19:18:58 +00002800 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2801 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002802
Chris Wilson6299f992010-11-24 12:23:44 +00002803 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002804
Daniel Vetter75e9e912010-11-04 17:11:09 +01002805 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002806 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002807 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002808
Daniel Vetter75e9e912010-11-04 17:11:09 +01002809 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002810 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002811
Chris Wilson05394f32010-11-08 19:18:58 +00002812 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002813
Chris Wilsondb53a302011-02-03 11:57:46 +00002814 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002815 return 0;
2816}
2817
2818void
Chris Wilson05394f32010-11-08 19:18:58 +00002819i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002820{
Eric Anholt673a3942008-07-30 12:06:12 -07002821 /* If we don't have a page list set up, then we're not pinned
2822 * to GPU, and we can ignore the cache flush because it'll happen
2823 * again at bind time.
2824 */
Chris Wilson05394f32010-11-08 19:18:58 +00002825 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002826 return;
2827
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002828 /* If the GPU is snooping the contents of the CPU cache,
2829 * we do not need to manually clear the CPU cache lines. However,
2830 * the caches are only snooped when the render cache is
2831 * flushed/invalidated. As we always have to emit invalidations
2832 * and flushes when moving into and out of the RENDER domain, correct
2833 * snooping behaviour occurs naturally as the result of our domain
2834 * tracking.
2835 */
2836 if (obj->cache_level != I915_CACHE_NONE)
2837 return;
2838
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002839 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002840
Chris Wilson05394f32010-11-08 19:18:58 +00002841 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002842}
2843
Eric Anholte47c68e2008-11-14 13:35:19 -08002844/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002845static int
Chris Wilson3619df02010-11-28 15:37:17 +00002846i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002847{
Chris Wilson05394f32010-11-08 19:18:58 +00002848 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002849 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002850
2851 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002852 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002853}
2854
2855/** Flushes the GTT write domain for the object if it's dirty. */
2856static void
Chris Wilson05394f32010-11-08 19:18:58 +00002857i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002858{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002859 uint32_t old_write_domain;
2860
Chris Wilson05394f32010-11-08 19:18:58 +00002861 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002862 return;
2863
Chris Wilson63256ec2011-01-04 18:42:07 +00002864 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002865 * to it immediately go to main memory as far as we know, so there's
2866 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002867 *
2868 * However, we do have to enforce the order so that all writes through
2869 * the GTT land before any writes to the device, such as updates to
2870 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002871 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002872 wmb();
2873
Chris Wilson05394f32010-11-08 19:18:58 +00002874 old_write_domain = obj->base.write_domain;
2875 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002876
2877 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002878 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002879 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002880}
2881
2882/** Flushes the CPU write domain for the object if it's dirty. */
2883static void
Chris Wilson05394f32010-11-08 19:18:58 +00002884i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002885{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002886 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002887
Chris Wilson05394f32010-11-08 19:18:58 +00002888 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002889 return;
2890
2891 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002892 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002893 old_write_domain = obj->base.write_domain;
2894 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002895
2896 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002897 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002898 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002899}
2900
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002901/**
2902 * Moves a single object to the GTT read, and possibly write domain.
2903 *
2904 * This function returns when the move is complete, including waiting on
2905 * flushes to occur.
2906 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002907int
Chris Wilson20217462010-11-23 15:26:33 +00002908i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002909{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002910 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002911 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002912
Eric Anholt02354392008-11-26 13:58:13 -08002913 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002914 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002915 return -EINVAL;
2916
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002917 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2918 return 0;
2919
Chris Wilson88241782011-01-07 17:09:48 +00002920 ret = i915_gem_object_flush_gpu_write_domain(obj);
2921 if (ret)
2922 return ret;
2923
Chris Wilson87ca9c82010-12-02 09:42:56 +00002924 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002925 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002926 if (ret)
2927 return ret;
2928 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002929
Chris Wilson72133422010-09-13 23:56:38 +01002930 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002931
Chris Wilson05394f32010-11-08 19:18:58 +00002932 old_write_domain = obj->base.write_domain;
2933 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002934
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002935 /* It should now be out of any other write domains, and we can update
2936 * the domain values for our changes.
2937 */
Chris Wilson05394f32010-11-08 19:18:58 +00002938 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2939 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002940 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002941 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2942 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2943 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002944 }
2945
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002946 trace_i915_gem_object_change_domain(obj,
2947 old_read_domains,
2948 old_write_domain);
2949
Eric Anholte47c68e2008-11-14 13:35:19 -08002950 return 0;
2951}
2952
Chris Wilsone4ffd172011-04-04 09:44:39 +01002953int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2954 enum i915_cache_level cache_level)
2955{
2956 int ret;
2957
2958 if (obj->cache_level == cache_level)
2959 return 0;
2960
2961 if (obj->pin_count) {
2962 DRM_DEBUG("can not change the cache level of pinned objects\n");
2963 return -EBUSY;
2964 }
2965
2966 if (obj->gtt_space) {
2967 ret = i915_gem_object_finish_gpu(obj);
2968 if (ret)
2969 return ret;
2970
2971 i915_gem_object_finish_gtt(obj);
2972
2973 /* Before SandyBridge, you could not use tiling or fence
2974 * registers with snooped memory, so relinquish any fences
2975 * currently pointing to our region in the aperture.
2976 */
2977 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2978 ret = i915_gem_object_put_fence(obj);
2979 if (ret)
2980 return ret;
2981 }
2982
2983 i915_gem_gtt_rebind_object(obj, cache_level);
2984 }
2985
2986 if (cache_level == I915_CACHE_NONE) {
2987 u32 old_read_domains, old_write_domain;
2988
2989 /* If we're coming from LLC cached, then we haven't
2990 * actually been tracking whether the data is in the
2991 * CPU cache or not, since we only allow one bit set
2992 * in obj->write_domain and have been skipping the clflushes.
2993 * Just set it to the CPU cache for now.
2994 */
2995 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2996 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2997
2998 old_read_domains = obj->base.read_domains;
2999 old_write_domain = obj->base.write_domain;
3000
3001 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3002 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3003
3004 trace_i915_gem_object_change_domain(obj,
3005 old_read_domains,
3006 old_write_domain);
3007 }
3008
3009 obj->cache_level = cache_level;
3010 return 0;
3011}
3012
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003013/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003014 * Prepare buffer for display plane (scanout, cursors, etc).
3015 * Can be called from an uninterruptible phase (modesetting) and allows
3016 * any flushes to be pipelined (for pageflips).
3017 *
3018 * For the display plane, we want to be in the GTT but out of any write
3019 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
3020 * ability to pipeline the waits, pinning and any additional subtleties
3021 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003022 */
3023int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003024i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3025 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003026 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003027{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003028 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003029 int ret;
3030
Chris Wilson88241782011-01-07 17:09:48 +00003031 ret = i915_gem_object_flush_gpu_write_domain(obj);
3032 if (ret)
3033 return ret;
3034
Chris Wilson0be73282010-12-06 14:36:27 +00003035 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00003036 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07003037 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003038 return ret;
3039 }
3040
Eric Anholta7ef0642011-03-29 16:59:54 -07003041 /* The display engine is not coherent with the LLC cache on gen6. As
3042 * a result, we make sure that the pinning that is about to occur is
3043 * done with uncached PTEs. This is lowest common denominator for all
3044 * chipsets.
3045 *
3046 * However for gen6+, we could do better by using the GFDT bit instead
3047 * of uncaching, which would allow us to flush all the LLC-cached data
3048 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3049 */
3050 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3051 if (ret)
3052 return ret;
3053
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003054 /* As the user may map the buffer once pinned in the display plane
3055 * (e.g. libkms for the bootup splash), we have to ensure that we
3056 * always use map_and_fenceable for all scanout buffers.
3057 */
3058 ret = i915_gem_object_pin(obj, alignment, true);
3059 if (ret)
3060 return ret;
3061
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003062 i915_gem_object_flush_cpu_write_domain(obj);
3063
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003064 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003065 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003066
3067 /* It should now be out of any other write domains, and we can update
3068 * the domain values for our changes.
3069 */
3070 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003071 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003072
3073 trace_i915_gem_object_change_domain(obj,
3074 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003075 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003076
3077 return 0;
3078}
3079
Chris Wilson85345512010-11-13 09:49:11 +00003080int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003081i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003082{
Chris Wilson88241782011-01-07 17:09:48 +00003083 int ret;
3084
Chris Wilsona8198ee2011-04-13 22:04:09 +01003085 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003086 return 0;
3087
Chris Wilson88241782011-01-07 17:09:48 +00003088 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003089 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00003090 if (ret)
3091 return ret;
3092 }
Chris Wilson85345512010-11-13 09:49:11 +00003093
Chris Wilsona8198ee2011-04-13 22:04:09 +01003094 /* Ensure that we invalidate the GPU's caches and TLBs. */
3095 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
3096
Chris Wilsonce453d82011-02-21 14:43:56 +00003097 return i915_gem_object_wait_rendering(obj);
Chris Wilson85345512010-11-13 09:49:11 +00003098}
3099
Eric Anholte47c68e2008-11-14 13:35:19 -08003100/**
3101 * Moves a single object to the CPU read, and possibly write domain.
3102 *
3103 * This function returns when the move is complete, including waiting on
3104 * flushes to occur.
3105 */
3106static int
Chris Wilson919926a2010-11-12 13:42:53 +00003107i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003108{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003109 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003110 int ret;
3111
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003112 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3113 return 0;
3114
Chris Wilson88241782011-01-07 17:09:48 +00003115 ret = i915_gem_object_flush_gpu_write_domain(obj);
3116 if (ret)
3117 return ret;
3118
Chris Wilsonce453d82011-02-21 14:43:56 +00003119 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003120 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003121 return ret;
3122
3123 i915_gem_object_flush_gtt_write_domain(obj);
3124
3125 /* If we have a partially-valid cache of the object in the CPU,
3126 * finish invalidating it and free the per-page flags.
3127 */
3128 i915_gem_object_set_to_full_cpu_read_domain(obj);
3129
Chris Wilson05394f32010-11-08 19:18:58 +00003130 old_write_domain = obj->base.write_domain;
3131 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003132
Eric Anholte47c68e2008-11-14 13:35:19 -08003133 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003134 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003135 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003136
Chris Wilson05394f32010-11-08 19:18:58 +00003137 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003138 }
3139
3140 /* It should now be out of any other write domains, and we can update
3141 * the domain values for our changes.
3142 */
Chris Wilson05394f32010-11-08 19:18:58 +00003143 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003144
3145 /* If we're writing through the CPU, then the GPU read domains will
3146 * need to be invalidated at next use.
3147 */
3148 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003149 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3150 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003151 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003152
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003153 trace_i915_gem_object_change_domain(obj,
3154 old_read_domains,
3155 old_write_domain);
3156
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003157 return 0;
3158}
3159
Eric Anholt673a3942008-07-30 12:06:12 -07003160/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003161 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003162 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003163 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3164 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3165 */
3166static void
Chris Wilson05394f32010-11-08 19:18:58 +00003167i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003168{
Chris Wilson05394f32010-11-08 19:18:58 +00003169 if (!obj->page_cpu_valid)
Eric Anholte47c68e2008-11-14 13:35:19 -08003170 return;
3171
3172 /* If we're partially in the CPU read domain, finish moving it in.
3173 */
Chris Wilson05394f32010-11-08 19:18:58 +00003174 if (obj->base.read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003175 int i;
3176
Chris Wilson05394f32010-11-08 19:18:58 +00003177 for (i = 0; i <= (obj->base.size - 1) / PAGE_SIZE; i++) {
3178 if (obj->page_cpu_valid[i])
Eric Anholte47c68e2008-11-14 13:35:19 -08003179 continue;
Chris Wilson05394f32010-11-08 19:18:58 +00003180 drm_clflush_pages(obj->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003181 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003182 }
3183
3184 /* Free the page_cpu_valid mappings which are now stale, whether
3185 * or not we've got I915_GEM_DOMAIN_CPU.
3186 */
Chris Wilson05394f32010-11-08 19:18:58 +00003187 kfree(obj->page_cpu_valid);
3188 obj->page_cpu_valid = NULL;
Eric Anholte47c68e2008-11-14 13:35:19 -08003189}
3190
3191/**
3192 * Set the CPU read domain on a range of the object.
3193 *
3194 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3195 * not entirely valid. The page_cpu_valid member of the object flags which
3196 * pages have been flushed, and will be respected by
3197 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3198 * of the whole object.
3199 *
3200 * This function returns when the move is complete, including waiting on
3201 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003202 */
3203static int
Chris Wilson05394f32010-11-08 19:18:58 +00003204i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -08003205 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003206{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003207 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003208 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003209
Chris Wilson05394f32010-11-08 19:18:58 +00003210 if (offset == 0 && size == obj->base.size)
Eric Anholte47c68e2008-11-14 13:35:19 -08003211 return i915_gem_object_set_to_cpu_domain(obj, 0);
3212
Chris Wilson88241782011-01-07 17:09:48 +00003213 ret = i915_gem_object_flush_gpu_write_domain(obj);
3214 if (ret)
3215 return ret;
3216
Chris Wilsonce453d82011-02-21 14:43:56 +00003217 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003218 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003219 return ret;
Daniel Vetterde18a292010-11-27 22:30:41 +01003220
Eric Anholte47c68e2008-11-14 13:35:19 -08003221 i915_gem_object_flush_gtt_write_domain(obj);
3222
3223 /* If we're already fully in the CPU read domain, we're done. */
Chris Wilson05394f32010-11-08 19:18:58 +00003224 if (obj->page_cpu_valid == NULL &&
3225 (obj->base.read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003226 return 0;
3227
Eric Anholte47c68e2008-11-14 13:35:19 -08003228 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3229 * newly adding I915_GEM_DOMAIN_CPU
3230 */
Chris Wilson05394f32010-11-08 19:18:58 +00003231 if (obj->page_cpu_valid == NULL) {
3232 obj->page_cpu_valid = kzalloc(obj->base.size / PAGE_SIZE,
3233 GFP_KERNEL);
3234 if (obj->page_cpu_valid == NULL)
Eric Anholte47c68e2008-11-14 13:35:19 -08003235 return -ENOMEM;
Chris Wilson05394f32010-11-08 19:18:58 +00003236 } else if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
3237 memset(obj->page_cpu_valid, 0, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003238
3239 /* Flush the cache on any pages that are still invalid from the CPU's
3240 * perspective.
3241 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003242 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3243 i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003244 if (obj->page_cpu_valid[i])
Eric Anholt673a3942008-07-30 12:06:12 -07003245 continue;
3246
Chris Wilson05394f32010-11-08 19:18:58 +00003247 drm_clflush_pages(obj->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003248
Chris Wilson05394f32010-11-08 19:18:58 +00003249 obj->page_cpu_valid[i] = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003250 }
3251
Eric Anholte47c68e2008-11-14 13:35:19 -08003252 /* It should now be out of any other write domains, and we can update
3253 * the domain values for our changes.
3254 */
Chris Wilson05394f32010-11-08 19:18:58 +00003255 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003256
Chris Wilson05394f32010-11-08 19:18:58 +00003257 old_read_domains = obj->base.read_domains;
3258 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003259
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003260 trace_i915_gem_object_change_domain(obj,
3261 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003262 obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003263
Eric Anholt673a3942008-07-30 12:06:12 -07003264 return 0;
3265}
3266
Eric Anholt673a3942008-07-30 12:06:12 -07003267/* Throttle our rendering by waiting until the ring has completed our requests
3268 * emitted over 20 msec ago.
3269 *
Eric Anholtb9624422009-06-03 07:27:35 +00003270 * Note that if we were to use the current jiffies each time around the loop,
3271 * we wouldn't escape the function with any frames outstanding if the time to
3272 * render a frame was over 20ms.
3273 *
Eric Anholt673a3942008-07-30 12:06:12 -07003274 * This should get us reasonable parallelism between CPU and GPU but also
3275 * relatively low latency when blocking on a particular request to finish.
3276 */
3277static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003278i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003279{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003280 struct drm_i915_private *dev_priv = dev->dev_private;
3281 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003282 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003283 struct drm_i915_gem_request *request;
3284 struct intel_ring_buffer *ring = NULL;
3285 u32 seqno = 0;
3286 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003287
Chris Wilsone110e8d2011-01-26 15:39:14 +00003288 if (atomic_read(&dev_priv->mm.wedged))
3289 return -EIO;
3290
Chris Wilson1c255952010-09-26 11:03:27 +01003291 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003292 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003293 if (time_after_eq(request->emitted_jiffies, recent_enough))
3294 break;
3295
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003296 ring = request->ring;
3297 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003298 }
Chris Wilson1c255952010-09-26 11:03:27 +01003299 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003300
3301 if (seqno == 0)
3302 return 0;
3303
3304 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003305 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003306 /* And wait for the seqno passing without holding any locks and
3307 * causing extra latency for others. This is safe as the irq
3308 * generation is designed to be run atomically and so is
3309 * lockless.
3310 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003311 if (ring->irq_get(ring)) {
3312 ret = wait_event_interruptible(ring->irq_queue,
3313 i915_seqno_passed(ring->get_seqno(ring), seqno)
3314 || atomic_read(&dev_priv->mm.wedged));
3315 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003316
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003317 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3318 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003319 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3320 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003321 atomic_read(&dev_priv->mm.wedged), 3000)) {
3322 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003323 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003324 }
3325
3326 if (ret == 0)
3327 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003328
Eric Anholt673a3942008-07-30 12:06:12 -07003329 return ret;
3330}
3331
Eric Anholt673a3942008-07-30 12:06:12 -07003332int
Chris Wilson05394f32010-11-08 19:18:58 +00003333i915_gem_object_pin(struct drm_i915_gem_object *obj,
3334 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003335 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003336{
Chris Wilson05394f32010-11-08 19:18:58 +00003337 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003338 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003339 int ret;
3340
Chris Wilson05394f32010-11-08 19:18:58 +00003341 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003342 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003343
Chris Wilson05394f32010-11-08 19:18:58 +00003344 if (obj->gtt_space != NULL) {
3345 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3346 (map_and_fenceable && !obj->map_and_fenceable)) {
3347 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003348 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003349 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3350 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003351 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003352 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003353 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003354 ret = i915_gem_object_unbind(obj);
3355 if (ret)
3356 return ret;
3357 }
3358 }
3359
Chris Wilson05394f32010-11-08 19:18:58 +00003360 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003361 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003362 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003363 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003364 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003365 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003366
Chris Wilson05394f32010-11-08 19:18:58 +00003367 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003368 if (!obj->active)
3369 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003370 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003371 }
Chris Wilson6299f992010-11-24 12:23:44 +00003372 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003373
Chris Wilson23bc5982010-09-29 16:10:57 +01003374 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003375 return 0;
3376}
3377
3378void
Chris Wilson05394f32010-11-08 19:18:58 +00003379i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003380{
Chris Wilson05394f32010-11-08 19:18:58 +00003381 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003382 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003383
Chris Wilson23bc5982010-09-29 16:10:57 +01003384 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003385 BUG_ON(obj->pin_count == 0);
3386 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003387
Chris Wilson05394f32010-11-08 19:18:58 +00003388 if (--obj->pin_count == 0) {
3389 if (!obj->active)
3390 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003391 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003392 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003393 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003394 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003395}
3396
3397int
3398i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003399 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003400{
3401 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003402 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003403 int ret;
3404
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003405 ret = i915_mutex_lock_interruptible(dev);
3406 if (ret)
3407 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003408
Chris Wilson05394f32010-11-08 19:18:58 +00003409 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003410 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003411 ret = -ENOENT;
3412 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003413 }
Eric Anholt673a3942008-07-30 12:06:12 -07003414
Chris Wilson05394f32010-11-08 19:18:58 +00003415 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003416 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003417 ret = -EINVAL;
3418 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003419 }
3420
Chris Wilson05394f32010-11-08 19:18:58 +00003421 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003422 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3423 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003424 ret = -EINVAL;
3425 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003426 }
3427
Chris Wilson05394f32010-11-08 19:18:58 +00003428 obj->user_pin_count++;
3429 obj->pin_filp = file;
3430 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003431 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003432 if (ret)
3433 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003434 }
3435
3436 /* XXX - flush the CPU caches for pinned objects
3437 * as the X server doesn't manage domains yet
3438 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003439 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003440 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003441out:
Chris Wilson05394f32010-11-08 19:18:58 +00003442 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003443unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003444 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003445 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003446}
3447
3448int
3449i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003450 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003451{
3452 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003453 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003454 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003455
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003456 ret = i915_mutex_lock_interruptible(dev);
3457 if (ret)
3458 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003459
Chris Wilson05394f32010-11-08 19:18:58 +00003460 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003461 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003462 ret = -ENOENT;
3463 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003464 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003465
Chris Wilson05394f32010-11-08 19:18:58 +00003466 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003467 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3468 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003469 ret = -EINVAL;
3470 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003471 }
Chris Wilson05394f32010-11-08 19:18:58 +00003472 obj->user_pin_count--;
3473 if (obj->user_pin_count == 0) {
3474 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003475 i915_gem_object_unpin(obj);
3476 }
Eric Anholt673a3942008-07-30 12:06:12 -07003477
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003478out:
Chris Wilson05394f32010-11-08 19:18:58 +00003479 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003480unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003481 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003482 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003483}
3484
3485int
3486i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003487 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003488{
3489 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003490 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003491 int ret;
3492
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003493 ret = i915_mutex_lock_interruptible(dev);
3494 if (ret)
3495 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003496
Chris Wilson05394f32010-11-08 19:18:58 +00003497 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003498 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003499 ret = -ENOENT;
3500 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003501 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003502
Chris Wilson0be555b2010-08-04 15:36:30 +01003503 /* Count all active objects as busy, even if they are currently not used
3504 * by the gpu. Users of this interface expect objects to eventually
3505 * become non-busy without any further actions, therefore emit any
3506 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003507 */
Chris Wilson05394f32010-11-08 19:18:58 +00003508 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003509 if (args->busy) {
3510 /* Unconditionally flush objects, even when the gpu still uses this
3511 * object. Userspace calling this function indicates that it wants to
3512 * use this buffer rather sooner than later, so issuing the required
3513 * flush earlier is beneficial.
3514 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003515 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003516 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003517 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003518 } else if (obj->ring->outstanding_lazy_request ==
3519 obj->last_rendering_seqno) {
3520 struct drm_i915_gem_request *request;
3521
Chris Wilson7a194872010-12-07 10:38:40 +00003522 /* This ring is not being cleared by active usage,
3523 * so emit a request to do so.
3524 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003525 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003526 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003527 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003528 if (ret)
3529 kfree(request);
3530 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003531 ret = -ENOMEM;
3532 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003533
3534 /* Update the active list for the hardware's current position.
3535 * Otherwise this only updates on a delayed timer or when irqs
3536 * are actually unmasked, and our working set ends up being
3537 * larger than required.
3538 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003539 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003540
Chris Wilson05394f32010-11-08 19:18:58 +00003541 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003542 }
Eric Anholt673a3942008-07-30 12:06:12 -07003543
Chris Wilson05394f32010-11-08 19:18:58 +00003544 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003545unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003546 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003547 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003548}
3549
3550int
3551i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3552 struct drm_file *file_priv)
3553{
Akshay Joshi0206e352011-08-16 15:34:10 -04003554 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003555}
3556
Chris Wilson3ef94da2009-09-14 16:50:29 +01003557int
3558i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3559 struct drm_file *file_priv)
3560{
3561 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003562 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003563 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003564
3565 switch (args->madv) {
3566 case I915_MADV_DONTNEED:
3567 case I915_MADV_WILLNEED:
3568 break;
3569 default:
3570 return -EINVAL;
3571 }
3572
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003573 ret = i915_mutex_lock_interruptible(dev);
3574 if (ret)
3575 return ret;
3576
Chris Wilson05394f32010-11-08 19:18:58 +00003577 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003578 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003579 ret = -ENOENT;
3580 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003581 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003582
Chris Wilson05394f32010-11-08 19:18:58 +00003583 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003584 ret = -EINVAL;
3585 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003586 }
3587
Chris Wilson05394f32010-11-08 19:18:58 +00003588 if (obj->madv != __I915_MADV_PURGED)
3589 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003590
Chris Wilson2d7ef392009-09-20 23:13:10 +01003591 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003592 if (i915_gem_object_is_purgeable(obj) &&
3593 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003594 i915_gem_object_truncate(obj);
3595
Chris Wilson05394f32010-11-08 19:18:58 +00003596 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003597
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003598out:
Chris Wilson05394f32010-11-08 19:18:58 +00003599 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003600unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003601 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003602 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003603}
3604
Chris Wilson05394f32010-11-08 19:18:58 +00003605struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3606 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003607{
Chris Wilson73aa8082010-09-30 11:46:12 +01003608 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003609 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003610 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003611
3612 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3613 if (obj == NULL)
3614 return NULL;
3615
3616 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3617 kfree(obj);
3618 return NULL;
3619 }
3620
Hugh Dickins5949eac2011-06-27 16:18:18 -07003621 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3622 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3623
Chris Wilson73aa8082010-09-30 11:46:12 +01003624 i915_gem_info_add_obj(dev_priv, size);
3625
Daniel Vetterc397b902010-04-09 19:05:07 +00003626 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3627 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3628
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003629 if (HAS_LLC(dev)) {
3630 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003631 * cache) for about a 10% performance improvement
3632 * compared to uncached. Graphics requests other than
3633 * display scanout are coherent with the CPU in
3634 * accessing this cache. This means in this mode we
3635 * don't need to clflush on the CPU side, and on the
3636 * GPU side we only need to flush internal caches to
3637 * get data visible to the CPU.
3638 *
3639 * However, we maintain the display planes as UC, and so
3640 * need to rebind when first used as such.
3641 */
3642 obj->cache_level = I915_CACHE_LLC;
3643 } else
3644 obj->cache_level = I915_CACHE_NONE;
3645
Daniel Vetter62b8b212010-04-09 19:05:08 +00003646 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003647 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003648 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003649 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003650 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003651 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003652 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003653 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003654 /* Avoid an unnecessary call to unbind on the first bind. */
3655 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003656
Chris Wilson05394f32010-11-08 19:18:58 +00003657 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003658}
3659
Eric Anholt673a3942008-07-30 12:06:12 -07003660int i915_gem_init_object(struct drm_gem_object *obj)
3661{
Daniel Vetterc397b902010-04-09 19:05:07 +00003662 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003663
Eric Anholt673a3942008-07-30 12:06:12 -07003664 return 0;
3665}
3666
Chris Wilson05394f32010-11-08 19:18:58 +00003667static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003668{
Chris Wilson05394f32010-11-08 19:18:58 +00003669 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003670 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003671 int ret;
3672
3673 ret = i915_gem_object_unbind(obj);
3674 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003675 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003676 &dev_priv->mm.deferred_free_list);
3677 return;
3678 }
3679
Chris Wilson26e12f82011-03-20 11:20:19 +00003680 trace_i915_gem_object_destroy(obj);
3681
Chris Wilson05394f32010-11-08 19:18:58 +00003682 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003683 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003684
Chris Wilson05394f32010-11-08 19:18:58 +00003685 drm_gem_object_release(&obj->base);
3686 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003687
Chris Wilson05394f32010-11-08 19:18:58 +00003688 kfree(obj->page_cpu_valid);
3689 kfree(obj->bit_17);
3690 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003691}
3692
Chris Wilson05394f32010-11-08 19:18:58 +00003693void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003694{
Chris Wilson05394f32010-11-08 19:18:58 +00003695 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3696 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003697
Chris Wilson05394f32010-11-08 19:18:58 +00003698 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003699 i915_gem_object_unpin(obj);
3700
Chris Wilson05394f32010-11-08 19:18:58 +00003701 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003702 i915_gem_detach_phys_object(dev, obj);
3703
Chris Wilsonbe726152010-07-23 23:18:50 +01003704 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003705}
3706
Jesse Barnes5669fca2009-02-17 15:13:31 -08003707int
Eric Anholt673a3942008-07-30 12:06:12 -07003708i915_gem_idle(struct drm_device *dev)
3709{
3710 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003711 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003712
Keith Packard6dbe2772008-10-14 21:41:13 -07003713 mutex_lock(&dev->struct_mutex);
3714
Chris Wilson87acb0a2010-10-19 10:13:00 +01003715 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003716 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003717 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003718 }
Eric Anholt673a3942008-07-30 12:06:12 -07003719
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003720 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003721 if (ret) {
3722 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003723 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003724 }
Eric Anholt673a3942008-07-30 12:06:12 -07003725
Chris Wilson29105cc2010-01-07 10:39:13 +00003726 /* Under UMS, be paranoid and evict. */
3727 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003728 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003729 if (ret) {
3730 mutex_unlock(&dev->struct_mutex);
3731 return ret;
3732 }
3733 }
3734
Chris Wilson312817a2010-11-22 11:50:11 +00003735 i915_gem_reset_fences(dev);
3736
Chris Wilson29105cc2010-01-07 10:39:13 +00003737 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3738 * We need to replace this with a semaphore, or something.
3739 * And not confound mm.suspended!
3740 */
3741 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003742 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003743
3744 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003745 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003746
Keith Packard6dbe2772008-10-14 21:41:13 -07003747 mutex_unlock(&dev->struct_mutex);
3748
Chris Wilson29105cc2010-01-07 10:39:13 +00003749 /* Cancel the retire work handler, which should be idle now. */
3750 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3751
Eric Anholt673a3942008-07-30 12:06:12 -07003752 return 0;
3753}
3754
Eric Anholt673a3942008-07-30 12:06:12 -07003755int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003756i915_gem_init_ringbuffer(struct drm_device *dev)
3757{
3758 drm_i915_private_t *dev_priv = dev->dev_private;
3759 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003760
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003761 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003762 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003763 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003764
3765 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003766 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003767 if (ret)
3768 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003769 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003770
Chris Wilson549f7362010-10-19 11:19:32 +01003771 if (HAS_BLT(dev)) {
3772 ret = intel_init_blt_ring_buffer(dev);
3773 if (ret)
3774 goto cleanup_bsd_ring;
3775 }
3776
Chris Wilson6f392d52010-08-07 11:01:22 +01003777 dev_priv->next_seqno = 1;
3778
Chris Wilson68f95ba2010-05-27 13:18:22 +01003779 return 0;
3780
Chris Wilson549f7362010-10-19 11:19:32 +01003781cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003782 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003783cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003784 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003785 return ret;
3786}
3787
3788void
3789i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3790{
3791 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003792 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003793
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003794 for (i = 0; i < I915_NUM_RINGS; i++)
3795 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003796}
3797
3798int
Eric Anholt673a3942008-07-30 12:06:12 -07003799i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3800 struct drm_file *file_priv)
3801{
3802 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003803 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003804
Jesse Barnes79e53942008-11-07 14:24:08 -08003805 if (drm_core_check_feature(dev, DRIVER_MODESET))
3806 return 0;
3807
Ben Gamariba1234d2009-09-14 17:48:47 -04003808 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003809 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003810 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003811 }
3812
Eric Anholt673a3942008-07-30 12:06:12 -07003813 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003814 dev_priv->mm.suspended = 0;
3815
3816 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6ac2009-04-18 10:43:32 +08003817 if (ret != 0) {
3818 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003819 return ret;
Wu Fengguangd816f6ac2009-04-18 10:43:32 +08003820 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003821
Chris Wilson69dc4982010-10-19 10:36:51 +01003822 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003823 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3824 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003825 for (i = 0; i < I915_NUM_RINGS; i++) {
3826 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3827 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3828 }
Eric Anholt673a3942008-07-30 12:06:12 -07003829 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003830
Chris Wilson5f353082010-06-07 14:03:03 +01003831 ret = drm_irq_install(dev);
3832 if (ret)
3833 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003834
Eric Anholt673a3942008-07-30 12:06:12 -07003835 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003836
3837cleanup_ringbuffer:
3838 mutex_lock(&dev->struct_mutex);
3839 i915_gem_cleanup_ringbuffer(dev);
3840 dev_priv->mm.suspended = 1;
3841 mutex_unlock(&dev->struct_mutex);
3842
3843 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003844}
3845
3846int
3847i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3848 struct drm_file *file_priv)
3849{
Jesse Barnes79e53942008-11-07 14:24:08 -08003850 if (drm_core_check_feature(dev, DRIVER_MODESET))
3851 return 0;
3852
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003853 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003854 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003855}
3856
3857void
3858i915_gem_lastclose(struct drm_device *dev)
3859{
3860 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003861
Eric Anholte806b492009-01-22 09:56:58 -08003862 if (drm_core_check_feature(dev, DRIVER_MODESET))
3863 return;
3864
Keith Packard6dbe2772008-10-14 21:41:13 -07003865 ret = i915_gem_idle(dev);
3866 if (ret)
3867 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003868}
3869
Chris Wilson64193402010-10-24 12:38:05 +01003870static void
3871init_ring_lists(struct intel_ring_buffer *ring)
3872{
3873 INIT_LIST_HEAD(&ring->active_list);
3874 INIT_LIST_HEAD(&ring->request_list);
3875 INIT_LIST_HEAD(&ring->gpu_write_list);
3876}
3877
Eric Anholt673a3942008-07-30 12:06:12 -07003878void
3879i915_gem_load(struct drm_device *dev)
3880{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003881 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003882 drm_i915_private_t *dev_priv = dev->dev_private;
3883
Chris Wilson69dc4982010-10-19 10:36:51 +01003884 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003885 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3886 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003887 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003888 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003889 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003890 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003891 for (i = 0; i < I915_NUM_RINGS; i++)
3892 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003893 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003894 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003895 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3896 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003897 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003898
Dave Airlie94400122010-07-20 13:15:31 +10003899 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3900 if (IS_GEN3(dev)) {
3901 u32 tmp = I915_READ(MI_ARB_STATE);
3902 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3903 /* arb state is a masked write, so set bit + bit in mask */
3904 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3905 I915_WRITE(MI_ARB_STATE, tmp);
3906 }
3907 }
3908
Chris Wilson72bfa192010-12-19 11:42:05 +00003909 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3910
Jesse Barnesde151cf2008-11-12 10:03:55 -08003911 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003912 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3913 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003914
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003915 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003916 dev_priv->num_fence_regs = 16;
3917 else
3918 dev_priv->num_fence_regs = 8;
3919
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003920 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003921 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3922 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003923 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003924
Eric Anholt673a3942008-07-30 12:06:12 -07003925 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003926 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003927
Chris Wilsonce453d82011-02-21 14:43:56 +00003928 dev_priv->mm.interruptible = true;
3929
Chris Wilson17250b72010-10-28 12:51:39 +01003930 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3931 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3932 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003933}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003934
3935/*
3936 * Create a physically contiguous memory object for this object
3937 * e.g. for cursor + overlay regs
3938 */
Chris Wilson995b67622010-08-20 13:23:26 +01003939static int i915_gem_init_phys_object(struct drm_device *dev,
3940 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003941{
3942 drm_i915_private_t *dev_priv = dev->dev_private;
3943 struct drm_i915_gem_phys_object *phys_obj;
3944 int ret;
3945
3946 if (dev_priv->mm.phys_objs[id - 1] || !size)
3947 return 0;
3948
Eric Anholt9a298b22009-03-24 12:23:04 -07003949 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003950 if (!phys_obj)
3951 return -ENOMEM;
3952
3953 phys_obj->id = id;
3954
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003955 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003956 if (!phys_obj->handle) {
3957 ret = -ENOMEM;
3958 goto kfree_obj;
3959 }
3960#ifdef CONFIG_X86
3961 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3962#endif
3963
3964 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3965
3966 return 0;
3967kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003968 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003969 return ret;
3970}
3971
Chris Wilson995b67622010-08-20 13:23:26 +01003972static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003973{
3974 drm_i915_private_t *dev_priv = dev->dev_private;
3975 struct drm_i915_gem_phys_object *phys_obj;
3976
3977 if (!dev_priv->mm.phys_objs[id - 1])
3978 return;
3979
3980 phys_obj = dev_priv->mm.phys_objs[id - 1];
3981 if (phys_obj->cur_obj) {
3982 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3983 }
3984
3985#ifdef CONFIG_X86
3986 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3987#endif
3988 drm_pci_free(dev, phys_obj->handle);
3989 kfree(phys_obj);
3990 dev_priv->mm.phys_objs[id - 1] = NULL;
3991}
3992
3993void i915_gem_free_all_phys_object(struct drm_device *dev)
3994{
3995 int i;
3996
Dave Airlie260883c2009-01-22 17:58:49 +10003997 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003998 i915_gem_free_phys_object(dev, i);
3999}
4000
4001void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004002 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004003{
Chris Wilson05394f32010-11-08 19:18:58 +00004004 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004005 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004006 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004007 int page_count;
4008
Chris Wilson05394f32010-11-08 19:18:58 +00004009 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004010 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004011 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004012
Chris Wilson05394f32010-11-08 19:18:58 +00004013 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004014 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004015 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004016 if (!IS_ERR(page)) {
4017 char *dst = kmap_atomic(page);
4018 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4019 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004020
Chris Wilsone5281cc2010-10-28 13:45:36 +01004021 drm_clflush_pages(&page, 1);
4022
4023 set_page_dirty(page);
4024 mark_page_accessed(page);
4025 page_cache_release(page);
4026 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004027 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01004028 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01004029
Chris Wilson05394f32010-11-08 19:18:58 +00004030 obj->phys_obj->cur_obj = NULL;
4031 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004032}
4033
4034int
4035i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004036 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004037 int id,
4038 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004039{
Chris Wilson05394f32010-11-08 19:18:58 +00004040 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004041 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004042 int ret = 0;
4043 int page_count;
4044 int i;
4045
4046 if (id > I915_MAX_PHYS_OBJECT)
4047 return -EINVAL;
4048
Chris Wilson05394f32010-11-08 19:18:58 +00004049 if (obj->phys_obj) {
4050 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004051 return 0;
4052 i915_gem_detach_phys_object(dev, obj);
4053 }
4054
Dave Airlie71acb5e2008-12-30 20:31:46 +10004055 /* create a new object */
4056 if (!dev_priv->mm.phys_objs[id - 1]) {
4057 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004058 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004059 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004060 DRM_ERROR("failed to init phys object %d size: %zu\n",
4061 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004062 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004063 }
4064 }
4065
4066 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004067 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4068 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004069
Chris Wilson05394f32010-11-08 19:18:58 +00004070 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004071
4072 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004073 struct page *page;
4074 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004075
Hugh Dickins5949eac2011-06-27 16:18:18 -07004076 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004077 if (IS_ERR(page))
4078 return PTR_ERR(page);
4079
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004080 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004081 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004082 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004083 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004084
4085 mark_page_accessed(page);
4086 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004087 }
4088
4089 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004090}
4091
4092static int
Chris Wilson05394f32010-11-08 19:18:58 +00004093i915_gem_phys_pwrite(struct drm_device *dev,
4094 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004095 struct drm_i915_gem_pwrite *args,
4096 struct drm_file *file_priv)
4097{
Chris Wilson05394f32010-11-08 19:18:58 +00004098 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004099 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004100
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004101 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4102 unsigned long unwritten;
4103
4104 /* The physical object once assigned is fixed for the lifetime
4105 * of the obj, so we can safely drop the lock and continue
4106 * to access vaddr.
4107 */
4108 mutex_unlock(&dev->struct_mutex);
4109 unwritten = copy_from_user(vaddr, user_data, args->size);
4110 mutex_lock(&dev->struct_mutex);
4111 if (unwritten)
4112 return -EFAULT;
4113 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004114
Daniel Vetter40ce6572010-11-05 18:12:18 +01004115 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004116 return 0;
4117}
Eric Anholtb9624422009-06-03 07:27:35 +00004118
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004119void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004120{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004121 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004122
4123 /* Clean up our request list when the client is going away, so that
4124 * later retire_requests won't dereference our soon-to-be-gone
4125 * file_priv.
4126 */
Chris Wilson1c255952010-09-26 11:03:27 +01004127 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004128 while (!list_empty(&file_priv->mm.request_list)) {
4129 struct drm_i915_gem_request *request;
4130
4131 request = list_first_entry(&file_priv->mm.request_list,
4132 struct drm_i915_gem_request,
4133 client_list);
4134 list_del(&request->client_list);
4135 request->file_priv = NULL;
4136 }
Chris Wilson1c255952010-09-26 11:03:27 +01004137 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004138}
Chris Wilson31169712009-09-14 16:50:28 +01004139
Chris Wilson31169712009-09-14 16:50:28 +01004140static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004141i915_gpu_is_active(struct drm_device *dev)
4142{
4143 drm_i915_private_t *dev_priv = dev->dev_private;
4144 int lists_empty;
4145
Chris Wilson1637ef42010-04-20 17:10:35 +01004146 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004147 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004148
4149 return !lists_empty;
4150}
4151
4152static int
Ying Han1495f232011-05-24 17:12:27 -07004153i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004154{
Chris Wilson17250b72010-10-28 12:51:39 +01004155 struct drm_i915_private *dev_priv =
4156 container_of(shrinker,
4157 struct drm_i915_private,
4158 mm.inactive_shrinker);
4159 struct drm_device *dev = dev_priv->dev;
4160 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004161 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004162 int cnt;
4163
4164 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004165 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004166
4167 /* "fast-path" to count number of available objects */
4168 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004169 cnt = 0;
4170 list_for_each_entry(obj,
4171 &dev_priv->mm.inactive_list,
4172 mm_list)
4173 cnt++;
4174 mutex_unlock(&dev->struct_mutex);
4175 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004176 }
4177
Chris Wilson1637ef42010-04-20 17:10:35 +01004178rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004179 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004180 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004181
Chris Wilson17250b72010-10-28 12:51:39 +01004182 list_for_each_entry_safe(obj, next,
4183 &dev_priv->mm.inactive_list,
4184 mm_list) {
4185 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004186 if (i915_gem_object_unbind(obj) == 0 &&
4187 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004188 break;
Chris Wilson31169712009-09-14 16:50:28 +01004189 }
Chris Wilson31169712009-09-14 16:50:28 +01004190 }
4191
4192 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004193 cnt = 0;
4194 list_for_each_entry_safe(obj, next,
4195 &dev_priv->mm.inactive_list,
4196 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004197 if (nr_to_scan &&
4198 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004199 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004200 else
Chris Wilson17250b72010-10-28 12:51:39 +01004201 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004202 }
4203
Chris Wilson17250b72010-10-28 12:51:39 +01004204 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004205 /*
4206 * We are desperate for pages, so as a last resort, wait
4207 * for the GPU to finish and discard whatever we can.
4208 * This has a dramatic impact to reduce the number of
4209 * OOM-killer events whilst running the GPU aggressively.
4210 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004211 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004212 goto rescan;
4213 }
Chris Wilson17250b72010-10-28 12:51:39 +01004214 mutex_unlock(&dev->struct_mutex);
4215 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004216}