blob: 8685b92790290139f87eb7c6fbf772c7c535d3d7 [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"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070035#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037
Chris Wilson3619df02010-11-28 15:37:17 +000038static void i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000039static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
40static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
41static int i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +000042 bool write);
Chris Wilson05394f32010-11-08 19:18:58 +000043static int i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -080044 uint64_t offset,
45 uint64_t size);
Chris Wilson05394f32010-11-08 19:18:58 +000046static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000047static int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Chris Wilsona00b10c2010-09-24 21:15:47 +010048 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +010049 bool map_and_fenceable);
Chris Wilsond9e86c02010-11-10 16:40:20 +000050static void i915_gem_clear_fence_reg(struct drm_device *dev,
51 struct drm_i915_fence_reg *reg);
Chris Wilson05394f32010-11-08 19:18:58 +000052static int i915_gem_phys_pwrite(struct drm_device *dev,
53 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100054 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000055 struct drm_file *file);
56static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070057
Chris Wilson17250b72010-10-28 12:51:39 +010058static int i915_gem_inactive_shrink(struct shrinker *shrinker,
59 int nr_to_scan,
60 gfp_t gfp_mask);
61
Chris Wilson31169712009-09-14 16:50:28 +010062
Chris Wilson73aa8082010-09-30 11:46:12 +010063/* some bookkeeping */
64static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
65 size_t size)
66{
67 dev_priv->mm.object_count++;
68 dev_priv->mm.object_memory += size;
69}
70
71static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
72 size_t size)
73{
74 dev_priv->mm.object_count--;
75 dev_priv->mm.object_memory -= size;
76}
77
Chris Wilson30dbf0c2010-09-25 10:19:17 +010078int
79i915_gem_check_is_wedged(struct drm_device *dev)
80{
81 struct drm_i915_private *dev_priv = dev->dev_private;
82 struct completion *x = &dev_priv->error_completion;
83 unsigned long flags;
84 int ret;
85
86 if (!atomic_read(&dev_priv->mm.wedged))
87 return 0;
88
89 ret = wait_for_completion_interruptible(x);
90 if (ret)
91 return ret;
92
93 /* Success, we reset the GPU! */
94 if (!atomic_read(&dev_priv->mm.wedged))
95 return 0;
96
97 /* GPU is hung, bump the completion count to account for
98 * the token we just consumed so that we never hit zero and
99 * end up waiting upon a subsequent completion event that
100 * will never happen.
101 */
102 spin_lock_irqsave(&x->wait.lock, flags);
103 x->done++;
104 spin_unlock_irqrestore(&x->wait.lock, flags);
105 return -EIO;
106}
107
Chris Wilson54cf91d2010-11-25 18:00:26 +0000108int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100109{
110 struct drm_i915_private *dev_priv = dev->dev_private;
111 int ret;
112
113 ret = i915_gem_check_is_wedged(dev);
114 if (ret)
115 return ret;
116
117 ret = mutex_lock_interruptible(&dev->struct_mutex);
118 if (ret)
119 return ret;
120
121 if (atomic_read(&dev_priv->mm.wedged)) {
122 mutex_unlock(&dev->struct_mutex);
123 return -EAGAIN;
124 }
125
Chris Wilson23bc5982010-09-29 16:10:57 +0100126 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100127 return 0;
128}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100129
Chris Wilson7d1c4802010-08-07 21:45:03 +0100130static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000131i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100132{
Chris Wilson05394f32010-11-08 19:18:58 +0000133 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100134}
135
Chris Wilson20217462010-11-23 15:26:33 +0000136void i915_gem_do_init(struct drm_device *dev,
137 unsigned long start,
138 unsigned long mappable_end,
139 unsigned long end)
Jesse Barnes79e53942008-11-07 14:24:08 -0800140{
141 drm_i915_private_t *dev_priv = dev->dev_private;
142
Jesse Barnes79e53942008-11-07 14:24:08 -0800143 drm_mm_init(&dev_priv->mm.gtt_space, start,
144 end - start);
145
Chris Wilson73aa8082010-09-30 11:46:12 +0100146 dev_priv->mm.gtt_total = end - start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200147 dev_priv->mm.mappable_gtt_total = min(end, mappable_end) - start;
Daniel Vetter53984632010-09-22 23:44:24 +0200148 dev_priv->mm.gtt_mappable_end = mappable_end;
Jesse Barnes79e53942008-11-07 14:24:08 -0800149}
Keith Packard6dbe2772008-10-14 21:41:13 -0700150
Eric Anholt673a3942008-07-30 12:06:12 -0700151int
152i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000153 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700154{
Eric Anholt673a3942008-07-30 12:06:12 -0700155 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000156
157 if (args->gtt_start >= args->gtt_end ||
158 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
159 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700160
161 mutex_lock(&dev->struct_mutex);
Chris Wilson20217462010-11-23 15:26:33 +0000162 i915_gem_do_init(dev, args->gtt_start, args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700163 mutex_unlock(&dev->struct_mutex);
164
Chris Wilson20217462010-11-23 15:26:33 +0000165 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700166}
167
Eric Anholt5a125c32008-10-22 21:40:13 -0700168int
169i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000170 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700171{
Chris Wilson73aa8082010-09-30 11:46:12 +0100172 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700173 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000174 struct drm_i915_gem_object *obj;
175 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700176
177 if (!(dev->driver->driver_features & DRIVER_GEM))
178 return -ENODEV;
179
Chris Wilson6299f992010-11-24 12:23:44 +0000180 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100181 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000182 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
183 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100184 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700185
Chris Wilson6299f992010-11-24 12:23:44 +0000186 args->aper_size = dev_priv->mm.gtt_total;
187 args->aper_available_size = args->aper_size -pinned;
188
Eric Anholt5a125c32008-10-22 21:40:13 -0700189 return 0;
190}
191
Eric Anholt673a3942008-07-30 12:06:12 -0700192/**
193 * Creates a new mm object and returns a handle to it.
194 */
195int
196i915_gem_create_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000197 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700198{
199 struct drm_i915_gem_create *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000200 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300201 int ret;
202 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700203
204 args->size = roundup(args->size, PAGE_SIZE);
205
206 /* Allocate the new object */
Daniel Vetterac52bc52010-04-09 19:05:06 +0000207 obj = i915_gem_alloc_object(dev, args->size);
Eric Anholt673a3942008-07-30 12:06:12 -0700208 if (obj == NULL)
209 return -ENOMEM;
210
Chris Wilson05394f32010-11-08 19:18:58 +0000211 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100212 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000213 drm_gem_object_release(&obj->base);
214 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100215 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700216 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100217 }
218
Chris Wilson202f2fe2010-10-14 13:20:40 +0100219 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000220 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100221 trace_i915_gem_object_create(obj);
222
Eric Anholt673a3942008-07-30 12:06:12 -0700223 args->handle = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700224 return 0;
225}
226
Chris Wilson05394f32010-11-08 19:18:58 +0000227static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700228{
Chris Wilson05394f32010-11-08 19:18:58 +0000229 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700230
231 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000232 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700233}
234
Chris Wilson99a03df2010-05-27 14:15:34 +0100235static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700236slow_shmem_copy(struct page *dst_page,
237 int dst_offset,
238 struct page *src_page,
239 int src_offset,
240 int length)
241{
242 char *dst_vaddr, *src_vaddr;
243
Chris Wilson99a03df2010-05-27 14:15:34 +0100244 dst_vaddr = kmap(dst_page);
245 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700246
247 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
248
Chris Wilson99a03df2010-05-27 14:15:34 +0100249 kunmap(src_page);
250 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700251}
252
Chris Wilson99a03df2010-05-27 14:15:34 +0100253static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700254slow_shmem_bit17_copy(struct page *gpu_page,
255 int gpu_offset,
256 struct page *cpu_page,
257 int cpu_offset,
258 int length,
259 int is_read)
260{
261 char *gpu_vaddr, *cpu_vaddr;
262
263 /* Use the unswizzled path if this page isn't affected. */
264 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
265 if (is_read)
266 return slow_shmem_copy(cpu_page, cpu_offset,
267 gpu_page, gpu_offset, length);
268 else
269 return slow_shmem_copy(gpu_page, gpu_offset,
270 cpu_page, cpu_offset, length);
271 }
272
Chris Wilson99a03df2010-05-27 14:15:34 +0100273 gpu_vaddr = kmap(gpu_page);
274 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700275
276 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
277 * XORing with the other bits (A9 for Y, A9 and A10 for X)
278 */
279 while (length > 0) {
280 int cacheline_end = ALIGN(gpu_offset + 1, 64);
281 int this_length = min(cacheline_end - gpu_offset, length);
282 int swizzled_gpu_offset = gpu_offset ^ 64;
283
284 if (is_read) {
285 memcpy(cpu_vaddr + cpu_offset,
286 gpu_vaddr + swizzled_gpu_offset,
287 this_length);
288 } else {
289 memcpy(gpu_vaddr + swizzled_gpu_offset,
290 cpu_vaddr + cpu_offset,
291 this_length);
292 }
293 cpu_offset += this_length;
294 gpu_offset += this_length;
295 length -= this_length;
296 }
297
Chris Wilson99a03df2010-05-27 14:15:34 +0100298 kunmap(cpu_page);
299 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700300}
301
Eric Anholt673a3942008-07-30 12:06:12 -0700302/**
Eric Anholteb014592009-03-10 11:44:52 -0700303 * This is the fast shmem pread path, which attempts to copy_from_user directly
304 * from the backing pages of the object to the user's address space. On a
305 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
306 */
307static int
Chris Wilson05394f32010-11-08 19:18:58 +0000308i915_gem_shmem_pread_fast(struct drm_device *dev,
309 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700310 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000311 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700312{
Chris Wilson05394f32010-11-08 19:18:58 +0000313 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700314 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100315 loff_t offset;
Eric Anholteb014592009-03-10 11:44:52 -0700316 char __user *user_data;
317 int page_offset, page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700318
319 user_data = (char __user *) (uintptr_t) args->data_ptr;
320 remain = args->size;
321
Eric Anholteb014592009-03-10 11:44:52 -0700322 offset = args->offset;
323
324 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100325 struct page *page;
326 char *vaddr;
327 int ret;
328
Eric Anholteb014592009-03-10 11:44:52 -0700329 /* Operation in this page
330 *
Eric Anholteb014592009-03-10 11:44:52 -0700331 * page_offset = offset within page
332 * page_length = bytes to copy for this page
333 */
Eric Anholteb014592009-03-10 11:44:52 -0700334 page_offset = offset & (PAGE_SIZE-1);
335 page_length = remain;
336 if ((page_offset + remain) > PAGE_SIZE)
337 page_length = PAGE_SIZE - page_offset;
338
Chris Wilsone5281cc2010-10-28 13:45:36 +0100339 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
340 GFP_HIGHUSER | __GFP_RECLAIMABLE);
341 if (IS_ERR(page))
342 return PTR_ERR(page);
343
344 vaddr = kmap_atomic(page);
345 ret = __copy_to_user_inatomic(user_data,
346 vaddr + page_offset,
347 page_length);
348 kunmap_atomic(vaddr);
349
350 mark_page_accessed(page);
351 page_cache_release(page);
352 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100353 return -EFAULT;
Eric Anholteb014592009-03-10 11:44:52 -0700354
355 remain -= page_length;
356 user_data += page_length;
357 offset += page_length;
358 }
359
Chris Wilson4f27b752010-10-14 15:26:45 +0100360 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700361}
362
363/**
364 * This is the fallback shmem pread path, which allocates temporary storage
365 * in kernel space to copy_to_user into outside of the struct_mutex, so we
366 * can copy out of the object's backing pages while holding the struct mutex
367 * and not take page faults.
368 */
369static int
Chris Wilson05394f32010-11-08 19:18:58 +0000370i915_gem_shmem_pread_slow(struct drm_device *dev,
371 struct drm_i915_gem_object *obj,
Eric Anholteb014592009-03-10 11:44:52 -0700372 struct drm_i915_gem_pread *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000373 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700374{
Chris Wilson05394f32010-11-08 19:18:58 +0000375 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700376 struct mm_struct *mm = current->mm;
377 struct page **user_pages;
378 ssize_t remain;
379 loff_t offset, pinned_pages, i;
380 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100381 int shmem_page_offset;
382 int data_page_index, data_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700383 int page_length;
384 int ret;
385 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700386 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700387
388 remain = args->size;
389
390 /* Pin the user pages containing the data. We can't fault while
391 * holding the struct mutex, yet we want to hold it while
392 * dereferencing the user data.
393 */
394 first_data_page = data_ptr / PAGE_SIZE;
395 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
396 num_pages = last_data_page - first_data_page + 1;
397
Chris Wilson4f27b752010-10-14 15:26:45 +0100398 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700399 if (user_pages == NULL)
400 return -ENOMEM;
401
Chris Wilson4f27b752010-10-14 15:26:45 +0100402 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700403 down_read(&mm->mmap_sem);
404 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700405 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700406 up_read(&mm->mmap_sem);
Chris Wilson4f27b752010-10-14 15:26:45 +0100407 mutex_lock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700408 if (pinned_pages < num_pages) {
409 ret = -EFAULT;
Chris Wilson4f27b752010-10-14 15:26:45 +0100410 goto out;
Eric Anholteb014592009-03-10 11:44:52 -0700411 }
412
Chris Wilson4f27b752010-10-14 15:26:45 +0100413 ret = i915_gem_object_set_cpu_read_domain_range(obj,
414 args->offset,
Eric Anholteb014592009-03-10 11:44:52 -0700415 args->size);
Chris Wilson4f27b752010-10-14 15:26:45 +0100416 if (ret)
417 goto out;
418
419 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700420
Eric Anholteb014592009-03-10 11:44:52 -0700421 offset = args->offset;
422
423 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100424 struct page *page;
425
Eric Anholteb014592009-03-10 11:44:52 -0700426 /* Operation in this page
427 *
Eric Anholteb014592009-03-10 11:44:52 -0700428 * shmem_page_offset = offset within page in shmem file
429 * data_page_index = page number in get_user_pages return
430 * data_page_offset = offset with data_page_index page.
431 * page_length = bytes to copy for this page
432 */
Eric Anholteb014592009-03-10 11:44:52 -0700433 shmem_page_offset = offset & ~PAGE_MASK;
434 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
435 data_page_offset = data_ptr & ~PAGE_MASK;
436
437 page_length = remain;
438 if ((shmem_page_offset + page_length) > PAGE_SIZE)
439 page_length = PAGE_SIZE - shmem_page_offset;
440 if ((data_page_offset + page_length) > PAGE_SIZE)
441 page_length = PAGE_SIZE - data_page_offset;
442
Chris Wilsone5281cc2010-10-28 13:45:36 +0100443 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
444 GFP_HIGHUSER | __GFP_RECLAIMABLE);
445 if (IS_ERR(page))
446 return PTR_ERR(page);
447
Eric Anholt280b7132009-03-12 16:56:27 -0700448 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100449 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700450 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100451 user_pages[data_page_index],
452 data_page_offset,
453 page_length,
454 1);
455 } else {
456 slow_shmem_copy(user_pages[data_page_index],
457 data_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100458 page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100459 shmem_page_offset,
460 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700461 }
Eric Anholteb014592009-03-10 11:44:52 -0700462
Chris Wilsone5281cc2010-10-28 13:45:36 +0100463 mark_page_accessed(page);
464 page_cache_release(page);
465
Eric Anholteb014592009-03-10 11:44:52 -0700466 remain -= page_length;
467 data_ptr += page_length;
468 offset += page_length;
469 }
470
Chris Wilson4f27b752010-10-14 15:26:45 +0100471out:
Eric Anholteb014592009-03-10 11:44:52 -0700472 for (i = 0; i < pinned_pages; i++) {
473 SetPageDirty(user_pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100474 mark_page_accessed(user_pages[i]);
Eric Anholteb014592009-03-10 11:44:52 -0700475 page_cache_release(user_pages[i]);
476 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700477 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700478
479 return ret;
480}
481
Eric Anholt673a3942008-07-30 12:06:12 -0700482/**
483 * Reads data from the object referenced by handle.
484 *
485 * On error, the contents of *data are undefined.
486 */
487int
488i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000489 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700490{
491 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000492 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100493 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700494
Chris Wilson51311d02010-11-17 09:10:42 +0000495 if (args->size == 0)
496 return 0;
497
498 if (!access_ok(VERIFY_WRITE,
499 (char __user *)(uintptr_t)args->data_ptr,
500 args->size))
501 return -EFAULT;
502
503 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
504 args->size);
505 if (ret)
506 return -EFAULT;
507
Chris Wilson4f27b752010-10-14 15:26:45 +0100508 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100509 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100510 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700511
Chris Wilson05394f32010-11-08 19:18:58 +0000512 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100513 if (obj == NULL) {
514 ret = -ENOENT;
515 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100516 }
Eric Anholt673a3942008-07-30 12:06:12 -0700517
Chris Wilson7dcd2492010-09-26 20:21:44 +0100518 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000519 if (args->offset > obj->base.size ||
520 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100521 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100522 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100523 }
524
Chris Wilson4f27b752010-10-14 15:26:45 +0100525 ret = i915_gem_object_set_cpu_read_domain_range(obj,
526 args->offset,
527 args->size);
528 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100529 goto out;
Chris Wilson4f27b752010-10-14 15:26:45 +0100530
531 ret = -EFAULT;
532 if (!i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson05394f32010-11-08 19:18:58 +0000533 ret = i915_gem_shmem_pread_fast(dev, obj, args, file);
Chris Wilson4f27b752010-10-14 15:26:45 +0100534 if (ret == -EFAULT)
Chris Wilson05394f32010-11-08 19:18:58 +0000535 ret = i915_gem_shmem_pread_slow(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700536
Chris Wilson35b62a82010-09-26 20:23:38 +0100537out:
Chris Wilson05394f32010-11-08 19:18:58 +0000538 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100539unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100540 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700541 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700542}
543
Keith Packard0839ccb2008-10-30 19:38:48 -0700544/* This is the fast write path which cannot handle
545 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700546 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700547
Keith Packard0839ccb2008-10-30 19:38:48 -0700548static inline int
549fast_user_write(struct io_mapping *mapping,
550 loff_t page_base, int page_offset,
551 char __user *user_data,
552 int length)
553{
554 char *vaddr_atomic;
555 unsigned long unwritten;
556
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700557 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700558 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
559 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700560 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100561 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700562}
563
564/* Here's the write path which can sleep for
565 * page faults
566 */
567
Chris Wilsonab34c222010-05-27 14:15:35 +0100568static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700569slow_kernel_write(struct io_mapping *mapping,
570 loff_t gtt_base, int gtt_offset,
571 struct page *user_page, int user_offset,
572 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700573{
Chris Wilsonab34c222010-05-27 14:15:35 +0100574 char __iomem *dst_vaddr;
575 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700576
Chris Wilsonab34c222010-05-27 14:15:35 +0100577 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
578 src_vaddr = kmap(user_page);
579
580 memcpy_toio(dst_vaddr + gtt_offset,
581 src_vaddr + user_offset,
582 length);
583
584 kunmap(user_page);
585 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700586}
587
Eric Anholt3de09aa2009-03-09 09:42:23 -0700588/**
589 * This is the fast pwrite path, where we copy the data directly from the
590 * user into the GTT, uncached.
591 */
Eric Anholt673a3942008-07-30 12:06:12 -0700592static int
Chris Wilson05394f32010-11-08 19:18:58 +0000593i915_gem_gtt_pwrite_fast(struct drm_device *dev,
594 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700595 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000596 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700597{
Keith Packard0839ccb2008-10-30 19:38:48 -0700598 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700599 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700600 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700601 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700602 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700603
604 user_data = (char __user *) (uintptr_t) args->data_ptr;
605 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700606
Chris Wilson05394f32010-11-08 19:18:58 +0000607 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700608
609 while (remain > 0) {
610 /* Operation in this page
611 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700612 * page_base = page offset within aperture
613 * page_offset = offset within page
614 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700615 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700616 page_base = (offset & ~(PAGE_SIZE-1));
617 page_offset = offset & (PAGE_SIZE-1);
618 page_length = remain;
619 if ((page_offset + remain) > PAGE_SIZE)
620 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700621
Keith Packard0839ccb2008-10-30 19:38:48 -0700622 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700623 * source page isn't available. Return the error and we'll
624 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700625 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100626 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
627 page_offset, user_data, page_length))
628
629 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700630
Keith Packard0839ccb2008-10-30 19:38:48 -0700631 remain -= page_length;
632 user_data += page_length;
633 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700634 }
Eric Anholt673a3942008-07-30 12:06:12 -0700635
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100636 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700637}
638
Eric Anholt3de09aa2009-03-09 09:42:23 -0700639/**
640 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
641 * the memory and maps it using kmap_atomic for copying.
642 *
643 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
644 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
645 */
Eric Anholt3043c602008-10-02 12:24:47 -0700646static int
Chris Wilson05394f32010-11-08 19:18:58 +0000647i915_gem_gtt_pwrite_slow(struct drm_device *dev,
648 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700649 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000650 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700651{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700652 drm_i915_private_t *dev_priv = dev->dev_private;
653 ssize_t remain;
654 loff_t gtt_page_base, offset;
655 loff_t first_data_page, last_data_page, num_pages;
656 loff_t pinned_pages, i;
657 struct page **user_pages;
658 struct mm_struct *mm = current->mm;
659 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700660 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700661 uint64_t data_ptr = args->data_ptr;
662
663 remain = args->size;
664
665 /* Pin the user pages containing the data. We can't fault while
666 * holding the struct mutex, and all of the pwrite implementations
667 * want to hold it while dereferencing the user data.
668 */
669 first_data_page = data_ptr / PAGE_SIZE;
670 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
671 num_pages = last_data_page - first_data_page + 1;
672
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100673 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700674 if (user_pages == NULL)
675 return -ENOMEM;
676
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100677 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700678 down_read(&mm->mmap_sem);
679 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
680 num_pages, 0, 0, user_pages, NULL);
681 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100682 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700683 if (pinned_pages < num_pages) {
684 ret = -EFAULT;
685 goto out_unpin_pages;
686 }
687
Chris Wilsond9e86c02010-11-10 16:40:20 +0000688 ret = i915_gem_object_set_to_gtt_domain(obj, true);
689 if (ret)
690 goto out_unpin_pages;
691
692 ret = i915_gem_object_put_fence(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700693 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100694 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700695
Chris Wilson05394f32010-11-08 19:18:58 +0000696 offset = obj->gtt_offset + args->offset;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700697
698 while (remain > 0) {
699 /* Operation in this page
700 *
701 * gtt_page_base = page offset within aperture
702 * gtt_page_offset = offset within page in aperture
703 * data_page_index = page number in get_user_pages return
704 * data_page_offset = offset with data_page_index page.
705 * page_length = bytes to copy for this page
706 */
707 gtt_page_base = offset & PAGE_MASK;
708 gtt_page_offset = offset & ~PAGE_MASK;
709 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
710 data_page_offset = data_ptr & ~PAGE_MASK;
711
712 page_length = remain;
713 if ((gtt_page_offset + page_length) > PAGE_SIZE)
714 page_length = PAGE_SIZE - gtt_page_offset;
715 if ((data_page_offset + page_length) > PAGE_SIZE)
716 page_length = PAGE_SIZE - data_page_offset;
717
Chris Wilsonab34c222010-05-27 14:15:35 +0100718 slow_kernel_write(dev_priv->mm.gtt_mapping,
719 gtt_page_base, gtt_page_offset,
720 user_pages[data_page_index],
721 data_page_offset,
722 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700723
724 remain -= page_length;
725 offset += page_length;
726 data_ptr += page_length;
727 }
728
Eric Anholt3de09aa2009-03-09 09:42:23 -0700729out_unpin_pages:
730 for (i = 0; i < pinned_pages; i++)
731 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700732 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700733
734 return ret;
735}
736
Eric Anholt40123c12009-03-09 13:42:30 -0700737/**
738 * This is the fast shmem pwrite path, which attempts to directly
739 * copy_from_user into the kmapped pages backing the object.
740 */
Eric Anholt673a3942008-07-30 12:06:12 -0700741static int
Chris Wilson05394f32010-11-08 19:18:58 +0000742i915_gem_shmem_pwrite_fast(struct drm_device *dev,
743 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700744 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000745 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700746{
Chris Wilson05394f32010-11-08 19:18:58 +0000747 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700748 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100749 loff_t offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700750 char __user *user_data;
751 int page_offset, page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700752
753 user_data = (char __user *) (uintptr_t) args->data_ptr;
754 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700755
Eric Anholt673a3942008-07-30 12:06:12 -0700756 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000757 obj->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700758
Eric Anholt40123c12009-03-09 13:42:30 -0700759 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100760 struct page *page;
761 char *vaddr;
762 int ret;
763
Eric Anholt40123c12009-03-09 13:42:30 -0700764 /* Operation in this page
765 *
Eric Anholt40123c12009-03-09 13:42:30 -0700766 * page_offset = offset within page
767 * page_length = bytes to copy for this page
768 */
Eric Anholt40123c12009-03-09 13:42:30 -0700769 page_offset = offset & (PAGE_SIZE-1);
770 page_length = remain;
771 if ((page_offset + remain) > PAGE_SIZE)
772 page_length = PAGE_SIZE - page_offset;
773
Chris Wilsone5281cc2010-10-28 13:45:36 +0100774 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
775 GFP_HIGHUSER | __GFP_RECLAIMABLE);
776 if (IS_ERR(page))
777 return PTR_ERR(page);
778
779 vaddr = kmap_atomic(page, KM_USER0);
780 ret = __copy_from_user_inatomic(vaddr + page_offset,
781 user_data,
782 page_length);
783 kunmap_atomic(vaddr, KM_USER0);
784
785 set_page_dirty(page);
786 mark_page_accessed(page);
787 page_cache_release(page);
788
789 /* If we get a fault while copying data, then (presumably) our
790 * source page isn't available. Return the error and we'll
791 * retry in the slow path.
792 */
793 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100794 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700795
796 remain -= page_length;
797 user_data += page_length;
798 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700799 }
800
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100801 return 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700802}
803
804/**
805 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
806 * the memory and maps it using kmap_atomic for copying.
807 *
808 * This avoids taking mmap_sem for faulting on the user's address while the
809 * struct_mutex is held.
810 */
811static int
Chris Wilson05394f32010-11-08 19:18:58 +0000812i915_gem_shmem_pwrite_slow(struct drm_device *dev,
813 struct drm_i915_gem_object *obj,
Eric Anholt40123c12009-03-09 13:42:30 -0700814 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000815 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700816{
Chris Wilson05394f32010-11-08 19:18:58 +0000817 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700818 struct mm_struct *mm = current->mm;
819 struct page **user_pages;
820 ssize_t remain;
821 loff_t offset, pinned_pages, i;
822 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100823 int shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700824 int data_page_index, data_page_offset;
825 int page_length;
826 int ret;
827 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700828 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700829
830 remain = args->size;
831
832 /* Pin the user pages containing the data. We can't fault while
833 * holding the struct mutex, and all of the pwrite implementations
834 * want to hold it while dereferencing the user data.
835 */
836 first_data_page = data_ptr / PAGE_SIZE;
837 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
838 num_pages = last_data_page - first_data_page + 1;
839
Chris Wilson4f27b752010-10-14 15:26:45 +0100840 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700841 if (user_pages == NULL)
842 return -ENOMEM;
843
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100844 mutex_unlock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700845 down_read(&mm->mmap_sem);
846 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
847 num_pages, 0, 0, user_pages, NULL);
848 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100849 mutex_lock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700850 if (pinned_pages < num_pages) {
851 ret = -EFAULT;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100852 goto out;
Eric Anholt40123c12009-03-09 13:42:30 -0700853 }
854
Eric Anholt40123c12009-03-09 13:42:30 -0700855 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100856 if (ret)
857 goto out;
858
859 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700860
Eric Anholt40123c12009-03-09 13:42:30 -0700861 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000862 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700863
864 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100865 struct page *page;
866
Eric Anholt40123c12009-03-09 13:42:30 -0700867 /* Operation in this page
868 *
Eric Anholt40123c12009-03-09 13:42:30 -0700869 * shmem_page_offset = offset within page in shmem file
870 * data_page_index = page number in get_user_pages return
871 * data_page_offset = offset with data_page_index page.
872 * page_length = bytes to copy for this page
873 */
Eric Anholt40123c12009-03-09 13:42:30 -0700874 shmem_page_offset = offset & ~PAGE_MASK;
875 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
876 data_page_offset = data_ptr & ~PAGE_MASK;
877
878 page_length = remain;
879 if ((shmem_page_offset + page_length) > PAGE_SIZE)
880 page_length = PAGE_SIZE - shmem_page_offset;
881 if ((data_page_offset + page_length) > PAGE_SIZE)
882 page_length = PAGE_SIZE - data_page_offset;
883
Chris Wilsone5281cc2010-10-28 13:45:36 +0100884 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
885 GFP_HIGHUSER | __GFP_RECLAIMABLE);
886 if (IS_ERR(page)) {
887 ret = PTR_ERR(page);
888 goto out;
889 }
890
Eric Anholt280b7132009-03-12 16:56:27 -0700891 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100892 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700893 shmem_page_offset,
894 user_pages[data_page_index],
895 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100896 page_length,
897 0);
898 } else {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100899 slow_shmem_copy(page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100900 shmem_page_offset,
901 user_pages[data_page_index],
902 data_page_offset,
903 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700904 }
Eric Anholt40123c12009-03-09 13:42:30 -0700905
Chris Wilsone5281cc2010-10-28 13:45:36 +0100906 set_page_dirty(page);
907 mark_page_accessed(page);
908 page_cache_release(page);
909
Eric Anholt40123c12009-03-09 13:42:30 -0700910 remain -= page_length;
911 data_ptr += page_length;
912 offset += page_length;
913 }
914
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100915out:
Eric Anholt40123c12009-03-09 13:42:30 -0700916 for (i = 0; i < pinned_pages; i++)
917 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700918 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -0700919
920 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700921}
922
923/**
924 * Writes data to the object referenced by handle.
925 *
926 * On error, the contents of the buffer that were to be modified are undefined.
927 */
928int
929i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100930 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700931{
932 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000933 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000934 int ret;
935
936 if (args->size == 0)
937 return 0;
938
939 if (!access_ok(VERIFY_READ,
940 (char __user *)(uintptr_t)args->data_ptr,
941 args->size))
942 return -EFAULT;
943
944 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
945 args->size);
946 if (ret)
947 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700948
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100949 ret = i915_mutex_lock_interruptible(dev);
950 if (ret)
951 return ret;
952
Chris Wilson05394f32010-11-08 19:18:58 +0000953 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100954 if (obj == NULL) {
955 ret = -ENOENT;
956 goto unlock;
957 }
Eric Anholt673a3942008-07-30 12:06:12 -0700958
Chris Wilson7dcd2492010-09-26 20:21:44 +0100959 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000960 if (args->offset > obj->base.size ||
961 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100962 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100963 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100964 }
965
Eric Anholt673a3942008-07-30 12:06:12 -0700966 /* We can only do the GTT pwrite on untiled buffers, as otherwise
967 * it would end up going through the fenced access, and we'll get
968 * different detiling behavior between reading and writing.
969 * pread/pwrite currently are reading and writing from the CPU
970 * perspective, requiring manual detiling by the client.
971 */
Chris Wilson05394f32010-11-08 19:18:58 +0000972 if (obj->phys_obj)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100973 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Chris Wilsond9e86c02010-11-10 16:40:20 +0000974 else if (obj->gtt_space &&
Chris Wilson05394f32010-11-08 19:18:58 +0000975 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +0100976 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100977 if (ret)
978 goto out;
979
Chris Wilsond9e86c02010-11-10 16:40:20 +0000980 ret = i915_gem_object_set_to_gtt_domain(obj, true);
981 if (ret)
982 goto out_unpin;
983
984 ret = i915_gem_object_put_fence(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100985 if (ret)
986 goto out_unpin;
987
988 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
989 if (ret == -EFAULT)
990 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
991
992out_unpin:
993 i915_gem_object_unpin(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700994 } else {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100995 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
996 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100997 goto out;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100998
999 ret = -EFAULT;
1000 if (!i915_gem_object_needs_bit17_swizzle(obj))
1001 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file);
1002 if (ret == -EFAULT)
1003 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file);
Eric Anholt40123c12009-03-09 13:42:30 -07001004 }
Eric Anholt673a3942008-07-30 12:06:12 -07001005
Chris Wilson35b62a82010-09-26 20:23:38 +01001006out:
Chris Wilson05394f32010-11-08 19:18:58 +00001007 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001008unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001009 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001010 return ret;
1011}
1012
1013/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001014 * Called when user space prepares to use an object with the CPU, either
1015 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001016 */
1017int
1018i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001019 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001020{
1021 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001022 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001023 uint32_t read_domains = args->read_domains;
1024 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001025 int ret;
1026
1027 if (!(dev->driver->driver_features & DRIVER_GEM))
1028 return -ENODEV;
1029
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001030 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001031 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001032 return -EINVAL;
1033
Chris Wilson21d509e2009-06-06 09:46:02 +01001034 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001035 return -EINVAL;
1036
1037 /* Having something in the write domain implies it's in the read
1038 * domain, and only that read domain. Enforce that in the request.
1039 */
1040 if (write_domain != 0 && read_domains != write_domain)
1041 return -EINVAL;
1042
Chris Wilson76c1dec2010-09-25 11:22:51 +01001043 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001044 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001045 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001046
Chris Wilson05394f32010-11-08 19:18:58 +00001047 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001048 if (obj == NULL) {
1049 ret = -ENOENT;
1050 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001051 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001052
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001053 if (read_domains & I915_GEM_DOMAIN_GTT) {
1054 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001055
1056 /* Silently promote "you're not bound, there was nothing to do"
1057 * to success, since the client was just asking us to
1058 * make sure everything was done.
1059 */
1060 if (ret == -EINVAL)
1061 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001062 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001063 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001064 }
1065
Chris Wilson05394f32010-11-08 19:18:58 +00001066 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001067unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001068 mutex_unlock(&dev->struct_mutex);
1069 return ret;
1070}
1071
1072/**
1073 * Called when user space has done writes to this buffer
1074 */
1075int
1076i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001077 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001078{
1079 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001080 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001081 int ret = 0;
1082
1083 if (!(dev->driver->driver_features & DRIVER_GEM))
1084 return -ENODEV;
1085
Chris Wilson76c1dec2010-09-25 11:22:51 +01001086 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001087 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001088 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001089
Chris Wilson05394f32010-11-08 19:18:58 +00001090 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07001091 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001092 ret = -ENOENT;
1093 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001094 }
1095
Eric Anholt673a3942008-07-30 12:06:12 -07001096 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001097 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001098 i915_gem_object_flush_cpu_write_domain(obj);
1099
Chris Wilson05394f32010-11-08 19:18:58 +00001100 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001101unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001102 mutex_unlock(&dev->struct_mutex);
1103 return ret;
1104}
1105
1106/**
1107 * Maps the contents of an object, returning the address it is mapped
1108 * into.
1109 *
1110 * While the mapping holds a reference on the contents of the object, it doesn't
1111 * imply a ref on the object itself.
1112 */
1113int
1114i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001115 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001116{
Chris Wilsonda761a62010-10-27 17:37:08 +01001117 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001118 struct drm_i915_gem_mmap *args = data;
1119 struct drm_gem_object *obj;
1120 loff_t offset;
1121 unsigned long addr;
1122
1123 if (!(dev->driver->driver_features & DRIVER_GEM))
1124 return -ENODEV;
1125
Chris Wilson05394f32010-11-08 19:18:58 +00001126 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001127 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001128 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001129
Chris Wilsonda761a62010-10-27 17:37:08 +01001130 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1131 drm_gem_object_unreference_unlocked(obj);
1132 return -E2BIG;
1133 }
1134
Eric Anholt673a3942008-07-30 12:06:12 -07001135 offset = args->offset;
1136
1137 down_write(&current->mm->mmap_sem);
1138 addr = do_mmap(obj->filp, 0, args->size,
1139 PROT_READ | PROT_WRITE, MAP_SHARED,
1140 args->offset);
1141 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001142 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001143 if (IS_ERR((void *)addr))
1144 return addr;
1145
1146 args->addr_ptr = (uint64_t) addr;
1147
1148 return 0;
1149}
1150
Jesse Barnesde151cf2008-11-12 10:03:55 -08001151/**
1152 * i915_gem_fault - fault a page into the GTT
1153 * vma: VMA in question
1154 * vmf: fault info
1155 *
1156 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1157 * from userspace. The fault handler takes care of binding the object to
1158 * the GTT (if needed), allocating and programming a fence register (again,
1159 * only if needed based on whether the old reg is still valid or the object
1160 * is tiled) and inserting a new PTE into the faulting process.
1161 *
1162 * Note that the faulting process may involve evicting existing objects
1163 * from the GTT and/or fence registers to make room. So performance may
1164 * suffer if the GTT working set is large or there are few fence registers
1165 * left.
1166 */
1167int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1168{
Chris Wilson05394f32010-11-08 19:18:58 +00001169 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1170 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001171 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001172 pgoff_t page_offset;
1173 unsigned long pfn;
1174 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001175 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001176
1177 /* We don't use vmf->pgoff since that has the fake offset */
1178 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1179 PAGE_SHIFT;
1180
1181 /* Now bind it into the GTT if needed */
1182 mutex_lock(&dev->struct_mutex);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001183
Chris Wilson919926a2010-11-12 13:42:53 +00001184 if (!obj->map_and_fenceable) {
1185 ret = i915_gem_object_unbind(obj);
1186 if (ret)
1187 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001188 }
Chris Wilson05394f32010-11-08 19:18:58 +00001189 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001190 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001191 if (ret)
1192 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001193 }
1194
Chris Wilson4a684a42010-10-28 14:44:08 +01001195 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1196 if (ret)
1197 goto unlock;
1198
Chris Wilsond9e86c02010-11-10 16:40:20 +00001199 if (obj->tiling_mode == I915_TILING_NONE)
1200 ret = i915_gem_object_put_fence(obj);
1201 else
1202 ret = i915_gem_object_get_fence(obj, NULL, true);
1203 if (ret)
1204 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001205
Chris Wilson05394f32010-11-08 19:18:58 +00001206 if (i915_gem_object_is_inactive(obj))
1207 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001208
Chris Wilson6299f992010-11-24 12:23:44 +00001209 obj->fault_mappable = true;
1210
Chris Wilson05394f32010-11-08 19:18:58 +00001211 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001212 page_offset;
1213
1214 /* Finally, remap it using the new GTT offset */
1215 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001216unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001217 mutex_unlock(&dev->struct_mutex);
1218
1219 switch (ret) {
Chris Wilson045e7692010-11-07 09:18:22 +00001220 case -EAGAIN:
1221 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001222 case 0:
1223 case -ERESTARTSYS:
1224 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001225 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001226 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001227 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001228 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001229 }
1230}
1231
1232/**
1233 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1234 * @obj: obj in question
1235 *
1236 * GEM memory mapping works by handing back to userspace a fake mmap offset
1237 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1238 * up the object based on the offset and sets up the various memory mapping
1239 * structures.
1240 *
1241 * This routine allocates and attaches a fake offset for @obj.
1242 */
1243static int
Chris Wilson05394f32010-11-08 19:18:58 +00001244i915_gem_create_mmap_offset(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001245{
Chris Wilson05394f32010-11-08 19:18:58 +00001246 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001247 struct drm_gem_mm *mm = dev->mm_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001248 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001249 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001250 int ret = 0;
1251
1252 /* Set the object up for mmap'ing */
Chris Wilson05394f32010-11-08 19:18:58 +00001253 list = &obj->base.map_list;
Eric Anholt9a298b22009-03-24 12:23:04 -07001254 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001255 if (!list->map)
1256 return -ENOMEM;
1257
1258 map = list->map;
1259 map->type = _DRM_GEM;
Chris Wilson05394f32010-11-08 19:18:58 +00001260 map->size = obj->base.size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001261 map->handle = obj;
1262
1263 /* Get a DRM GEM mmap offset allocated... */
1264 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
Chris Wilson05394f32010-11-08 19:18:58 +00001265 obj->base.size / PAGE_SIZE,
1266 0, 0);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001267 if (!list->file_offset_node) {
Chris Wilson05394f32010-11-08 19:18:58 +00001268 DRM_ERROR("failed to allocate offset for bo %d\n",
1269 obj->base.name);
Chris Wilson9e0ae5342010-09-21 15:05:24 +01001270 ret = -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001271 goto out_free_list;
1272 }
1273
1274 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
Chris Wilson05394f32010-11-08 19:18:58 +00001275 obj->base.size / PAGE_SIZE,
1276 0);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001277 if (!list->file_offset_node) {
1278 ret = -ENOMEM;
1279 goto out_free_list;
1280 }
1281
1282 list->hash.key = list->file_offset_node->start;
Chris Wilson9e0ae5342010-09-21 15:05:24 +01001283 ret = drm_ht_insert_item(&mm->offset_hash, &list->hash);
1284 if (ret) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001285 DRM_ERROR("failed to add to map hash\n");
1286 goto out_free_mm;
1287 }
1288
Jesse Barnesde151cf2008-11-12 10:03:55 -08001289 return 0;
1290
1291out_free_mm:
1292 drm_mm_put_block(list->file_offset_node);
1293out_free_list:
Eric Anholt9a298b22009-03-24 12:23:04 -07001294 kfree(list->map);
Chris Wilson39a01d12010-10-28 13:03:06 +01001295 list->map = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001296
1297 return ret;
1298}
1299
Chris Wilson901782b2009-07-10 08:18:50 +01001300/**
1301 * i915_gem_release_mmap - remove physical page mappings
1302 * @obj: obj in question
1303 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001304 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001305 * relinquish ownership of the pages back to the system.
1306 *
1307 * It is vital that we remove the page mapping if we have mapped a tiled
1308 * object through the GTT and then lose the fence register due to
1309 * resource pressure. Similarly if the object has been moved out of the
1310 * aperture, than pages mapped into userspace must be revoked. Removing the
1311 * mapping will then trigger a page fault on the next user access, allowing
1312 * fixup by i915_gem_fault().
1313 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001314void
Chris Wilson05394f32010-11-08 19:18:58 +00001315i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001316{
Chris Wilson6299f992010-11-24 12:23:44 +00001317 if (!obj->fault_mappable)
1318 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001319
Chris Wilson6299f992010-11-24 12:23:44 +00001320 unmap_mapping_range(obj->base.dev->dev_mapping,
1321 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1322 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001323
Chris Wilson6299f992010-11-24 12:23:44 +00001324 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001325}
1326
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001327static void
Chris Wilson05394f32010-11-08 19:18:58 +00001328i915_gem_free_mmap_offset(struct drm_i915_gem_object *obj)
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001329{
Chris Wilson05394f32010-11-08 19:18:58 +00001330 struct drm_device *dev = obj->base.dev;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001331 struct drm_gem_mm *mm = dev->mm_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001332 struct drm_map_list *list = &obj->base.map_list;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001333
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001334 drm_ht_remove_item(&mm->offset_hash, &list->hash);
Chris Wilson39a01d12010-10-28 13:03:06 +01001335 drm_mm_put_block(list->file_offset_node);
1336 kfree(list->map);
1337 list->map = NULL;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001338}
1339
Chris Wilson92b88ae2010-11-09 11:47:32 +00001340static uint32_t
1341i915_gem_get_gtt_size(struct drm_i915_gem_object *obj)
1342{
1343 struct drm_device *dev = obj->base.dev;
1344 uint32_t size;
1345
1346 if (INTEL_INFO(dev)->gen >= 4 ||
1347 obj->tiling_mode == I915_TILING_NONE)
1348 return obj->base.size;
1349
1350 /* Previous chips need a power-of-two fence region when tiling */
1351 if (INTEL_INFO(dev)->gen == 3)
1352 size = 1024*1024;
1353 else
1354 size = 512*1024;
1355
1356 while (size < obj->base.size)
1357 size <<= 1;
1358
1359 return size;
1360}
1361
Jesse Barnesde151cf2008-11-12 10:03:55 -08001362/**
1363 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1364 * @obj: object to check
1365 *
1366 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001367 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001368 */
1369static uint32_t
Chris Wilson05394f32010-11-08 19:18:58 +00001370i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001371{
Chris Wilson05394f32010-11-08 19:18:58 +00001372 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001373
1374 /*
1375 * Minimum alignment is 4k (GTT page size), but might be greater
1376 * if a fence register is needed for the object.
1377 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001378 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilson05394f32010-11-08 19:18:58 +00001379 obj->tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001380 return 4096;
1381
1382 /*
1383 * Previous chips need to be aligned to the size of the smallest
1384 * fence register that can contain the object.
1385 */
Chris Wilson05394f32010-11-08 19:18:58 +00001386 return i915_gem_get_gtt_size(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001387}
1388
Daniel Vetter5e783302010-11-14 22:32:36 +01001389/**
1390 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1391 * unfenced object
1392 * @obj: object to check
1393 *
1394 * Return the required GTT alignment for an object, only taking into account
1395 * unfenced tiled surface requirements.
1396 */
1397static uint32_t
Chris Wilson05394f32010-11-08 19:18:58 +00001398i915_gem_get_unfenced_gtt_alignment(struct drm_i915_gem_object *obj)
Daniel Vetter5e783302010-11-14 22:32:36 +01001399{
Chris Wilson05394f32010-11-08 19:18:58 +00001400 struct drm_device *dev = obj->base.dev;
Daniel Vetter5e783302010-11-14 22:32:36 +01001401 int tile_height;
1402
1403 /*
1404 * Minimum alignment is 4k (GTT page size) for sane hw.
1405 */
1406 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilson05394f32010-11-08 19:18:58 +00001407 obj->tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001408 return 4096;
1409
1410 /*
1411 * Older chips need unfenced tiled buffers to be aligned to the left
1412 * edge of an even tile row (where tile rows are counted as if the bo is
1413 * placed in a fenced gtt region).
1414 */
1415 if (IS_GEN2(dev) ||
Chris Wilson05394f32010-11-08 19:18:58 +00001416 (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev)))
Daniel Vetter5e783302010-11-14 22:32:36 +01001417 tile_height = 32;
1418 else
1419 tile_height = 8;
1420
Chris Wilson05394f32010-11-08 19:18:58 +00001421 return tile_height * obj->stride * 2;
Daniel Vetter5e783302010-11-14 22:32:36 +01001422}
1423
Jesse Barnesde151cf2008-11-12 10:03:55 -08001424/**
1425 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1426 * @dev: DRM device
1427 * @data: GTT mapping ioctl data
Chris Wilson05394f32010-11-08 19:18:58 +00001428 * @file: GEM object info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001429 *
1430 * Simply returns the fake offset to userspace so it can mmap it.
1431 * The mmap call will end up in drm_gem_mmap(), which will set things
1432 * up so we can get faults in the handler above.
1433 *
1434 * The fault handler will take care of binding the object into the GTT
1435 * (since it may have been evicted to make room for something), allocating
1436 * a fence register, and mapping the appropriate aperture address into
1437 * userspace.
1438 */
1439int
1440i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001441 struct drm_file *file)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001442{
Chris Wilsonda761a62010-10-27 17:37:08 +01001443 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001444 struct drm_i915_gem_mmap_gtt *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001445 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001446 int ret;
1447
1448 if (!(dev->driver->driver_features & DRIVER_GEM))
1449 return -ENODEV;
1450
Chris Wilson76c1dec2010-09-25 11:22:51 +01001451 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001452 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001453 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001454
Chris Wilson05394f32010-11-08 19:18:58 +00001455 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001456 if (obj == NULL) {
1457 ret = -ENOENT;
1458 goto unlock;
1459 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001460
Chris Wilson05394f32010-11-08 19:18:58 +00001461 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001462 ret = -E2BIG;
1463 goto unlock;
1464 }
1465
Chris Wilson05394f32010-11-08 19:18:58 +00001466 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001467 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001468 ret = -EINVAL;
1469 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001470 }
1471
Chris Wilson05394f32010-11-08 19:18:58 +00001472 if (!obj->base.map_list.map) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001473 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001474 if (ret)
1475 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001476 }
1477
Chris Wilson05394f32010-11-08 19:18:58 +00001478 args->offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001479
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001480out:
Chris Wilson05394f32010-11-08 19:18:58 +00001481 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001482unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001483 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001484 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001485}
1486
Chris Wilsone5281cc2010-10-28 13:45:36 +01001487static int
Chris Wilson05394f32010-11-08 19:18:58 +00001488i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001489 gfp_t gfpmask)
1490{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001491 int page_count, i;
1492 struct address_space *mapping;
1493 struct inode *inode;
1494 struct page *page;
1495
1496 /* Get the list of pages out of our struct file. They'll be pinned
1497 * at this point until we release them.
1498 */
Chris Wilson05394f32010-11-08 19:18:58 +00001499 page_count = obj->base.size / PAGE_SIZE;
1500 BUG_ON(obj->pages != NULL);
1501 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1502 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001503 return -ENOMEM;
1504
Chris Wilson05394f32010-11-08 19:18:58 +00001505 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001506 mapping = inode->i_mapping;
1507 for (i = 0; i < page_count; i++) {
1508 page = read_cache_page_gfp(mapping, i,
1509 GFP_HIGHUSER |
1510 __GFP_COLD |
1511 __GFP_RECLAIMABLE |
1512 gfpmask);
1513 if (IS_ERR(page))
1514 goto err_pages;
1515
Chris Wilson05394f32010-11-08 19:18:58 +00001516 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001517 }
1518
Chris Wilson05394f32010-11-08 19:18:58 +00001519 if (obj->tiling_mode != I915_TILING_NONE)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001520 i915_gem_object_do_bit_17_swizzle(obj);
1521
1522 return 0;
1523
1524err_pages:
1525 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001526 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001527
Chris Wilson05394f32010-11-08 19:18:58 +00001528 drm_free_large(obj->pages);
1529 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001530 return PTR_ERR(page);
1531}
1532
Chris Wilson5cdf5882010-09-27 15:51:07 +01001533static void
Chris Wilson05394f32010-11-08 19:18:58 +00001534i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001535{
Chris Wilson05394f32010-11-08 19:18:58 +00001536 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001537 int i;
1538
Chris Wilson05394f32010-11-08 19:18:58 +00001539 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001540
Chris Wilson05394f32010-11-08 19:18:58 +00001541 if (obj->tiling_mode != I915_TILING_NONE)
Eric Anholt280b7132009-03-12 16:56:27 -07001542 i915_gem_object_save_bit_17_swizzle(obj);
1543
Chris Wilson05394f32010-11-08 19:18:58 +00001544 if (obj->madv == I915_MADV_DONTNEED)
1545 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001546
1547 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001548 if (obj->dirty)
1549 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001550
Chris Wilson05394f32010-11-08 19:18:58 +00001551 if (obj->madv == I915_MADV_WILLNEED)
1552 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001553
Chris Wilson05394f32010-11-08 19:18:58 +00001554 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001555 }
Chris Wilson05394f32010-11-08 19:18:58 +00001556 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001557
Chris Wilson05394f32010-11-08 19:18:58 +00001558 drm_free_large(obj->pages);
1559 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001560}
1561
Chris Wilson54cf91d2010-11-25 18:00:26 +00001562void
Chris Wilson05394f32010-11-08 19:18:58 +00001563i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001564 struct intel_ring_buffer *ring,
1565 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001566{
Chris Wilson05394f32010-11-08 19:18:58 +00001567 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001568 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001569
Zou Nan hai852835f2010-05-21 09:08:56 +08001570 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001571 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001572
1573 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001574 if (!obj->active) {
1575 drm_gem_object_reference(&obj->base);
1576 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001577 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001578
Eric Anholt673a3942008-07-30 12:06:12 -07001579 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001580 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1581 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001582
Chris Wilson05394f32010-11-08 19:18:58 +00001583 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001584 if (obj->fenced_gpu_access) {
1585 struct drm_i915_fence_reg *reg;
1586
1587 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1588
1589 obj->last_fenced_seqno = seqno;
1590 obj->last_fenced_ring = ring;
1591
1592 reg = &dev_priv->fence_regs[obj->fence_reg];
1593 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1594 }
1595}
1596
1597static void
1598i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1599{
1600 list_del_init(&obj->ring_list);
1601 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001602}
1603
Eric Anholtce44b0e2008-11-06 16:00:31 -08001604static void
Chris Wilson05394f32010-11-08 19:18:58 +00001605i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001606{
Chris Wilson05394f32010-11-08 19:18:58 +00001607 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001608 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001609
Chris Wilson05394f32010-11-08 19:18:58 +00001610 BUG_ON(!obj->active);
1611 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001612
1613 i915_gem_object_move_off_active(obj);
1614}
1615
1616static void
1617i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1618{
1619 struct drm_device *dev = obj->base.dev;
1620 struct drm_i915_private *dev_priv = dev->dev_private;
1621
1622 if (obj->pin_count != 0)
1623 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1624 else
1625 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1626
1627 BUG_ON(!list_empty(&obj->gpu_write_list));
1628 BUG_ON(!obj->active);
1629 obj->ring = NULL;
1630
1631 i915_gem_object_move_off_active(obj);
1632 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001633
1634 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001635 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001636 drm_gem_object_unreference(&obj->base);
1637
1638 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001639}
Eric Anholt673a3942008-07-30 12:06:12 -07001640
Chris Wilson963b4832009-09-20 23:03:54 +01001641/* Immediately discard the backing storage */
1642static void
Chris Wilson05394f32010-11-08 19:18:58 +00001643i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001644{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001645 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001646
Chris Wilsonae9fed62010-08-07 11:01:30 +01001647 /* Our goal here is to return as much of the memory as
1648 * is possible back to the system as we are called from OOM.
1649 * To do this we must instruct the shmfs to drop all of its
1650 * backing pages, *now*. Here we mirror the actions taken
1651 * when by shmem_delete_inode() to release the backing store.
1652 */
Chris Wilson05394f32010-11-08 19:18:58 +00001653 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsonae9fed62010-08-07 11:01:30 +01001654 truncate_inode_pages(inode->i_mapping, 0);
1655 if (inode->i_op->truncate_range)
1656 inode->i_op->truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001657
Chris Wilson05394f32010-11-08 19:18:58 +00001658 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001659}
1660
1661static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001662i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001663{
Chris Wilson05394f32010-11-08 19:18:58 +00001664 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001665}
1666
Eric Anholt673a3942008-07-30 12:06:12 -07001667static void
Daniel Vetter63560392010-02-19 11:51:59 +01001668i915_gem_process_flushing_list(struct drm_device *dev,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001669 uint32_t flush_domains,
Zou Nan hai852835f2010-05-21 09:08:56 +08001670 struct intel_ring_buffer *ring)
Daniel Vetter63560392010-02-19 11:51:59 +01001671{
Chris Wilson05394f32010-11-08 19:18:58 +00001672 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001673
Chris Wilson05394f32010-11-08 19:18:58 +00001674 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001675 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001676 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001677 if (obj->base.write_domain & flush_domains) {
1678 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001679
Chris Wilson05394f32010-11-08 19:18:58 +00001680 obj->base.write_domain = 0;
1681 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001682 i915_gem_object_move_to_active(obj, ring,
1683 i915_gem_next_request_seqno(dev, ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001684
Daniel Vetter63560392010-02-19 11:51:59 +01001685 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001686 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001687 old_write_domain);
1688 }
1689 }
1690}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001691
Chris Wilson3cce4692010-10-27 16:11:02 +01001692int
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001693i915_add_request(struct drm_device *dev,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001694 struct drm_file *file,
Chris Wilson8dc5d142010-08-12 12:36:12 +01001695 struct drm_i915_gem_request *request,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001696 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001697{
1698 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001699 struct drm_i915_file_private *file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001700 uint32_t seqno;
1701 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001702 int ret;
1703
1704 BUG_ON(request == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001705
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001706 if (file != NULL)
1707 file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001708
Chris Wilson3cce4692010-10-27 16:11:02 +01001709 ret = ring->add_request(ring, &seqno);
1710 if (ret)
1711 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001712
Chris Wilsona56ba562010-09-28 10:07:56 +01001713 ring->outstanding_lazy_request = false;
Eric Anholt673a3942008-07-30 12:06:12 -07001714
1715 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001716 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001717 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001718 was_empty = list_empty(&ring->request_list);
1719 list_add_tail(&request->list, &ring->request_list);
1720
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001721 if (file_priv) {
Chris Wilson1c255952010-09-26 11:03:27 +01001722 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001723 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001724 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001725 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001726 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001727 }
Eric Anholt673a3942008-07-30 12:06:12 -07001728
Ben Gamarif65d9422009-09-14 17:48:44 -04001729 if (!dev_priv->mm.suspended) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001730 mod_timer(&dev_priv->hangcheck_timer,
1731 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001732 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001733 queue_delayed_work(dev_priv->wq,
1734 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001735 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001736 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001737}
1738
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001739static inline void
1740i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001741{
Chris Wilson1c255952010-09-26 11:03:27 +01001742 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001743
Chris Wilson1c255952010-09-26 11:03:27 +01001744 if (!file_priv)
1745 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001746
Chris Wilson1c255952010-09-26 11:03:27 +01001747 spin_lock(&file_priv->mm.lock);
1748 list_del(&request->client_list);
1749 request->file_priv = NULL;
1750 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001751}
1752
Chris Wilsondfaae392010-09-22 10:31:52 +01001753static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1754 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001755{
Chris Wilsondfaae392010-09-22 10:31:52 +01001756 while (!list_empty(&ring->request_list)) {
1757 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001758
Chris Wilsondfaae392010-09-22 10:31:52 +01001759 request = list_first_entry(&ring->request_list,
1760 struct drm_i915_gem_request,
1761 list);
1762
1763 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001764 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001765 kfree(request);
1766 }
1767
1768 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001769 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001770
Chris Wilson05394f32010-11-08 19:18:58 +00001771 obj = list_first_entry(&ring->active_list,
1772 struct drm_i915_gem_object,
1773 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001774
Chris Wilson05394f32010-11-08 19:18:58 +00001775 obj->base.write_domain = 0;
1776 list_del_init(&obj->gpu_write_list);
1777 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001778 }
Eric Anholt673a3942008-07-30 12:06:12 -07001779}
1780
Chris Wilson312817a2010-11-22 11:50:11 +00001781static void i915_gem_reset_fences(struct drm_device *dev)
1782{
1783 struct drm_i915_private *dev_priv = dev->dev_private;
1784 int i;
1785
1786 for (i = 0; i < 16; i++) {
1787 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001788 struct drm_i915_gem_object *obj = reg->obj;
1789
1790 if (!obj)
1791 continue;
1792
1793 if (obj->tiling_mode)
1794 i915_gem_release_mmap(obj);
1795
Chris Wilsond9e86c02010-11-10 16:40:20 +00001796 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1797 reg->obj->fenced_gpu_access = false;
1798 reg->obj->last_fenced_seqno = 0;
1799 reg->obj->last_fenced_ring = NULL;
1800 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001801 }
1802}
1803
Chris Wilson069efc12010-09-30 16:53:18 +01001804void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001805{
Chris Wilsondfaae392010-09-22 10:31:52 +01001806 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001807 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001808 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001809
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001810 for (i = 0; i < I915_NUM_RINGS; i++)
1811 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001812
1813 /* Remove anything from the flushing lists. The GPU cache is likely
1814 * to be lost on reset along with the data, so simply move the
1815 * lost bo to the inactive list.
1816 */
1817 while (!list_empty(&dev_priv->mm.flushing_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001818 obj= list_first_entry(&dev_priv->mm.flushing_list,
1819 struct drm_i915_gem_object,
1820 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001821
Chris Wilson05394f32010-11-08 19:18:58 +00001822 obj->base.write_domain = 0;
1823 list_del_init(&obj->gpu_write_list);
1824 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001825 }
Chris Wilson9375e442010-09-19 12:21:28 +01001826
Chris Wilsondfaae392010-09-22 10:31:52 +01001827 /* Move everything out of the GPU domains to ensure we do any
1828 * necessary invalidation upon reuse.
1829 */
Chris Wilson05394f32010-11-08 19:18:58 +00001830 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001831 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001832 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001833 {
Chris Wilson05394f32010-11-08 19:18:58 +00001834 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001835 }
Chris Wilson069efc12010-09-30 16:53:18 +01001836
1837 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001838 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001839}
1840
1841/**
1842 * This function clears the request list as sequence numbers are passed.
1843 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001844static void
1845i915_gem_retire_requests_ring(struct drm_device *dev,
1846 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001847{
1848 drm_i915_private_t *dev_priv = dev->dev_private;
1849 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001850 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001851
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001852 if (!ring->status_page.page_addr ||
1853 list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001854 return;
1855
Chris Wilson23bc5982010-09-29 16:10:57 +01001856 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001857
Chris Wilson78501ea2010-10-27 12:18:21 +01001858 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001859
1860 for (i = 0; i < I915_NUM_RINGS; i++)
1861 if (seqno >= ring->sync_seqno[i])
1862 ring->sync_seqno[i] = 0;
1863
Zou Nan hai852835f2010-05-21 09:08:56 +08001864 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001865 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001866
Zou Nan hai852835f2010-05-21 09:08:56 +08001867 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001868 struct drm_i915_gem_request,
1869 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001870
Chris Wilsondfaae392010-09-22 10:31:52 +01001871 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001872 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001873
1874 trace_i915_gem_request_retire(dev, request->seqno);
1875
1876 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001877 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001878 kfree(request);
1879 }
1880
1881 /* Move any buffers on the active list that are no longer referenced
1882 * by the ringbuffer to the flushing/inactive lists as appropriate.
1883 */
1884 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001885 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001886
Chris Wilson05394f32010-11-08 19:18:58 +00001887 obj= list_first_entry(&ring->active_list,
1888 struct drm_i915_gem_object,
1889 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001890
Chris Wilson05394f32010-11-08 19:18:58 +00001891 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001892 break;
1893
Chris Wilson05394f32010-11-08 19:18:58 +00001894 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001895 i915_gem_object_move_to_flushing(obj);
1896 else
1897 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001898 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001899
1900 if (unlikely (dev_priv->trace_irq_seqno &&
1901 i915_seqno_passed(dev_priv->trace_irq_seqno, seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001902 ring->irq_put(ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001903 dev_priv->trace_irq_seqno = 0;
1904 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001905
1906 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001907}
1908
1909void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001910i915_gem_retire_requests(struct drm_device *dev)
1911{
1912 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001913 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001914
Chris Wilsonbe726152010-07-23 23:18:50 +01001915 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001916 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001917
1918 /* We must be careful that during unbind() we do not
1919 * accidentally infinitely recurse into retire requests.
1920 * Currently:
1921 * retire -> free -> unbind -> wait -> retire_ring
1922 */
Chris Wilson05394f32010-11-08 19:18:58 +00001923 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001924 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001925 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001926 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001927 }
1928
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001929 for (i = 0; i < I915_NUM_RINGS; i++)
1930 i915_gem_retire_requests_ring(dev, &dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001931}
1932
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001933static void
Eric Anholt673a3942008-07-30 12:06:12 -07001934i915_gem_retire_work_handler(struct work_struct *work)
1935{
1936 drm_i915_private_t *dev_priv;
1937 struct drm_device *dev;
1938
1939 dev_priv = container_of(work, drm_i915_private_t,
1940 mm.retire_work.work);
1941 dev = dev_priv->dev;
1942
Chris Wilson891b48c2010-09-29 12:26:37 +01001943 /* Come back later if the device is busy... */
1944 if (!mutex_trylock(&dev->struct_mutex)) {
1945 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1946 return;
1947 }
1948
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001949 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001950
Keith Packard6dbe2772008-10-14 21:41:13 -07001951 if (!dev_priv->mm.suspended &&
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001952 (!list_empty(&dev_priv->ring[RCS].request_list) ||
1953 !list_empty(&dev_priv->ring[VCS].request_list) ||
1954 !list_empty(&dev_priv->ring[BCS].request_list)))
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001955 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07001956 mutex_unlock(&dev->struct_mutex);
1957}
1958
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001959int
Zou Nan hai852835f2010-05-21 09:08:56 +08001960i915_do_wait_request(struct drm_device *dev, uint32_t seqno,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001961 bool interruptible, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001962{
1963 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001964 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001965 int ret = 0;
1966
1967 BUG_ON(seqno == 0);
1968
Ben Gamariba1234d2009-09-14 17:48:47 -04001969 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001970 return -EAGAIN;
Ben Gamariffed1d02009-09-14 17:48:41 -04001971
Chris Wilson5d97eb62010-11-10 20:40:02 +00001972 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001973 struct drm_i915_gem_request *request;
1974
1975 request = kzalloc(sizeof(*request), GFP_KERNEL);
1976 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001977 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001978
1979 ret = i915_add_request(dev, NULL, request, ring);
1980 if (ret) {
1981 kfree(request);
1982 return ret;
1983 }
1984
1985 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001986 }
1987
Chris Wilson78501ea2010-10-27 12:18:21 +01001988 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07001989 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001990 ier = I915_READ(DEIER) | I915_READ(GTIER);
1991 else
1992 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001993 if (!ier) {
1994 DRM_ERROR("something (likely vbetool) disabled "
1995 "interrupts, re-enabling\n");
1996 i915_driver_irq_preinstall(dev);
1997 i915_driver_irq_postinstall(dev);
1998 }
1999
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002000 trace_i915_gem_request_wait_begin(dev, seqno);
2001
Chris Wilsonb2223492010-10-27 15:27:33 +01002002 ring->waiting_seqno = seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002003 ring->irq_get(ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002004 if (interruptible)
Zou Nan hai852835f2010-05-21 09:08:56 +08002005 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002006 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002007 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002008 else
Zou Nan hai852835f2010-05-21 09:08:56 +08002009 wait_event(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002010 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002011 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002012
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002013 ring->irq_put(ring);
Chris Wilsonb2223492010-10-27 15:27:33 +01002014 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002015
2016 trace_i915_gem_request_wait_end(dev, 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 */
2031 if (ret == 0)
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002032 i915_gem_retire_requests_ring(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002033
2034 return ret;
2035}
2036
Daniel Vetter48764bf2009-09-15 22:57:32 +02002037/**
2038 * Waits for a sequence number to be signaled, and cleans up the
2039 * request and object lists appropriately for that event.
2040 */
2041static int
Zou Nan hai852835f2010-05-21 09:08:56 +08002042i915_wait_request(struct drm_device *dev, uint32_t seqno,
Chris Wilsona56ba562010-09-28 10:07:56 +01002043 struct intel_ring_buffer *ring)
Daniel Vetter48764bf2009-09-15 22:57:32 +02002044{
Zou Nan hai852835f2010-05-21 09:08:56 +08002045 return i915_do_wait_request(dev, seqno, 1, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002046}
2047
Eric Anholt673a3942008-07-30 12:06:12 -07002048/**
2049 * Ensures that all rendering to the object has completed and the object is
2050 * safe to unbind from the GTT or access from the CPU.
2051 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00002052int
Chris Wilson05394f32010-11-08 19:18:58 +00002053i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002054 bool interruptible)
Eric Anholt673a3942008-07-30 12:06:12 -07002055{
Chris Wilson05394f32010-11-08 19:18:58 +00002056 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002057 int ret;
2058
Eric Anholte47c68e2008-11-14 13:35:19 -08002059 /* This function only exists to support waiting for existing rendering,
2060 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002061 */
Chris Wilson05394f32010-11-08 19:18:58 +00002062 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002063
2064 /* If there is rendering queued on the buffer being evicted, wait for
2065 * it.
2066 */
Chris Wilson05394f32010-11-08 19:18:58 +00002067 if (obj->active) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002068 ret = i915_do_wait_request(dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002069 obj->last_rendering_seqno,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002070 interruptible,
Chris Wilson05394f32010-11-08 19:18:58 +00002071 obj->ring);
Chris Wilson2cf34d72010-09-14 13:03:28 +01002072 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002073 return ret;
2074 }
2075
2076 return 0;
2077}
2078
2079/**
2080 * Unbinds an object from the GTT aperture.
2081 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002082int
Chris Wilson05394f32010-11-08 19:18:58 +00002083i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002084{
Eric Anholt673a3942008-07-30 12:06:12 -07002085 int ret = 0;
2086
Chris Wilson05394f32010-11-08 19:18:58 +00002087 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002088 return 0;
2089
Chris Wilson05394f32010-11-08 19:18:58 +00002090 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002091 DRM_ERROR("Attempting to unbind pinned buffer\n");
2092 return -EINVAL;
2093 }
2094
Eric Anholt5323fd02009-09-09 11:50:45 -07002095 /* blow away mappings if mapped through GTT */
2096 i915_gem_release_mmap(obj);
2097
Eric Anholt673a3942008-07-30 12:06:12 -07002098 /* Move the object to the CPU domain to ensure that
2099 * any possible CPU writes while it's not in the GTT
2100 * are flushed when we go to remap it. This will
2101 * also ensure that all pending GPU writes are finished
2102 * before we unbind.
2103 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002104 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
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 Wilson812ed4922010-09-30 15:08:57 +01002111 if (ret) {
2112 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002113 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002114 }
Eric Anholt673a3942008-07-30 12:06:12 -07002115
Daniel Vetter96b47b62009-12-15 17:50:00 +01002116 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002117 ret = i915_gem_object_put_fence(obj);
2118 if (ret == -ERESTARTSYS)
2119 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002120
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002121 i915_gem_gtt_unbind_object(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002122 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002123
Chris Wilson6299f992010-11-24 12:23:44 +00002124 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002125 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002126 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002127 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002128
Chris Wilson05394f32010-11-08 19:18:58 +00002129 drm_mm_put_block(obj->gtt_space);
2130 obj->gtt_space = NULL;
2131 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002132
Chris Wilson05394f32010-11-08 19:18:58 +00002133 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002134 i915_gem_object_truncate(obj);
2135
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002136 trace_i915_gem_object_unbind(obj);
2137
Chris Wilson8dc17752010-07-23 23:18:51 +01002138 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002139}
2140
Chris Wilson54cf91d2010-11-25 18:00:26 +00002141void
2142i915_gem_flush_ring(struct drm_device *dev,
2143 struct intel_ring_buffer *ring,
2144 uint32_t invalidate_domains,
2145 uint32_t flush_domains)
2146{
2147 ring->flush(ring, invalidate_domains, flush_domains);
2148 i915_gem_process_flushing_list(dev, flush_domains, ring);
2149}
2150
Chris Wilsona56ba562010-09-28 10:07:56 +01002151static int i915_ring_idle(struct drm_device *dev,
2152 struct intel_ring_buffer *ring)
2153{
Chris Wilson395b70b2010-10-28 21:28:46 +01002154 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002155 return 0;
2156
Chris Wilson05394f32010-11-08 19:18:58 +00002157 i915_gem_flush_ring(dev, ring,
Chris Wilsona56ba562010-09-28 10:07:56 +01002158 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
2159 return i915_wait_request(dev,
2160 i915_gem_next_request_seqno(dev, ring),
2161 ring);
2162}
2163
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002164int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002165i915_gpu_idle(struct drm_device *dev)
2166{
2167 drm_i915_private_t *dev_priv = dev->dev_private;
2168 bool lists_empty;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002169 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002170
Zou Nan haid1b851f2010-05-21 09:08:57 +08002171 lists_empty = (list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson395b70b2010-10-28 21:28:46 +01002172 list_empty(&dev_priv->mm.active_list));
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002173 if (lists_empty)
2174 return 0;
2175
2176 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002177 for (i = 0; i < I915_NUM_RINGS; i++) {
2178 ret = i915_ring_idle(dev, &dev_priv->ring[i]);
2179 if (ret)
2180 return ret;
2181 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002182
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002183 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002184}
2185
Daniel Vetterc6642782010-11-12 13:46:18 +00002186static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2187 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002188{
Chris Wilson05394f32010-11-08 19:18:58 +00002189 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002190 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002191 u32 size = obj->gtt_space->size;
2192 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002193 uint64_t val;
2194
Chris Wilson05394f32010-11-08 19:18:58 +00002195 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002196 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002197 val |= obj->gtt_offset & 0xfffff000;
2198 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002199 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2200
Chris Wilson05394f32010-11-08 19:18:58 +00002201 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002202 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2203 val |= I965_FENCE_REG_VALID;
2204
Daniel Vetterc6642782010-11-12 13:46:18 +00002205 if (pipelined) {
2206 int ret = intel_ring_begin(pipelined, 6);
2207 if (ret)
2208 return ret;
2209
2210 intel_ring_emit(pipelined, MI_NOOP);
2211 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2212 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2213 intel_ring_emit(pipelined, (u32)val);
2214 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2215 intel_ring_emit(pipelined, (u32)(val >> 32));
2216 intel_ring_advance(pipelined);
2217 } else
2218 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2219
2220 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002221}
2222
Daniel Vetterc6642782010-11-12 13:46:18 +00002223static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2224 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002225{
Chris Wilson05394f32010-11-08 19:18:58 +00002226 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002227 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002228 u32 size = obj->gtt_space->size;
2229 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002230 uint64_t val;
2231
Chris Wilson05394f32010-11-08 19:18:58 +00002232 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002233 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002234 val |= obj->gtt_offset & 0xfffff000;
2235 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2236 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002237 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2238 val |= I965_FENCE_REG_VALID;
2239
Daniel Vetterc6642782010-11-12 13:46:18 +00002240 if (pipelined) {
2241 int ret = intel_ring_begin(pipelined, 6);
2242 if (ret)
2243 return ret;
2244
2245 intel_ring_emit(pipelined, MI_NOOP);
2246 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2247 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2248 intel_ring_emit(pipelined, (u32)val);
2249 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2250 intel_ring_emit(pipelined, (u32)(val >> 32));
2251 intel_ring_advance(pipelined);
2252 } else
2253 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2254
2255 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002256}
2257
Daniel Vetterc6642782010-11-12 13:46:18 +00002258static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2259 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002260{
Chris Wilson05394f32010-11-08 19:18:58 +00002261 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002262 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002263 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002264 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002265 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002266
Daniel Vetterc6642782010-11-12 13:46:18 +00002267 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2268 (size & -size) != size ||
2269 (obj->gtt_offset & (size - 1)),
2270 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2271 obj->gtt_offset, obj->map_and_fenceable, size))
2272 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002273
Daniel Vetterc6642782010-11-12 13:46:18 +00002274 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002275 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002276 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002277 tile_width = 512;
2278
2279 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002280 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002281 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002282
Chris Wilson05394f32010-11-08 19:18:58 +00002283 val = obj->gtt_offset;
2284 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002285 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002286 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002287 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2288 val |= I830_FENCE_REG_VALID;
2289
Chris Wilson05394f32010-11-08 19:18:58 +00002290 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002291 if (fence_reg < 8)
2292 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002293 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002294 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002295
2296 if (pipelined) {
2297 int ret = intel_ring_begin(pipelined, 4);
2298 if (ret)
2299 return ret;
2300
2301 intel_ring_emit(pipelined, MI_NOOP);
2302 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2303 intel_ring_emit(pipelined, fence_reg);
2304 intel_ring_emit(pipelined, val);
2305 intel_ring_advance(pipelined);
2306 } else
2307 I915_WRITE(fence_reg, val);
2308
2309 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002310}
2311
Daniel Vetterc6642782010-11-12 13:46:18 +00002312static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2313 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002314{
Chris Wilson05394f32010-11-08 19:18:58 +00002315 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002316 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002317 u32 size = obj->gtt_space->size;
2318 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002319 uint32_t val;
2320 uint32_t pitch_val;
2321
Daniel Vetterc6642782010-11-12 13:46:18 +00002322 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2323 (size & -size) != size ||
2324 (obj->gtt_offset & (size - 1)),
2325 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2326 obj->gtt_offset, size))
2327 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002328
Chris Wilson05394f32010-11-08 19:18:58 +00002329 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002330 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002331
Chris Wilson05394f32010-11-08 19:18:58 +00002332 val = obj->gtt_offset;
2333 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002334 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002335 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002336 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2337 val |= I830_FENCE_REG_VALID;
2338
Daniel Vetterc6642782010-11-12 13:46:18 +00002339 if (pipelined) {
2340 int ret = intel_ring_begin(pipelined, 4);
2341 if (ret)
2342 return ret;
2343
2344 intel_ring_emit(pipelined, MI_NOOP);
2345 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2346 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2347 intel_ring_emit(pipelined, val);
2348 intel_ring_advance(pipelined);
2349 } else
2350 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2351
2352 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002353}
2354
Chris Wilsond9e86c02010-11-10 16:40:20 +00002355static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2356{
2357 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2358}
2359
2360static int
2361i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
2362 struct intel_ring_buffer *pipelined,
2363 bool interruptible)
2364{
2365 int ret;
2366
2367 if (obj->fenced_gpu_access) {
2368 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
2369 i915_gem_flush_ring(obj->base.dev,
2370 obj->last_fenced_ring,
2371 0, obj->base.write_domain);
2372
2373 obj->fenced_gpu_access = false;
2374 }
2375
2376 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2377 if (!ring_passed_seqno(obj->last_fenced_ring,
2378 obj->last_fenced_seqno)) {
2379 ret = i915_do_wait_request(obj->base.dev,
2380 obj->last_fenced_seqno,
2381 interruptible,
2382 obj->last_fenced_ring);
2383 if (ret)
2384 return ret;
2385 }
2386
2387 obj->last_fenced_seqno = 0;
2388 obj->last_fenced_ring = NULL;
2389 }
2390
2391 return 0;
2392}
2393
2394int
2395i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2396{
2397 int ret;
2398
2399 if (obj->tiling_mode)
2400 i915_gem_release_mmap(obj);
2401
2402 ret = i915_gem_object_flush_fence(obj, NULL, true);
2403 if (ret)
2404 return ret;
2405
2406 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2407 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2408 i915_gem_clear_fence_reg(obj->base.dev,
2409 &dev_priv->fence_regs[obj->fence_reg]);
2410
2411 obj->fence_reg = I915_FENCE_REG_NONE;
2412 }
2413
2414 return 0;
2415}
2416
2417static struct drm_i915_fence_reg *
2418i915_find_fence_reg(struct drm_device *dev,
2419 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002420{
Daniel Vetterae3db242010-02-19 11:51:58 +01002421 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002422 struct drm_i915_fence_reg *reg, *first, *avail;
2423 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002424
2425 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002426 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002427 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2428 reg = &dev_priv->fence_regs[i];
2429 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002430 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002431
Chris Wilson05394f32010-11-08 19:18:58 +00002432 if (!reg->obj->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002433 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002434 }
2435
Chris Wilsond9e86c02010-11-10 16:40:20 +00002436 if (avail == NULL)
2437 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002438
2439 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002440 avail = first = NULL;
2441 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
2442 if (reg->obj->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002443 continue;
2444
Chris Wilsond9e86c02010-11-10 16:40:20 +00002445 if (first == NULL)
2446 first = reg;
2447
2448 if (!pipelined ||
2449 !reg->obj->last_fenced_ring ||
2450 reg->obj->last_fenced_ring == pipelined) {
2451 avail = reg;
2452 break;
2453 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002454 }
2455
Chris Wilsond9e86c02010-11-10 16:40:20 +00002456 if (avail == NULL)
2457 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002458
Chris Wilsona00b10c2010-09-24 21:15:47 +01002459 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002460}
2461
Jesse Barnesde151cf2008-11-12 10:03:55 -08002462/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002463 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002464 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002465 * @pipelined: ring on which to queue the change, or NULL for CPU access
2466 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002467 *
2468 * When mapping objects through the GTT, userspace wants to be able to write
2469 * to them without having to worry about swizzling if the object is tiled.
2470 *
2471 * This function walks the fence regs looking for a free one for @obj,
2472 * stealing one if it can't find any.
2473 *
2474 * It then sets up the reg based on the object's properties: address, pitch
2475 * and tiling format.
2476 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002477int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002478i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
2479 struct intel_ring_buffer *pipelined,
2480 bool interruptible)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002481{
Chris Wilson05394f32010-11-08 19:18:58 +00002482 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002483 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002484 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002485 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002486
Chris Wilson6bda10d2010-12-05 21:04:18 +00002487 /* XXX disable pipelining. There are bugs. Shocking. */
2488 pipelined = NULL;
2489
Chris Wilsond9e86c02010-11-10 16:40:20 +00002490 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002491 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2492 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002493 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002494
2495 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2496 pipelined = NULL;
2497
2498 if (!pipelined) {
2499 if (reg->setup_seqno) {
2500 if (!ring_passed_seqno(obj->last_fenced_ring,
2501 reg->setup_seqno)) {
2502 ret = i915_do_wait_request(obj->base.dev,
2503 reg->setup_seqno,
2504 interruptible,
2505 obj->last_fenced_ring);
2506 if (ret)
2507 return ret;
2508 }
2509
2510 reg->setup_seqno = 0;
2511 }
2512 } else if (obj->last_fenced_ring &&
2513 obj->last_fenced_ring != pipelined) {
2514 ret = i915_gem_object_flush_fence(obj,
2515 pipelined,
2516 interruptible);
2517 if (ret)
2518 return ret;
2519 } else if (obj->tiling_changed) {
2520 if (obj->fenced_gpu_access) {
2521 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
2522 i915_gem_flush_ring(obj->base.dev, obj->ring,
2523 0, obj->base.write_domain);
2524
2525 obj->fenced_gpu_access = false;
2526 }
2527 }
2528
2529 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2530 pipelined = NULL;
2531 BUG_ON(!pipelined && reg->setup_seqno);
2532
2533 if (obj->tiling_changed) {
2534 if (pipelined) {
2535 reg->setup_seqno =
2536 i915_gem_next_request_seqno(dev, pipelined);
2537 obj->last_fenced_seqno = reg->setup_seqno;
2538 obj->last_fenced_ring = pipelined;
2539 }
2540 goto update;
2541 }
2542
Eric Anholta09ba7f2009-08-29 12:49:51 -07002543 return 0;
2544 }
2545
Chris Wilsond9e86c02010-11-10 16:40:20 +00002546 reg = i915_find_fence_reg(dev, pipelined);
2547 if (reg == NULL)
2548 return -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002549
Chris Wilsond9e86c02010-11-10 16:40:20 +00002550 ret = i915_gem_object_flush_fence(obj, pipelined, interruptible);
2551 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002552 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002553
Chris Wilsond9e86c02010-11-10 16:40:20 +00002554 if (reg->obj) {
2555 struct drm_i915_gem_object *old = reg->obj;
2556
2557 drm_gem_object_reference(&old->base);
2558
2559 if (old->tiling_mode)
2560 i915_gem_release_mmap(old);
2561
Chris Wilsond9e86c02010-11-10 16:40:20 +00002562 ret = i915_gem_object_flush_fence(old,
Chris Wilson6bda10d2010-12-05 21:04:18 +00002563 pipelined,
Chris Wilsond9e86c02010-11-10 16:40:20 +00002564 interruptible);
2565 if (ret) {
2566 drm_gem_object_unreference(&old->base);
2567 return ret;
2568 }
2569
2570 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2571 pipelined = NULL;
2572
2573 old->fence_reg = I915_FENCE_REG_NONE;
2574 old->last_fenced_ring = pipelined;
2575 old->last_fenced_seqno =
2576 pipelined ? i915_gem_next_request_seqno(dev, pipelined) : 0;
2577
2578 drm_gem_object_unreference(&old->base);
2579 } else if (obj->last_fenced_seqno == 0)
2580 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002581
Jesse Barnesde151cf2008-11-12 10:03:55 -08002582 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002583 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2584 obj->fence_reg = reg - dev_priv->fence_regs;
2585 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002586
Chris Wilsond9e86c02010-11-10 16:40:20 +00002587 reg->setup_seqno =
2588 pipelined ? i915_gem_next_request_seqno(dev, pipelined) : 0;
2589 obj->last_fenced_seqno = reg->setup_seqno;
2590
2591update:
2592 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002593 switch (INTEL_INFO(dev)->gen) {
2594 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002595 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002596 break;
2597 case 5:
2598 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002599 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002600 break;
2601 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002602 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002603 break;
2604 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002605 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002606 break;
2607 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002608
Daniel Vetterc6642782010-11-12 13:46:18 +00002609 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002610}
2611
2612/**
2613 * i915_gem_clear_fence_reg - clear out fence register info
2614 * @obj: object to clear
2615 *
2616 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002617 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002618 */
2619static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002620i915_gem_clear_fence_reg(struct drm_device *dev,
2621 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002622{
Jesse Barnes79e53942008-11-07 14:24:08 -08002623 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002624 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002625
Chris Wilsone259bef2010-09-17 00:32:02 +01002626 switch (INTEL_INFO(dev)->gen) {
2627 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002628 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002629 break;
2630 case 5:
2631 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002632 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002633 break;
2634 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002635 if (fence_reg >= 8)
2636 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002637 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002638 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002639 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002640
2641 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002642 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002643 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002644
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002645 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002646 reg->obj = NULL;
2647 reg->setup_seqno = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002648}
2649
2650/**
Eric Anholt673a3942008-07-30 12:06:12 -07002651 * Finds free space in the GTT aperture and binds the object there.
2652 */
2653static int
Chris Wilson05394f32010-11-08 19:18:58 +00002654i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002655 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002656 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002657{
Chris Wilson05394f32010-11-08 19:18:58 +00002658 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002659 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002660 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002661 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002662 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002663 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002664 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002665
Chris Wilson05394f32010-11-08 19:18:58 +00002666 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002667 DRM_ERROR("Attempting to bind a purgeable object\n");
2668 return -EINVAL;
2669 }
2670
Chris Wilson05394f32010-11-08 19:18:58 +00002671 fence_size = i915_gem_get_gtt_size(obj);
2672 fence_alignment = i915_gem_get_gtt_alignment(obj);
2673 unfenced_alignment = i915_gem_get_unfenced_gtt_alignment(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002674
Eric Anholt673a3942008-07-30 12:06:12 -07002675 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002676 alignment = map_and_fenceable ? fence_alignment :
2677 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002678 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002679 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2680 return -EINVAL;
2681 }
2682
Chris Wilson05394f32010-11-08 19:18:58 +00002683 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002684
Chris Wilson654fc602010-05-27 13:18:21 +01002685 /* If the object is bigger than the entire aperture, reject it early
2686 * before evicting everything in a vain attempt to find space.
2687 */
Chris Wilson05394f32010-11-08 19:18:58 +00002688 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002689 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002690 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2691 return -E2BIG;
2692 }
2693
Eric Anholt673a3942008-07-30 12:06:12 -07002694 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002695 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002696 free_space =
2697 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002698 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002699 dev_priv->mm.gtt_mappable_end,
2700 0);
2701 else
2702 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002703 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002704
2705 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002706 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002707 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002708 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002709 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002710 dev_priv->mm.gtt_mappable_end,
2711 0);
2712 else
Chris Wilson05394f32010-11-08 19:18:58 +00002713 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002714 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002715 }
Chris Wilson05394f32010-11-08 19:18:58 +00002716 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002717 /* If the gtt is empty and we're still having trouble
2718 * fitting our object in, we're out of memory.
2719 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002720 ret = i915_gem_evict_something(dev, size, alignment,
2721 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002722 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002723 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002724
Eric Anholt673a3942008-07-30 12:06:12 -07002725 goto search_free;
2726 }
2727
Chris Wilsone5281cc2010-10-28 13:45:36 +01002728 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002729 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002730 drm_mm_put_block(obj->gtt_space);
2731 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002732
2733 if (ret == -ENOMEM) {
2734 /* first try to clear up some space from the GTT */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002735 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002736 alignment,
2737 map_and_fenceable);
Chris Wilson07f73f62009-09-14 16:50:30 +01002738 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002739 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002740 if (gfpmask) {
2741 gfpmask = 0;
2742 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002743 }
2744
2745 return ret;
2746 }
2747
2748 goto search_free;
2749 }
2750
Eric Anholt673a3942008-07-30 12:06:12 -07002751 return ret;
2752 }
2753
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002754 ret = i915_gem_gtt_bind_object(obj);
2755 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002756 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002757 drm_mm_put_block(obj->gtt_space);
2758 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002759
Chris Wilsona00b10c2010-09-24 21:15:47 +01002760 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002761 alignment, map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002762 if (ret)
Chris Wilson07f73f62009-09-14 16:50:30 +01002763 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002764
2765 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002766 }
Eric Anholt673a3942008-07-30 12:06:12 -07002767
Chris Wilson6299f992010-11-24 12:23:44 +00002768 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002769 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002770
Eric Anholt673a3942008-07-30 12:06:12 -07002771 /* Assert that the object is not currently in any GPU domain. As it
2772 * wasn't in the GTT, there shouldn't be any way it could have been in
2773 * a GPU cache
2774 */
Chris Wilson05394f32010-11-08 19:18:58 +00002775 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2776 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002777
Chris Wilson6299f992010-11-24 12:23:44 +00002778 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002779
Daniel Vetter75e9e912010-11-04 17:11:09 +01002780 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002781 obj->gtt_space->size == fence_size &&
2782 (obj->gtt_space->start & (fence_alignment -1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002783
Daniel Vetter75e9e912010-11-04 17:11:09 +01002784 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002785 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002786
Chris Wilson05394f32010-11-08 19:18:58 +00002787 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002788
Chris Wilson6299f992010-11-24 12:23:44 +00002789 trace_i915_gem_object_bind(obj, obj->gtt_offset, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002790 return 0;
2791}
2792
2793void
Chris Wilson05394f32010-11-08 19:18:58 +00002794i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002795{
Eric Anholt673a3942008-07-30 12:06:12 -07002796 /* If we don't have a page list set up, then we're not pinned
2797 * to GPU, and we can ignore the cache flush because it'll happen
2798 * again at bind time.
2799 */
Chris Wilson05394f32010-11-08 19:18:58 +00002800 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002801 return;
2802
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002803 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002804
Chris Wilson05394f32010-11-08 19:18:58 +00002805 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002806}
2807
Eric Anholte47c68e2008-11-14 13:35:19 -08002808/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson3619df02010-11-28 15:37:17 +00002809static void
2810i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002811{
Chris Wilson05394f32010-11-08 19:18:58 +00002812 struct drm_device *dev = obj->base.dev;
Eric Anholte47c68e2008-11-14 13:35:19 -08002813
Chris Wilson05394f32010-11-08 19:18:58 +00002814 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson3619df02010-11-28 15:37:17 +00002815 return;
Eric Anholte47c68e2008-11-14 13:35:19 -08002816
2817 /* Queue the GPU write cache flushing we need. */
Chris Wilson05394f32010-11-08 19:18:58 +00002818 i915_gem_flush_ring(dev, obj->ring, 0, obj->base.write_domain);
2819 BUG_ON(obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002820}
2821
2822/** Flushes the GTT write domain for the object if it's dirty. */
2823static void
Chris Wilson05394f32010-11-08 19:18:58 +00002824i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002825{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002826 uint32_t old_write_domain;
2827
Chris Wilson05394f32010-11-08 19:18:58 +00002828 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002829 return;
2830
2831 /* No actual flushing is required for the GTT write domain. Writes
2832 * to it immediately go to main memory as far as we know, so there's
2833 * no chipset flush. It also doesn't land in render cache.
2834 */
Chris Wilson4a684a42010-10-28 14:44:08 +01002835 i915_gem_release_mmap(obj);
2836
Chris Wilson05394f32010-11-08 19:18:58 +00002837 old_write_domain = obj->base.write_domain;
2838 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002839
2840 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002841 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002842 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002843}
2844
2845/** Flushes the CPU write domain for the object if it's dirty. */
2846static void
Chris Wilson05394f32010-11-08 19:18:58 +00002847i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002848{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002849 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002850
Chris Wilson05394f32010-11-08 19:18:58 +00002851 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002852 return;
2853
2854 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002855 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002856 old_write_domain = obj->base.write_domain;
2857 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002858
2859 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002860 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002861 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002862}
2863
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002864/**
2865 * Moves a single object to the GTT read, and possibly write domain.
2866 *
2867 * This function returns when the move is complete, including waiting on
2868 * flushes to occur.
2869 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002870int
Chris Wilson20217462010-11-23 15:26:33 +00002871i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002872{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002873 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002874 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002875
Eric Anholt02354392008-11-26 13:58:13 -08002876 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002877 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002878 return -EINVAL;
2879
Chris Wilson3619df02010-11-28 15:37:17 +00002880 i915_gem_object_flush_gpu_write_domain(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002881 if (obj->pending_gpu_write || write) {
2882 ret = i915_gem_object_wait_rendering(obj, true);
2883 if (ret)
2884 return ret;
2885 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002886
Chris Wilson72133422010-09-13 23:56:38 +01002887 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002888
Chris Wilson05394f32010-11-08 19:18:58 +00002889 old_write_domain = obj->base.write_domain;
2890 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002891
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002892 /* It should now be out of any other write domains, and we can update
2893 * the domain values for our changes.
2894 */
Chris Wilson05394f32010-11-08 19:18:58 +00002895 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2896 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002897 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002898 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2899 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2900 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002901 }
2902
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002903 trace_i915_gem_object_change_domain(obj,
2904 old_read_domains,
2905 old_write_domain);
2906
Eric Anholte47c68e2008-11-14 13:35:19 -08002907 return 0;
2908}
2909
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002910/*
2911 * Prepare buffer for display plane. Use uninterruptible for possible flush
2912 * wait, as in modesetting process we're not supposed to be interrupted.
2913 */
2914int
Chris Wilson05394f32010-11-08 19:18:58 +00002915i915_gem_object_set_to_display_plane(struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002916 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002917{
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002918 uint32_t old_read_domains;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002919 int ret;
2920
2921 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002922 if (obj->gtt_space == NULL)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002923 return -EINVAL;
2924
Chris Wilson3619df02010-11-28 15:37:17 +00002925 i915_gem_object_flush_gpu_write_domain(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002926
Chris Wilsonced270f2010-09-26 22:47:46 +01002927 /* Currently, we are always called from an non-interruptible context. */
2928 if (!pipelined) {
2929 ret = i915_gem_object_wait_rendering(obj, false);
2930 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002931 return ret;
2932 }
2933
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002934 i915_gem_object_flush_cpu_write_domain(obj);
2935
Chris Wilson05394f32010-11-08 19:18:58 +00002936 old_read_domains = obj->base.read_domains;
2937 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002938
2939 trace_i915_gem_object_change_domain(obj,
2940 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00002941 obj->base.write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002942
2943 return 0;
2944}
2945
Chris Wilson85345512010-11-13 09:49:11 +00002946int
2947i915_gem_object_flush_gpu(struct drm_i915_gem_object *obj,
2948 bool interruptible)
2949{
2950 if (!obj->active)
2951 return 0;
2952
2953 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
Chris Wilson05394f32010-11-08 19:18:58 +00002954 i915_gem_flush_ring(obj->base.dev, obj->ring,
Chris Wilson85345512010-11-13 09:49:11 +00002955 0, obj->base.write_domain);
2956
Chris Wilson05394f32010-11-08 19:18:58 +00002957 return i915_gem_object_wait_rendering(obj, interruptible);
Chris Wilson85345512010-11-13 09:49:11 +00002958}
2959
Eric Anholte47c68e2008-11-14 13:35:19 -08002960/**
2961 * Moves a single object to the CPU read, and possibly write domain.
2962 *
2963 * This function returns when the move is complete, including waiting on
2964 * flushes to occur.
2965 */
2966static int
Chris Wilson919926a2010-11-12 13:42:53 +00002967i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002968{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002969 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002970 int ret;
2971
Chris Wilson3619df02010-11-28 15:37:17 +00002972 i915_gem_object_flush_gpu_write_domain(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01002973 ret = i915_gem_object_wait_rendering(obj, true);
2974 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08002975 return ret;
2976
2977 i915_gem_object_flush_gtt_write_domain(obj);
2978
2979 /* If we have a partially-valid cache of the object in the CPU,
2980 * finish invalidating it and free the per-page flags.
2981 */
2982 i915_gem_object_set_to_full_cpu_read_domain(obj);
2983
Chris Wilson05394f32010-11-08 19:18:58 +00002984 old_write_domain = obj->base.write_domain;
2985 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002986
Eric Anholte47c68e2008-11-14 13:35:19 -08002987 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00002988 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002989 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002990
Chris Wilson05394f32010-11-08 19:18:58 +00002991 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002992 }
2993
2994 /* It should now be out of any other write domains, and we can update
2995 * the domain values for our changes.
2996 */
Chris Wilson05394f32010-11-08 19:18:58 +00002997 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08002998
2999 /* If we're writing through the CPU, then the GPU read domains will
3000 * need to be invalidated at next use.
3001 */
3002 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003003 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3004 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003005 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003006
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003007 trace_i915_gem_object_change_domain(obj,
3008 old_read_domains,
3009 old_write_domain);
3010
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003011 return 0;
3012}
3013
Eric Anholt673a3942008-07-30 12:06:12 -07003014/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003015 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003016 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003017 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3018 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3019 */
3020static void
Chris Wilson05394f32010-11-08 19:18:58 +00003021i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003022{
Chris Wilson05394f32010-11-08 19:18:58 +00003023 if (!obj->page_cpu_valid)
Eric Anholte47c68e2008-11-14 13:35:19 -08003024 return;
3025
3026 /* If we're partially in the CPU read domain, finish moving it in.
3027 */
Chris Wilson05394f32010-11-08 19:18:58 +00003028 if (obj->base.read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003029 int i;
3030
Chris Wilson05394f32010-11-08 19:18:58 +00003031 for (i = 0; i <= (obj->base.size - 1) / PAGE_SIZE; i++) {
3032 if (obj->page_cpu_valid[i])
Eric Anholte47c68e2008-11-14 13:35:19 -08003033 continue;
Chris Wilson05394f32010-11-08 19:18:58 +00003034 drm_clflush_pages(obj->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003035 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003036 }
3037
3038 /* Free the page_cpu_valid mappings which are now stale, whether
3039 * or not we've got I915_GEM_DOMAIN_CPU.
3040 */
Chris Wilson05394f32010-11-08 19:18:58 +00003041 kfree(obj->page_cpu_valid);
3042 obj->page_cpu_valid = NULL;
Eric Anholte47c68e2008-11-14 13:35:19 -08003043}
3044
3045/**
3046 * Set the CPU read domain on a range of the object.
3047 *
3048 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3049 * not entirely valid. The page_cpu_valid member of the object flags which
3050 * pages have been flushed, and will be respected by
3051 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3052 * of the whole object.
3053 *
3054 * This function returns when the move is complete, including waiting on
3055 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003056 */
3057static int
Chris Wilson05394f32010-11-08 19:18:58 +00003058i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -08003059 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003060{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003061 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003062 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003063
Chris Wilson05394f32010-11-08 19:18:58 +00003064 if (offset == 0 && size == obj->base.size)
Eric Anholte47c68e2008-11-14 13:35:19 -08003065 return i915_gem_object_set_to_cpu_domain(obj, 0);
3066
Chris Wilson3619df02010-11-28 15:37:17 +00003067 i915_gem_object_flush_gpu_write_domain(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003068 ret = i915_gem_object_wait_rendering(obj, true);
3069 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003070 return ret;
Daniel Vetterde18a292010-11-27 22:30:41 +01003071
Eric Anholte47c68e2008-11-14 13:35:19 -08003072 i915_gem_object_flush_gtt_write_domain(obj);
3073
3074 /* If we're already fully in the CPU read domain, we're done. */
Chris Wilson05394f32010-11-08 19:18:58 +00003075 if (obj->page_cpu_valid == NULL &&
3076 (obj->base.read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003077 return 0;
3078
Eric Anholte47c68e2008-11-14 13:35:19 -08003079 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3080 * newly adding I915_GEM_DOMAIN_CPU
3081 */
Chris Wilson05394f32010-11-08 19:18:58 +00003082 if (obj->page_cpu_valid == NULL) {
3083 obj->page_cpu_valid = kzalloc(obj->base.size / PAGE_SIZE,
3084 GFP_KERNEL);
3085 if (obj->page_cpu_valid == NULL)
Eric Anholte47c68e2008-11-14 13:35:19 -08003086 return -ENOMEM;
Chris Wilson05394f32010-11-08 19:18:58 +00003087 } else if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
3088 memset(obj->page_cpu_valid, 0, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003089
3090 /* Flush the cache on any pages that are still invalid from the CPU's
3091 * perspective.
3092 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003093 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3094 i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003095 if (obj->page_cpu_valid[i])
Eric Anholt673a3942008-07-30 12:06:12 -07003096 continue;
3097
Chris Wilson05394f32010-11-08 19:18:58 +00003098 drm_clflush_pages(obj->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003099
Chris Wilson05394f32010-11-08 19:18:58 +00003100 obj->page_cpu_valid[i] = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003101 }
3102
Eric Anholte47c68e2008-11-14 13:35:19 -08003103 /* It should now be out of any other write domains, and we can update
3104 * the domain values for our changes.
3105 */
Chris Wilson05394f32010-11-08 19:18:58 +00003106 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003107
Chris Wilson05394f32010-11-08 19:18:58 +00003108 old_read_domains = obj->base.read_domains;
3109 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003110
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003111 trace_i915_gem_object_change_domain(obj,
3112 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003113 obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003114
Eric Anholt673a3942008-07-30 12:06:12 -07003115 return 0;
3116}
3117
Eric Anholt673a3942008-07-30 12:06:12 -07003118/* Throttle our rendering by waiting until the ring has completed our requests
3119 * emitted over 20 msec ago.
3120 *
Eric Anholtb9624422009-06-03 07:27:35 +00003121 * Note that if we were to use the current jiffies each time around the loop,
3122 * we wouldn't escape the function with any frames outstanding if the time to
3123 * render a frame was over 20ms.
3124 *
Eric Anholt673a3942008-07-30 12:06:12 -07003125 * This should get us reasonable parallelism between CPU and GPU but also
3126 * relatively low latency when blocking on a particular request to finish.
3127 */
3128static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003129i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003130{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003131 struct drm_i915_private *dev_priv = dev->dev_private;
3132 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003133 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003134 struct drm_i915_gem_request *request;
3135 struct intel_ring_buffer *ring = NULL;
3136 u32 seqno = 0;
3137 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003138
Chris Wilson1c255952010-09-26 11:03:27 +01003139 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003140 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003141 if (time_after_eq(request->emitted_jiffies, recent_enough))
3142 break;
3143
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003144 ring = request->ring;
3145 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003146 }
Chris Wilson1c255952010-09-26 11:03:27 +01003147 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003148
3149 if (seqno == 0)
3150 return 0;
3151
3152 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003153 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003154 /* And wait for the seqno passing without holding any locks and
3155 * causing extra latency for others. This is safe as the irq
3156 * generation is designed to be run atomically and so is
3157 * lockless.
3158 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003159 ring->irq_get(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003160 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01003161 i915_seqno_passed(ring->get_seqno(ring), seqno)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003162 || atomic_read(&dev_priv->mm.wedged));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003163 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003164
3165 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3166 ret = -EIO;
3167 }
3168
3169 if (ret == 0)
3170 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003171
Eric Anholt673a3942008-07-30 12:06:12 -07003172 return ret;
3173}
3174
Eric Anholt673a3942008-07-30 12:06:12 -07003175int
Chris Wilson05394f32010-11-08 19:18:58 +00003176i915_gem_object_pin(struct drm_i915_gem_object *obj,
3177 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003178 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003179{
Chris Wilson05394f32010-11-08 19:18:58 +00003180 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003181 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003182 int ret;
3183
Chris Wilson05394f32010-11-08 19:18:58 +00003184 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003185 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003186
Chris Wilson05394f32010-11-08 19:18:58 +00003187 if (obj->gtt_space != NULL) {
3188 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3189 (map_and_fenceable && !obj->map_and_fenceable)) {
3190 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003191 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003192 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3193 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003194 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003195 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003196 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003197 ret = i915_gem_object_unbind(obj);
3198 if (ret)
3199 return ret;
3200 }
3201 }
3202
Chris Wilson05394f32010-11-08 19:18:58 +00003203 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003204 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003205 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003206 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003207 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003208 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003209
Chris Wilson05394f32010-11-08 19:18:58 +00003210 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003211 if (!obj->active)
3212 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003213 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003214 }
Chris Wilson6299f992010-11-24 12:23:44 +00003215 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003216
Chris Wilson23bc5982010-09-29 16:10:57 +01003217 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003218 return 0;
3219}
3220
3221void
Chris Wilson05394f32010-11-08 19:18:58 +00003222i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003223{
Chris Wilson05394f32010-11-08 19:18:58 +00003224 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003225 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003226
Chris Wilson23bc5982010-09-29 16:10:57 +01003227 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003228 BUG_ON(obj->pin_count == 0);
3229 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003230
Chris Wilson05394f32010-11-08 19:18:58 +00003231 if (--obj->pin_count == 0) {
3232 if (!obj->active)
3233 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003234 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003235 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003236 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003237 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003238}
3239
3240int
3241i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003242 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003243{
3244 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003245 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003246 int ret;
3247
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003248 ret = i915_mutex_lock_interruptible(dev);
3249 if (ret)
3250 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003251
Chris Wilson05394f32010-11-08 19:18:58 +00003252 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07003253 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003254 ret = -ENOENT;
3255 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003256 }
Eric Anholt673a3942008-07-30 12:06:12 -07003257
Chris Wilson05394f32010-11-08 19:18:58 +00003258 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003259 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003260 ret = -EINVAL;
3261 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003262 }
3263
Chris Wilson05394f32010-11-08 19:18:58 +00003264 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003265 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3266 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003267 ret = -EINVAL;
3268 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003269 }
3270
Chris Wilson05394f32010-11-08 19:18:58 +00003271 obj->user_pin_count++;
3272 obj->pin_filp = file;
3273 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003274 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003275 if (ret)
3276 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003277 }
3278
3279 /* XXX - flush the CPU caches for pinned objects
3280 * as the X server doesn't manage domains yet
3281 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003282 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003283 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003284out:
Chris Wilson05394f32010-11-08 19:18:58 +00003285 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003286unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003287 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003288 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003289}
3290
3291int
3292i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003293 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003294{
3295 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003296 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003297 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003298
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003299 ret = i915_mutex_lock_interruptible(dev);
3300 if (ret)
3301 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003302
Chris Wilson05394f32010-11-08 19:18:58 +00003303 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07003304 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003305 ret = -ENOENT;
3306 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003307 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003308
Chris Wilson05394f32010-11-08 19:18:58 +00003309 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003310 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3311 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003312 ret = -EINVAL;
3313 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003314 }
Chris Wilson05394f32010-11-08 19:18:58 +00003315 obj->user_pin_count--;
3316 if (obj->user_pin_count == 0) {
3317 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003318 i915_gem_object_unpin(obj);
3319 }
Eric Anholt673a3942008-07-30 12:06:12 -07003320
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003321out:
Chris Wilson05394f32010-11-08 19:18:58 +00003322 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003323unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003324 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003325 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003326}
3327
3328int
3329i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003330 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003331{
3332 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003333 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003334 int ret;
3335
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003336 ret = i915_mutex_lock_interruptible(dev);
3337 if (ret)
3338 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003339
Chris Wilson05394f32010-11-08 19:18:58 +00003340 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07003341 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003342 ret = -ENOENT;
3343 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003344 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003345
Chris Wilson0be555b2010-08-04 15:36:30 +01003346 /* Count all active objects as busy, even if they are currently not used
3347 * by the gpu. Users of this interface expect objects to eventually
3348 * become non-busy without any further actions, therefore emit any
3349 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003350 */
Chris Wilson05394f32010-11-08 19:18:58 +00003351 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003352 if (args->busy) {
3353 /* Unconditionally flush objects, even when the gpu still uses this
3354 * object. Userspace calling this function indicates that it wants to
3355 * use this buffer rather sooner than later, so issuing the required
3356 * flush earlier is beneficial.
3357 */
Chris Wilson05394f32010-11-08 19:18:58 +00003358 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
3359 i915_gem_flush_ring(dev, obj->ring,
3360 0, obj->base.write_domain);
Chris Wilson0be555b2010-08-04 15:36:30 +01003361
3362 /* Update the active list for the hardware's current position.
3363 * Otherwise this only updates on a delayed timer or when irqs
3364 * are actually unmasked, and our working set ends up being
3365 * larger than required.
3366 */
Chris Wilson05394f32010-11-08 19:18:58 +00003367 i915_gem_retire_requests_ring(dev, obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003368
Chris Wilson05394f32010-11-08 19:18:58 +00003369 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003370 }
Eric Anholt673a3942008-07-30 12:06:12 -07003371
Chris Wilson05394f32010-11-08 19:18:58 +00003372 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003373unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003374 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003375 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003376}
3377
3378int
3379i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3380 struct drm_file *file_priv)
3381{
3382 return i915_gem_ring_throttle(dev, file_priv);
3383}
3384
Chris Wilson3ef94da2009-09-14 16:50:29 +01003385int
3386i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3387 struct drm_file *file_priv)
3388{
3389 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003390 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003391 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003392
3393 switch (args->madv) {
3394 case I915_MADV_DONTNEED:
3395 case I915_MADV_WILLNEED:
3396 break;
3397 default:
3398 return -EINVAL;
3399 }
3400
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003401 ret = i915_mutex_lock_interruptible(dev);
3402 if (ret)
3403 return ret;
3404
Chris Wilson05394f32010-11-08 19:18:58 +00003405 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilson3ef94da2009-09-14 16:50:29 +01003406 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003407 ret = -ENOENT;
3408 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003409 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003410
Chris Wilson05394f32010-11-08 19:18:58 +00003411 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003412 ret = -EINVAL;
3413 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003414 }
3415
Chris Wilson05394f32010-11-08 19:18:58 +00003416 if (obj->madv != __I915_MADV_PURGED)
3417 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003418
Chris Wilson2d7ef392009-09-20 23:13:10 +01003419 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003420 if (i915_gem_object_is_purgeable(obj) &&
3421 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003422 i915_gem_object_truncate(obj);
3423
Chris Wilson05394f32010-11-08 19:18:58 +00003424 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003425
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003426out:
Chris Wilson05394f32010-11-08 19:18:58 +00003427 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003428unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003429 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003430 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003431}
3432
Chris Wilson05394f32010-11-08 19:18:58 +00003433struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3434 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003435{
Chris Wilson73aa8082010-09-30 11:46:12 +01003436 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003437 struct drm_i915_gem_object *obj;
3438
3439 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3440 if (obj == NULL)
3441 return NULL;
3442
3443 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3444 kfree(obj);
3445 return NULL;
3446 }
3447
Chris Wilson73aa8082010-09-30 11:46:12 +01003448 i915_gem_info_add_obj(dev_priv, size);
3449
Daniel Vetterc397b902010-04-09 19:05:07 +00003450 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3451 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3452
3453 obj->agp_type = AGP_USER_MEMORY;
Daniel Vetter62b8b212010-04-09 19:05:08 +00003454 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003455 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003456 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003457 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003458 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003459 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003460 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003461 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003462 /* Avoid an unnecessary call to unbind on the first bind. */
3463 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003464
Chris Wilson05394f32010-11-08 19:18:58 +00003465 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003466}
3467
Eric Anholt673a3942008-07-30 12:06:12 -07003468int i915_gem_init_object(struct drm_gem_object *obj)
3469{
Daniel Vetterc397b902010-04-09 19:05:07 +00003470 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003471
Eric Anholt673a3942008-07-30 12:06:12 -07003472 return 0;
3473}
3474
Chris Wilson05394f32010-11-08 19:18:58 +00003475static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003476{
Chris Wilson05394f32010-11-08 19:18:58 +00003477 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003478 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003479 int ret;
3480
3481 ret = i915_gem_object_unbind(obj);
3482 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003483 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003484 &dev_priv->mm.deferred_free_list);
3485 return;
3486 }
3487
Chris Wilson05394f32010-11-08 19:18:58 +00003488 if (obj->base.map_list.map)
Chris Wilsonbe726152010-07-23 23:18:50 +01003489 i915_gem_free_mmap_offset(obj);
3490
Chris Wilson05394f32010-11-08 19:18:58 +00003491 drm_gem_object_release(&obj->base);
3492 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003493
Chris Wilson05394f32010-11-08 19:18:58 +00003494 kfree(obj->page_cpu_valid);
3495 kfree(obj->bit_17);
3496 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003497}
3498
Chris Wilson05394f32010-11-08 19:18:58 +00003499void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003500{
Chris Wilson05394f32010-11-08 19:18:58 +00003501 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3502 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003503
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003504 trace_i915_gem_object_destroy(obj);
3505
Chris Wilson05394f32010-11-08 19:18:58 +00003506 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003507 i915_gem_object_unpin(obj);
3508
Chris Wilson05394f32010-11-08 19:18:58 +00003509 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003510 i915_gem_detach_phys_object(dev, obj);
3511
Chris Wilsonbe726152010-07-23 23:18:50 +01003512 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003513}
3514
Jesse Barnes5669fca2009-02-17 15:13:31 -08003515int
Eric Anholt673a3942008-07-30 12:06:12 -07003516i915_gem_idle(struct drm_device *dev)
3517{
3518 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003519 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003520
Keith Packard6dbe2772008-10-14 21:41:13 -07003521 mutex_lock(&dev->struct_mutex);
3522
Chris Wilson87acb0a2010-10-19 10:13:00 +01003523 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003524 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003525 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003526 }
Eric Anholt673a3942008-07-30 12:06:12 -07003527
Chris Wilson29105cc2010-01-07 10:39:13 +00003528 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003529 if (ret) {
3530 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003531 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003532 }
Eric Anholt673a3942008-07-30 12:06:12 -07003533
Chris Wilson29105cc2010-01-07 10:39:13 +00003534 /* Under UMS, be paranoid and evict. */
3535 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003536 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003537 if (ret) {
3538 mutex_unlock(&dev->struct_mutex);
3539 return ret;
3540 }
3541 }
3542
Chris Wilson312817a2010-11-22 11:50:11 +00003543 i915_gem_reset_fences(dev);
3544
Chris Wilson29105cc2010-01-07 10:39:13 +00003545 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3546 * We need to replace this with a semaphore, or something.
3547 * And not confound mm.suspended!
3548 */
3549 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003550 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003551
3552 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003553 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003554
Keith Packard6dbe2772008-10-14 21:41:13 -07003555 mutex_unlock(&dev->struct_mutex);
3556
Chris Wilson29105cc2010-01-07 10:39:13 +00003557 /* Cancel the retire work handler, which should be idle now. */
3558 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3559
Eric Anholt673a3942008-07-30 12:06:12 -07003560 return 0;
3561}
3562
Eric Anholt673a3942008-07-30 12:06:12 -07003563int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003564i915_gem_init_ringbuffer(struct drm_device *dev)
3565{
3566 drm_i915_private_t *dev_priv = dev->dev_private;
3567 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003568
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003569 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003570 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003571 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003572
3573 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003574 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003575 if (ret)
3576 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003577 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003578
Chris Wilson549f7362010-10-19 11:19:32 +01003579 if (HAS_BLT(dev)) {
3580 ret = intel_init_blt_ring_buffer(dev);
3581 if (ret)
3582 goto cleanup_bsd_ring;
3583 }
3584
Chris Wilson6f392d52010-08-07 11:01:22 +01003585 dev_priv->next_seqno = 1;
3586
Chris Wilson68f95ba2010-05-27 13:18:22 +01003587 return 0;
3588
Chris Wilson549f7362010-10-19 11:19:32 +01003589cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003590 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003591cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003592 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003593 return ret;
3594}
3595
3596void
3597i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3598{
3599 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003600 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003601
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003602 for (i = 0; i < I915_NUM_RINGS; i++)
3603 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003604}
3605
3606int
Eric Anholt673a3942008-07-30 12:06:12 -07003607i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3608 struct drm_file *file_priv)
3609{
3610 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003611 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003612
Jesse Barnes79e53942008-11-07 14:24:08 -08003613 if (drm_core_check_feature(dev, DRIVER_MODESET))
3614 return 0;
3615
Ben Gamariba1234d2009-09-14 17:48:47 -04003616 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003617 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003618 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003619 }
3620
Eric Anholt673a3942008-07-30 12:06:12 -07003621 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003622 dev_priv->mm.suspended = 0;
3623
3624 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003625 if (ret != 0) {
3626 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003627 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003628 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003629
Chris Wilson69dc4982010-10-19 10:36:51 +01003630 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003631 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3632 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003633 for (i = 0; i < I915_NUM_RINGS; i++) {
3634 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3635 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3636 }
Eric Anholt673a3942008-07-30 12:06:12 -07003637 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003638
Chris Wilson5f353082010-06-07 14:03:03 +01003639 ret = drm_irq_install(dev);
3640 if (ret)
3641 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003642
Eric Anholt673a3942008-07-30 12:06:12 -07003643 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003644
3645cleanup_ringbuffer:
3646 mutex_lock(&dev->struct_mutex);
3647 i915_gem_cleanup_ringbuffer(dev);
3648 dev_priv->mm.suspended = 1;
3649 mutex_unlock(&dev->struct_mutex);
3650
3651 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003652}
3653
3654int
3655i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3656 struct drm_file *file_priv)
3657{
Jesse Barnes79e53942008-11-07 14:24:08 -08003658 if (drm_core_check_feature(dev, DRIVER_MODESET))
3659 return 0;
3660
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003661 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003662 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003663}
3664
3665void
3666i915_gem_lastclose(struct drm_device *dev)
3667{
3668 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003669
Eric Anholte806b492009-01-22 09:56:58 -08003670 if (drm_core_check_feature(dev, DRIVER_MODESET))
3671 return;
3672
Keith Packard6dbe2772008-10-14 21:41:13 -07003673 ret = i915_gem_idle(dev);
3674 if (ret)
3675 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003676}
3677
Chris Wilson64193402010-10-24 12:38:05 +01003678static void
3679init_ring_lists(struct intel_ring_buffer *ring)
3680{
3681 INIT_LIST_HEAD(&ring->active_list);
3682 INIT_LIST_HEAD(&ring->request_list);
3683 INIT_LIST_HEAD(&ring->gpu_write_list);
3684}
3685
Eric Anholt673a3942008-07-30 12:06:12 -07003686void
3687i915_gem_load(struct drm_device *dev)
3688{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003689 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003690 drm_i915_private_t *dev_priv = dev->dev_private;
3691
Chris Wilson69dc4982010-10-19 10:36:51 +01003692 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003693 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3694 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003695 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003696 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003697 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003698 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003699 for (i = 0; i < I915_NUM_RINGS; i++)
3700 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003701 for (i = 0; i < 16; i++)
3702 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003703 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3704 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003705 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003706
Dave Airlie94400122010-07-20 13:15:31 +10003707 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3708 if (IS_GEN3(dev)) {
3709 u32 tmp = I915_READ(MI_ARB_STATE);
3710 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3711 /* arb state is a masked write, so set bit + bit in mask */
3712 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3713 I915_WRITE(MI_ARB_STATE, tmp);
3714 }
3715 }
3716
Jesse Barnesde151cf2008-11-12 10:03:55 -08003717 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003718 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3719 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003720
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003721 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003722 dev_priv->num_fence_regs = 16;
3723 else
3724 dev_priv->num_fence_regs = 8;
3725
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003726 /* Initialize fence registers to zero */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003727 switch (INTEL_INFO(dev)->gen) {
3728 case 6:
3729 for (i = 0; i < 16; i++)
3730 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (i * 8), 0);
3731 break;
3732 case 5:
3733 case 4:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003734 for (i = 0; i < 16; i++)
3735 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003736 break;
3737 case 3:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003738 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
3739 for (i = 0; i < 8; i++)
3740 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003741 case 2:
3742 for (i = 0; i < 8; i++)
3743 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
3744 break;
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003745 }
Eric Anholt673a3942008-07-30 12:06:12 -07003746 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003747 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003748
3749 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3750 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3751 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003752}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003753
3754/*
3755 * Create a physically contiguous memory object for this object
3756 * e.g. for cursor + overlay regs
3757 */
Chris Wilson995b6762010-08-20 13:23:26 +01003758static int i915_gem_init_phys_object(struct drm_device *dev,
3759 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003760{
3761 drm_i915_private_t *dev_priv = dev->dev_private;
3762 struct drm_i915_gem_phys_object *phys_obj;
3763 int ret;
3764
3765 if (dev_priv->mm.phys_objs[id - 1] || !size)
3766 return 0;
3767
Eric Anholt9a298b22009-03-24 12:23:04 -07003768 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003769 if (!phys_obj)
3770 return -ENOMEM;
3771
3772 phys_obj->id = id;
3773
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003774 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003775 if (!phys_obj->handle) {
3776 ret = -ENOMEM;
3777 goto kfree_obj;
3778 }
3779#ifdef CONFIG_X86
3780 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3781#endif
3782
3783 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3784
3785 return 0;
3786kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003787 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003788 return ret;
3789}
3790
Chris Wilson995b6762010-08-20 13:23:26 +01003791static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003792{
3793 drm_i915_private_t *dev_priv = dev->dev_private;
3794 struct drm_i915_gem_phys_object *phys_obj;
3795
3796 if (!dev_priv->mm.phys_objs[id - 1])
3797 return;
3798
3799 phys_obj = dev_priv->mm.phys_objs[id - 1];
3800 if (phys_obj->cur_obj) {
3801 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3802 }
3803
3804#ifdef CONFIG_X86
3805 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3806#endif
3807 drm_pci_free(dev, phys_obj->handle);
3808 kfree(phys_obj);
3809 dev_priv->mm.phys_objs[id - 1] = NULL;
3810}
3811
3812void i915_gem_free_all_phys_object(struct drm_device *dev)
3813{
3814 int i;
3815
Dave Airlie260883c2009-01-22 17:58:49 +10003816 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003817 i915_gem_free_phys_object(dev, i);
3818}
3819
3820void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003821 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003822{
Chris Wilson05394f32010-11-08 19:18:58 +00003823 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003824 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003825 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003826 int page_count;
3827
Chris Wilson05394f32010-11-08 19:18:58 +00003828 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003829 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003830 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003831
Chris Wilson05394f32010-11-08 19:18:58 +00003832 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003833 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003834 struct page *page = read_cache_page_gfp(mapping, i,
3835 GFP_HIGHUSER | __GFP_RECLAIMABLE);
3836 if (!IS_ERR(page)) {
3837 char *dst = kmap_atomic(page);
3838 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3839 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003840
Chris Wilsone5281cc2010-10-28 13:45:36 +01003841 drm_clflush_pages(&page, 1);
3842
3843 set_page_dirty(page);
3844 mark_page_accessed(page);
3845 page_cache_release(page);
3846 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003847 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003848 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003849
Chris Wilson05394f32010-11-08 19:18:58 +00003850 obj->phys_obj->cur_obj = NULL;
3851 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003852}
3853
3854int
3855i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003856 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003857 int id,
3858 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003859{
Chris Wilson05394f32010-11-08 19:18:58 +00003860 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003861 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003862 int ret = 0;
3863 int page_count;
3864 int i;
3865
3866 if (id > I915_MAX_PHYS_OBJECT)
3867 return -EINVAL;
3868
Chris Wilson05394f32010-11-08 19:18:58 +00003869 if (obj->phys_obj) {
3870 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003871 return 0;
3872 i915_gem_detach_phys_object(dev, obj);
3873 }
3874
Dave Airlie71acb5e2008-12-30 20:31:46 +10003875 /* create a new object */
3876 if (!dev_priv->mm.phys_objs[id - 1]) {
3877 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003878 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003879 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003880 DRM_ERROR("failed to init phys object %d size: %zu\n",
3881 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003882 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003883 }
3884 }
3885
3886 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003887 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3888 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003889
Chris Wilson05394f32010-11-08 19:18:58 +00003890 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003891
3892 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003893 struct page *page;
3894 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003895
Chris Wilsone5281cc2010-10-28 13:45:36 +01003896 page = read_cache_page_gfp(mapping, i,
3897 GFP_HIGHUSER | __GFP_RECLAIMABLE);
3898 if (IS_ERR(page))
3899 return PTR_ERR(page);
3900
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003901 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003902 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003903 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003904 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003905
3906 mark_page_accessed(page);
3907 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003908 }
3909
3910 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003911}
3912
3913static int
Chris Wilson05394f32010-11-08 19:18:58 +00003914i915_gem_phys_pwrite(struct drm_device *dev,
3915 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003916 struct drm_i915_gem_pwrite *args,
3917 struct drm_file *file_priv)
3918{
Chris Wilson05394f32010-11-08 19:18:58 +00003919 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003920 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003921
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003922 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3923 unsigned long unwritten;
3924
3925 /* The physical object once assigned is fixed for the lifetime
3926 * of the obj, so we can safely drop the lock and continue
3927 * to access vaddr.
3928 */
3929 mutex_unlock(&dev->struct_mutex);
3930 unwritten = copy_from_user(vaddr, user_data, args->size);
3931 mutex_lock(&dev->struct_mutex);
3932 if (unwritten)
3933 return -EFAULT;
3934 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003935
Daniel Vetter40ce6572010-11-05 18:12:18 +01003936 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003937 return 0;
3938}
Eric Anholtb9624422009-06-03 07:27:35 +00003939
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003940void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003941{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003942 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003943
3944 /* Clean up our request list when the client is going away, so that
3945 * later retire_requests won't dereference our soon-to-be-gone
3946 * file_priv.
3947 */
Chris Wilson1c255952010-09-26 11:03:27 +01003948 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003949 while (!list_empty(&file_priv->mm.request_list)) {
3950 struct drm_i915_gem_request *request;
3951
3952 request = list_first_entry(&file_priv->mm.request_list,
3953 struct drm_i915_gem_request,
3954 client_list);
3955 list_del(&request->client_list);
3956 request->file_priv = NULL;
3957 }
Chris Wilson1c255952010-09-26 11:03:27 +01003958 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003959}
Chris Wilson31169712009-09-14 16:50:28 +01003960
Chris Wilson31169712009-09-14 16:50:28 +01003961static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003962i915_gpu_is_active(struct drm_device *dev)
3963{
3964 drm_i915_private_t *dev_priv = dev->dev_private;
3965 int lists_empty;
3966
Chris Wilson1637ef42010-04-20 17:10:35 +01003967 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003968 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003969
3970 return !lists_empty;
3971}
3972
3973static int
Chris Wilson17250b72010-10-28 12:51:39 +01003974i915_gem_inactive_shrink(struct shrinker *shrinker,
3975 int nr_to_scan,
3976 gfp_t gfp_mask)
Chris Wilson31169712009-09-14 16:50:28 +01003977{
Chris Wilson17250b72010-10-28 12:51:39 +01003978 struct drm_i915_private *dev_priv =
3979 container_of(shrinker,
3980 struct drm_i915_private,
3981 mm.inactive_shrinker);
3982 struct drm_device *dev = dev_priv->dev;
3983 struct drm_i915_gem_object *obj, *next;
3984 int cnt;
3985
3986 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01003987 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01003988
3989 /* "fast-path" to count number of available objects */
3990 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01003991 cnt = 0;
3992 list_for_each_entry(obj,
3993 &dev_priv->mm.inactive_list,
3994 mm_list)
3995 cnt++;
3996 mutex_unlock(&dev->struct_mutex);
3997 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01003998 }
3999
Chris Wilson1637ef42010-04-20 17:10:35 +01004000rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004001 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004002 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004003
Chris Wilson17250b72010-10-28 12:51:39 +01004004 list_for_each_entry_safe(obj, next,
4005 &dev_priv->mm.inactive_list,
4006 mm_list) {
4007 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004008 if (i915_gem_object_unbind(obj) == 0 &&
4009 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004010 break;
Chris Wilson31169712009-09-14 16:50:28 +01004011 }
Chris Wilson31169712009-09-14 16:50:28 +01004012 }
4013
4014 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004015 cnt = 0;
4016 list_for_each_entry_safe(obj, next,
4017 &dev_priv->mm.inactive_list,
4018 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004019 if (nr_to_scan &&
4020 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004021 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004022 else
Chris Wilson17250b72010-10-28 12:51:39 +01004023 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004024 }
4025
Chris Wilson17250b72010-10-28 12:51:39 +01004026 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004027 /*
4028 * We are desperate for pages, so as a last resort, wait
4029 * for the GPU to finish and discard whatever we can.
4030 * This has a dramatic impact to reduce the number of
4031 * OOM-killer events whilst running the GPU aggressively.
4032 */
Chris Wilson17250b72010-10-28 12:51:39 +01004033 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004034 goto rescan;
4035 }
Chris Wilson17250b72010-10-28 12:51:39 +01004036 mutex_unlock(&dev->struct_mutex);
4037 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004038}