blob: 726c2ccd674c5f934bc0ff20bcba979674af763e [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 Wilson9e0ae532010-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 Wilson9e0ae532010-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 Wilsonb13c2b92010-12-13 16:54:50 +00002003 ret = -ENODEV;
2004 if (ring->irq_get(ring)) {
2005 if (interruptible)
2006 ret = wait_event_interruptible(ring->irq_queue,
2007 i915_seqno_passed(ring->get_seqno(ring), seqno)
2008 || atomic_read(&dev_priv->mm.wedged));
2009 else
2010 wait_event(ring->irq_queue,
2011 i915_seqno_passed(ring->get_seqno(ring), seqno)
2012 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002013
Chris Wilsonb13c2b92010-12-13 16:54:50 +00002014 ring->irq_put(ring);
2015 }
Chris Wilsonb2223492010-10-27 15:27:33 +01002016 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002017
2018 trace_i915_gem_request_wait_end(dev, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002019 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002020 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002021 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002022
2023 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002024 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002025 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002026 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002027
2028 /* Directly dispatch request retiring. While we have the work queue
2029 * to handle this, the waiter on a request often wants an associated
2030 * buffer to have made it to the inactive list, and we would need
2031 * a separate wait queue to handle that.
2032 */
2033 if (ret == 0)
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002034 i915_gem_retire_requests_ring(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002035
2036 return ret;
2037}
2038
Daniel Vetter48764bf2009-09-15 22:57:32 +02002039/**
2040 * Waits for a sequence number to be signaled, and cleans up the
2041 * request and object lists appropriately for that event.
2042 */
2043static int
Zou Nan hai852835f2010-05-21 09:08:56 +08002044i915_wait_request(struct drm_device *dev, uint32_t seqno,
Chris Wilsona56ba562010-09-28 10:07:56 +01002045 struct intel_ring_buffer *ring)
Daniel Vetter48764bf2009-09-15 22:57:32 +02002046{
Zou Nan hai852835f2010-05-21 09:08:56 +08002047 return i915_do_wait_request(dev, seqno, 1, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002048}
2049
Eric Anholt673a3942008-07-30 12:06:12 -07002050/**
2051 * Ensures that all rendering to the object has completed and the object is
2052 * safe to unbind from the GTT or access from the CPU.
2053 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00002054int
Chris Wilson05394f32010-11-08 19:18:58 +00002055i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002056 bool interruptible)
Eric Anholt673a3942008-07-30 12:06:12 -07002057{
Chris Wilson05394f32010-11-08 19:18:58 +00002058 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002059 int ret;
2060
Eric Anholte47c68e2008-11-14 13:35:19 -08002061 /* This function only exists to support waiting for existing rendering,
2062 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002063 */
Chris Wilson05394f32010-11-08 19:18:58 +00002064 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002065
2066 /* If there is rendering queued on the buffer being evicted, wait for
2067 * it.
2068 */
Chris Wilson05394f32010-11-08 19:18:58 +00002069 if (obj->active) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002070 ret = i915_do_wait_request(dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002071 obj->last_rendering_seqno,
Chris Wilson2cf34d72010-09-14 13:03:28 +01002072 interruptible,
Chris Wilson05394f32010-11-08 19:18:58 +00002073 obj->ring);
Chris Wilson2cf34d72010-09-14 13:03:28 +01002074 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002075 return ret;
2076 }
2077
2078 return 0;
2079}
2080
2081/**
2082 * Unbinds an object from the GTT aperture.
2083 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002084int
Chris Wilson05394f32010-11-08 19:18:58 +00002085i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002086{
Eric Anholt673a3942008-07-30 12:06:12 -07002087 int ret = 0;
2088
Chris Wilson05394f32010-11-08 19:18:58 +00002089 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002090 return 0;
2091
Chris Wilson05394f32010-11-08 19:18:58 +00002092 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002093 DRM_ERROR("Attempting to unbind pinned buffer\n");
2094 return -EINVAL;
2095 }
2096
Eric Anholt5323fd02009-09-09 11:50:45 -07002097 /* blow away mappings if mapped through GTT */
2098 i915_gem_release_mmap(obj);
2099
Eric Anholt673a3942008-07-30 12:06:12 -07002100 /* Move the object to the CPU domain to ensure that
2101 * any possible CPU writes while it's not in the GTT
2102 * are flushed when we go to remap it. This will
2103 * also ensure that all pending GPU writes are finished
2104 * before we unbind.
2105 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002106 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilson8dc17752010-07-23 23:18:51 +01002107 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002108 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002109 /* Continue on if we fail due to EIO, the GPU is hung so we
2110 * should be safe and we need to cleanup or else we might
2111 * cause memory corruption through use-after-free.
2112 */
Chris Wilson812ed492010-09-30 15:08:57 +01002113 if (ret) {
2114 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002115 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed492010-09-30 15:08:57 +01002116 }
Eric Anholt673a3942008-07-30 12:06:12 -07002117
Daniel Vetter96b47b62009-12-15 17:50:00 +01002118 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002119 ret = i915_gem_object_put_fence(obj);
2120 if (ret == -ERESTARTSYS)
2121 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002122
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002123 i915_gem_gtt_unbind_object(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002124 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002125
Chris Wilson6299f992010-11-24 12:23:44 +00002126 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002127 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002128 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002129 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002130
Chris Wilson05394f32010-11-08 19:18:58 +00002131 drm_mm_put_block(obj->gtt_space);
2132 obj->gtt_space = NULL;
2133 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002134
Chris Wilson05394f32010-11-08 19:18:58 +00002135 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002136 i915_gem_object_truncate(obj);
2137
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002138 trace_i915_gem_object_unbind(obj);
2139
Chris Wilson8dc17752010-07-23 23:18:51 +01002140 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002141}
2142
Chris Wilson54cf91d2010-11-25 18:00:26 +00002143void
2144i915_gem_flush_ring(struct drm_device *dev,
2145 struct intel_ring_buffer *ring,
2146 uint32_t invalidate_domains,
2147 uint32_t flush_domains)
2148{
2149 ring->flush(ring, invalidate_domains, flush_domains);
2150 i915_gem_process_flushing_list(dev, flush_domains, ring);
2151}
2152
Chris Wilsona56ba562010-09-28 10:07:56 +01002153static int i915_ring_idle(struct drm_device *dev,
2154 struct intel_ring_buffer *ring)
2155{
Chris Wilson395b70b2010-10-28 21:28:46 +01002156 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002157 return 0;
2158
Chris Wilson0ac74c62010-12-06 14:36:02 +00002159 if (!list_empty(&ring->gpu_write_list))
2160 i915_gem_flush_ring(dev, ring,
2161 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilsona56ba562010-09-28 10:07:56 +01002162 return i915_wait_request(dev,
2163 i915_gem_next_request_seqno(dev, ring),
2164 ring);
2165}
2166
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002167int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002168i915_gpu_idle(struct drm_device *dev)
2169{
2170 drm_i915_private_t *dev_priv = dev->dev_private;
2171 bool lists_empty;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002172 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002173
Zou Nan haid1b851f2010-05-21 09:08:57 +08002174 lists_empty = (list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson395b70b2010-10-28 21:28:46 +01002175 list_empty(&dev_priv->mm.active_list));
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002176 if (lists_empty)
2177 return 0;
2178
2179 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002180 for (i = 0; i < I915_NUM_RINGS; i++) {
2181 ret = i915_ring_idle(dev, &dev_priv->ring[i]);
2182 if (ret)
2183 return ret;
2184 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002185
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002186 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002187}
2188
Daniel Vetterc6642782010-11-12 13:46:18 +00002189static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2190 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002191{
Chris Wilson05394f32010-11-08 19:18:58 +00002192 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002193 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002194 u32 size = obj->gtt_space->size;
2195 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002196 uint64_t val;
2197
Chris Wilson05394f32010-11-08 19:18:58 +00002198 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002199 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002200 val |= obj->gtt_offset & 0xfffff000;
2201 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002202 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2203
Chris Wilson05394f32010-11-08 19:18:58 +00002204 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002205 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2206 val |= I965_FENCE_REG_VALID;
2207
Daniel Vetterc6642782010-11-12 13:46:18 +00002208 if (pipelined) {
2209 int ret = intel_ring_begin(pipelined, 6);
2210 if (ret)
2211 return ret;
2212
2213 intel_ring_emit(pipelined, MI_NOOP);
2214 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2215 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2216 intel_ring_emit(pipelined, (u32)val);
2217 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2218 intel_ring_emit(pipelined, (u32)(val >> 32));
2219 intel_ring_advance(pipelined);
2220 } else
2221 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2222
2223 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002224}
2225
Daniel Vetterc6642782010-11-12 13:46:18 +00002226static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2227 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002228{
Chris Wilson05394f32010-11-08 19:18:58 +00002229 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002230 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002231 u32 size = obj->gtt_space->size;
2232 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002233 uint64_t val;
2234
Chris Wilson05394f32010-11-08 19:18:58 +00002235 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002236 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002237 val |= obj->gtt_offset & 0xfffff000;
2238 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2239 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002240 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2241 val |= I965_FENCE_REG_VALID;
2242
Daniel Vetterc6642782010-11-12 13:46:18 +00002243 if (pipelined) {
2244 int ret = intel_ring_begin(pipelined, 6);
2245 if (ret)
2246 return ret;
2247
2248 intel_ring_emit(pipelined, MI_NOOP);
2249 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2250 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2251 intel_ring_emit(pipelined, (u32)val);
2252 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2253 intel_ring_emit(pipelined, (u32)(val >> 32));
2254 intel_ring_advance(pipelined);
2255 } else
2256 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2257
2258 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002259}
2260
Daniel Vetterc6642782010-11-12 13:46:18 +00002261static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2262 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002263{
Chris Wilson05394f32010-11-08 19:18:58 +00002264 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002265 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002266 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002267 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002268 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002269
Daniel Vetterc6642782010-11-12 13:46:18 +00002270 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2271 (size & -size) != size ||
2272 (obj->gtt_offset & (size - 1)),
2273 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2274 obj->gtt_offset, obj->map_and_fenceable, size))
2275 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002276
Daniel Vetterc6642782010-11-12 13:46:18 +00002277 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002278 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002279 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002280 tile_width = 512;
2281
2282 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002283 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002284 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002285
Chris Wilson05394f32010-11-08 19:18:58 +00002286 val = obj->gtt_offset;
2287 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002288 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002289 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002290 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2291 val |= I830_FENCE_REG_VALID;
2292
Chris Wilson05394f32010-11-08 19:18:58 +00002293 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002294 if (fence_reg < 8)
2295 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002296 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002297 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002298
2299 if (pipelined) {
2300 int ret = intel_ring_begin(pipelined, 4);
2301 if (ret)
2302 return ret;
2303
2304 intel_ring_emit(pipelined, MI_NOOP);
2305 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2306 intel_ring_emit(pipelined, fence_reg);
2307 intel_ring_emit(pipelined, val);
2308 intel_ring_advance(pipelined);
2309 } else
2310 I915_WRITE(fence_reg, val);
2311
2312 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002313}
2314
Daniel Vetterc6642782010-11-12 13:46:18 +00002315static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2316 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002317{
Chris Wilson05394f32010-11-08 19:18:58 +00002318 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002319 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002320 u32 size = obj->gtt_space->size;
2321 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002322 uint32_t val;
2323 uint32_t pitch_val;
2324
Daniel Vetterc6642782010-11-12 13:46:18 +00002325 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2326 (size & -size) != size ||
2327 (obj->gtt_offset & (size - 1)),
2328 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2329 obj->gtt_offset, size))
2330 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002331
Chris Wilson05394f32010-11-08 19:18:58 +00002332 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002333 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002334
Chris Wilson05394f32010-11-08 19:18:58 +00002335 val = obj->gtt_offset;
2336 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002337 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002338 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002339 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2340 val |= I830_FENCE_REG_VALID;
2341
Daniel Vetterc6642782010-11-12 13:46:18 +00002342 if (pipelined) {
2343 int ret = intel_ring_begin(pipelined, 4);
2344 if (ret)
2345 return ret;
2346
2347 intel_ring_emit(pipelined, MI_NOOP);
2348 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2349 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2350 intel_ring_emit(pipelined, val);
2351 intel_ring_advance(pipelined);
2352 } else
2353 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2354
2355 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002356}
2357
Chris Wilsond9e86c02010-11-10 16:40:20 +00002358static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2359{
2360 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2361}
2362
2363static int
2364i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
2365 struct intel_ring_buffer *pipelined,
2366 bool interruptible)
2367{
2368 int ret;
2369
2370 if (obj->fenced_gpu_access) {
2371 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
2372 i915_gem_flush_ring(obj->base.dev,
2373 obj->last_fenced_ring,
2374 0, obj->base.write_domain);
2375
2376 obj->fenced_gpu_access = false;
2377 }
2378
2379 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2380 if (!ring_passed_seqno(obj->last_fenced_ring,
2381 obj->last_fenced_seqno)) {
2382 ret = i915_do_wait_request(obj->base.dev,
2383 obj->last_fenced_seqno,
2384 interruptible,
2385 obj->last_fenced_ring);
2386 if (ret)
2387 return ret;
2388 }
2389
2390 obj->last_fenced_seqno = 0;
2391 obj->last_fenced_ring = NULL;
2392 }
2393
2394 return 0;
2395}
2396
2397int
2398i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2399{
2400 int ret;
2401
2402 if (obj->tiling_mode)
2403 i915_gem_release_mmap(obj);
2404
2405 ret = i915_gem_object_flush_fence(obj, NULL, true);
2406 if (ret)
2407 return ret;
2408
2409 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2410 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2411 i915_gem_clear_fence_reg(obj->base.dev,
2412 &dev_priv->fence_regs[obj->fence_reg]);
2413
2414 obj->fence_reg = I915_FENCE_REG_NONE;
2415 }
2416
2417 return 0;
2418}
2419
2420static struct drm_i915_fence_reg *
2421i915_find_fence_reg(struct drm_device *dev,
2422 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002423{
Daniel Vetterae3db242010-02-19 11:51:58 +01002424 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002425 struct drm_i915_fence_reg *reg, *first, *avail;
2426 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002427
2428 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002429 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002430 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2431 reg = &dev_priv->fence_regs[i];
2432 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002433 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002434
Chris Wilson05394f32010-11-08 19:18:58 +00002435 if (!reg->obj->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002436 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002437 }
2438
Chris Wilsond9e86c02010-11-10 16:40:20 +00002439 if (avail == NULL)
2440 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002441
2442 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002443 avail = first = NULL;
2444 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
2445 if (reg->obj->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002446 continue;
2447
Chris Wilsond9e86c02010-11-10 16:40:20 +00002448 if (first == NULL)
2449 first = reg;
2450
2451 if (!pipelined ||
2452 !reg->obj->last_fenced_ring ||
2453 reg->obj->last_fenced_ring == pipelined) {
2454 avail = reg;
2455 break;
2456 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002457 }
2458
Chris Wilsond9e86c02010-11-10 16:40:20 +00002459 if (avail == NULL)
2460 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002461
Chris Wilsona00b10c2010-09-24 21:15:47 +01002462 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002463}
2464
Jesse Barnesde151cf2008-11-12 10:03:55 -08002465/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002466 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002467 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002468 * @pipelined: ring on which to queue the change, or NULL for CPU access
2469 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002470 *
2471 * When mapping objects through the GTT, userspace wants to be able to write
2472 * to them without having to worry about swizzling if the object is tiled.
2473 *
2474 * This function walks the fence regs looking for a free one for @obj,
2475 * stealing one if it can't find any.
2476 *
2477 * It then sets up the reg based on the object's properties: address, pitch
2478 * and tiling format.
2479 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002480int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002481i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
2482 struct intel_ring_buffer *pipelined,
2483 bool interruptible)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002484{
Chris Wilson05394f32010-11-08 19:18:58 +00002485 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002486 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002487 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002488 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002489
Chris Wilson6bda10d2010-12-05 21:04:18 +00002490 /* XXX disable pipelining. There are bugs. Shocking. */
2491 pipelined = NULL;
2492
Chris Wilsond9e86c02010-11-10 16:40:20 +00002493 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002494 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2495 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002496 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002497
2498 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2499 pipelined = NULL;
2500
2501 if (!pipelined) {
2502 if (reg->setup_seqno) {
2503 if (!ring_passed_seqno(obj->last_fenced_ring,
2504 reg->setup_seqno)) {
2505 ret = i915_do_wait_request(obj->base.dev,
2506 reg->setup_seqno,
2507 interruptible,
2508 obj->last_fenced_ring);
2509 if (ret)
2510 return ret;
2511 }
2512
2513 reg->setup_seqno = 0;
2514 }
2515 } else if (obj->last_fenced_ring &&
2516 obj->last_fenced_ring != pipelined) {
2517 ret = i915_gem_object_flush_fence(obj,
2518 pipelined,
2519 interruptible);
2520 if (ret)
2521 return ret;
2522 } else if (obj->tiling_changed) {
2523 if (obj->fenced_gpu_access) {
2524 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
2525 i915_gem_flush_ring(obj->base.dev, obj->ring,
2526 0, obj->base.write_domain);
2527
2528 obj->fenced_gpu_access = false;
2529 }
2530 }
2531
2532 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2533 pipelined = NULL;
2534 BUG_ON(!pipelined && reg->setup_seqno);
2535
2536 if (obj->tiling_changed) {
2537 if (pipelined) {
2538 reg->setup_seqno =
2539 i915_gem_next_request_seqno(dev, pipelined);
2540 obj->last_fenced_seqno = reg->setup_seqno;
2541 obj->last_fenced_ring = pipelined;
2542 }
2543 goto update;
2544 }
2545
Eric Anholta09ba7f2009-08-29 12:49:51 -07002546 return 0;
2547 }
2548
Chris Wilsond9e86c02010-11-10 16:40:20 +00002549 reg = i915_find_fence_reg(dev, pipelined);
2550 if (reg == NULL)
2551 return -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002552
Chris Wilsond9e86c02010-11-10 16:40:20 +00002553 ret = i915_gem_object_flush_fence(obj, pipelined, interruptible);
2554 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002555 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002556
Chris Wilsond9e86c02010-11-10 16:40:20 +00002557 if (reg->obj) {
2558 struct drm_i915_gem_object *old = reg->obj;
2559
2560 drm_gem_object_reference(&old->base);
2561
2562 if (old->tiling_mode)
2563 i915_gem_release_mmap(old);
2564
Chris Wilsond9e86c02010-11-10 16:40:20 +00002565 ret = i915_gem_object_flush_fence(old,
Chris Wilson6bda10d2010-12-05 21:04:18 +00002566 pipelined,
Chris Wilsond9e86c02010-11-10 16:40:20 +00002567 interruptible);
2568 if (ret) {
2569 drm_gem_object_unreference(&old->base);
2570 return ret;
2571 }
2572
2573 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2574 pipelined = NULL;
2575
2576 old->fence_reg = I915_FENCE_REG_NONE;
2577 old->last_fenced_ring = pipelined;
2578 old->last_fenced_seqno =
2579 pipelined ? i915_gem_next_request_seqno(dev, pipelined) : 0;
2580
2581 drm_gem_object_unreference(&old->base);
2582 } else if (obj->last_fenced_seqno == 0)
2583 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002584
Jesse Barnesde151cf2008-11-12 10:03:55 -08002585 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002586 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2587 obj->fence_reg = reg - dev_priv->fence_regs;
2588 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002589
Chris Wilsond9e86c02010-11-10 16:40:20 +00002590 reg->setup_seqno =
2591 pipelined ? i915_gem_next_request_seqno(dev, pipelined) : 0;
2592 obj->last_fenced_seqno = reg->setup_seqno;
2593
2594update:
2595 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002596 switch (INTEL_INFO(dev)->gen) {
2597 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002598 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002599 break;
2600 case 5:
2601 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002602 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002603 break;
2604 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002605 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002606 break;
2607 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002608 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002609 break;
2610 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002611
Daniel Vetterc6642782010-11-12 13:46:18 +00002612 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002613}
2614
2615/**
2616 * i915_gem_clear_fence_reg - clear out fence register info
2617 * @obj: object to clear
2618 *
2619 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002620 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002621 */
2622static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002623i915_gem_clear_fence_reg(struct drm_device *dev,
2624 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002625{
Jesse Barnes79e53942008-11-07 14:24:08 -08002626 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002627 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002628
Chris Wilsone259bef2010-09-17 00:32:02 +01002629 switch (INTEL_INFO(dev)->gen) {
2630 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002631 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002632 break;
2633 case 5:
2634 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002635 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002636 break;
2637 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002638 if (fence_reg >= 8)
2639 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002640 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002641 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002642 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002643
2644 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002645 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002646 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002647
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002648 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002649 reg->obj = NULL;
2650 reg->setup_seqno = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002651}
2652
2653/**
Eric Anholt673a3942008-07-30 12:06:12 -07002654 * Finds free space in the GTT aperture and binds the object there.
2655 */
2656static int
Chris Wilson05394f32010-11-08 19:18:58 +00002657i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002658 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002659 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002660{
Chris Wilson05394f32010-11-08 19:18:58 +00002661 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002662 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002663 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002664 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002665 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002666 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002667 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002668
Chris Wilson05394f32010-11-08 19:18:58 +00002669 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002670 DRM_ERROR("Attempting to bind a purgeable object\n");
2671 return -EINVAL;
2672 }
2673
Chris Wilson05394f32010-11-08 19:18:58 +00002674 fence_size = i915_gem_get_gtt_size(obj);
2675 fence_alignment = i915_gem_get_gtt_alignment(obj);
2676 unfenced_alignment = i915_gem_get_unfenced_gtt_alignment(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002677
Eric Anholt673a3942008-07-30 12:06:12 -07002678 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002679 alignment = map_and_fenceable ? fence_alignment :
2680 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002681 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002682 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2683 return -EINVAL;
2684 }
2685
Chris Wilson05394f32010-11-08 19:18:58 +00002686 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002687
Chris Wilson654fc602010-05-27 13:18:21 +01002688 /* If the object is bigger than the entire aperture, reject it early
2689 * before evicting everything in a vain attempt to find space.
2690 */
Chris Wilson05394f32010-11-08 19:18:58 +00002691 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002692 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002693 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2694 return -E2BIG;
2695 }
2696
Eric Anholt673a3942008-07-30 12:06:12 -07002697 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002698 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002699 free_space =
2700 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002701 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002702 dev_priv->mm.gtt_mappable_end,
2703 0);
2704 else
2705 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002706 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002707
2708 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002709 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002710 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002711 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002712 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002713 dev_priv->mm.gtt_mappable_end,
2714 0);
2715 else
Chris Wilson05394f32010-11-08 19:18:58 +00002716 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002717 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002718 }
Chris Wilson05394f32010-11-08 19:18:58 +00002719 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002720 /* If the gtt is empty and we're still having trouble
2721 * fitting our object in, we're out of memory.
2722 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002723 ret = i915_gem_evict_something(dev, size, alignment,
2724 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002725 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002726 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002727
Eric Anholt673a3942008-07-30 12:06:12 -07002728 goto search_free;
2729 }
2730
Chris Wilsone5281cc2010-10-28 13:45:36 +01002731 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002732 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002733 drm_mm_put_block(obj->gtt_space);
2734 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002735
2736 if (ret == -ENOMEM) {
2737 /* first try to clear up some space from the GTT */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002738 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002739 alignment,
2740 map_and_fenceable);
Chris Wilson07f73f62009-09-14 16:50:30 +01002741 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002742 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002743 if (gfpmask) {
2744 gfpmask = 0;
2745 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002746 }
2747
2748 return ret;
2749 }
2750
2751 goto search_free;
2752 }
2753
Eric Anholt673a3942008-07-30 12:06:12 -07002754 return ret;
2755 }
2756
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002757 ret = i915_gem_gtt_bind_object(obj);
2758 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002759 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002760 drm_mm_put_block(obj->gtt_space);
2761 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002762
Chris Wilsona00b10c2010-09-24 21:15:47 +01002763 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002764 alignment, map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002765 if (ret)
Chris Wilson07f73f62009-09-14 16:50:30 +01002766 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002767
2768 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002769 }
Eric Anholt673a3942008-07-30 12:06:12 -07002770
Chris Wilson6299f992010-11-24 12:23:44 +00002771 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002772 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002773
Eric Anholt673a3942008-07-30 12:06:12 -07002774 /* Assert that the object is not currently in any GPU domain. As it
2775 * wasn't in the GTT, there shouldn't be any way it could have been in
2776 * a GPU cache
2777 */
Chris Wilson05394f32010-11-08 19:18:58 +00002778 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2779 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002780
Chris Wilson6299f992010-11-24 12:23:44 +00002781 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002782
Daniel Vetter75e9e912010-11-04 17:11:09 +01002783 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002784 obj->gtt_space->size == fence_size &&
2785 (obj->gtt_space->start & (fence_alignment -1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002786
Daniel Vetter75e9e912010-11-04 17:11:09 +01002787 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002788 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002789
Chris Wilson05394f32010-11-08 19:18:58 +00002790 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002791
Chris Wilson6299f992010-11-24 12:23:44 +00002792 trace_i915_gem_object_bind(obj, obj->gtt_offset, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002793 return 0;
2794}
2795
2796void
Chris Wilson05394f32010-11-08 19:18:58 +00002797i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002798{
Eric Anholt673a3942008-07-30 12:06:12 -07002799 /* If we don't have a page list set up, then we're not pinned
2800 * to GPU, and we can ignore the cache flush because it'll happen
2801 * again at bind time.
2802 */
Chris Wilson05394f32010-11-08 19:18:58 +00002803 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002804 return;
2805
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002806 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002807
Chris Wilson05394f32010-11-08 19:18:58 +00002808 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002809}
2810
Eric Anholte47c68e2008-11-14 13:35:19 -08002811/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson3619df02010-11-28 15:37:17 +00002812static void
2813i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002814{
Chris Wilson05394f32010-11-08 19:18:58 +00002815 struct drm_device *dev = obj->base.dev;
Eric Anholte47c68e2008-11-14 13:35:19 -08002816
Chris Wilson05394f32010-11-08 19:18:58 +00002817 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson3619df02010-11-28 15:37:17 +00002818 return;
Eric Anholte47c68e2008-11-14 13:35:19 -08002819
2820 /* Queue the GPU write cache flushing we need. */
Chris Wilson05394f32010-11-08 19:18:58 +00002821 i915_gem_flush_ring(dev, obj->ring, 0, obj->base.write_domain);
2822 BUG_ON(obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002823}
2824
2825/** Flushes the GTT write domain for the object if it's dirty. */
2826static void
Chris Wilson05394f32010-11-08 19:18:58 +00002827i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002828{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002829 uint32_t old_write_domain;
2830
Chris Wilson05394f32010-11-08 19:18:58 +00002831 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002832 return;
2833
2834 /* No actual flushing is required for the GTT write domain. Writes
2835 * to it immediately go to main memory as far as we know, so there's
2836 * no chipset flush. It also doesn't land in render cache.
2837 */
Chris Wilson4a684a42010-10-28 14:44:08 +01002838 i915_gem_release_mmap(obj);
2839
Chris Wilson05394f32010-11-08 19:18:58 +00002840 old_write_domain = obj->base.write_domain;
2841 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002842
2843 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002844 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002845 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002846}
2847
2848/** Flushes the CPU write domain for the object if it's dirty. */
2849static void
Chris Wilson05394f32010-11-08 19:18:58 +00002850i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002851{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002852 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002853
Chris Wilson05394f32010-11-08 19:18:58 +00002854 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002855 return;
2856
2857 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002858 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002859 old_write_domain = obj->base.write_domain;
2860 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002861
2862 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002863 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002864 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002865}
2866
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002867/**
2868 * Moves a single object to the GTT read, and possibly write domain.
2869 *
2870 * This function returns when the move is complete, including waiting on
2871 * flushes to occur.
2872 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002873int
Chris Wilson20217462010-11-23 15:26:33 +00002874i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002875{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002876 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002877 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002878
Eric Anholt02354392008-11-26 13:58:13 -08002879 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002880 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002881 return -EINVAL;
2882
Chris Wilson3619df02010-11-28 15:37:17 +00002883 i915_gem_object_flush_gpu_write_domain(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002884 if (obj->pending_gpu_write || write) {
2885 ret = i915_gem_object_wait_rendering(obj, true);
2886 if (ret)
2887 return ret;
2888 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002889
Chris Wilson72133422010-09-13 23:56:38 +01002890 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002891
Chris Wilson05394f32010-11-08 19:18:58 +00002892 old_write_domain = obj->base.write_domain;
2893 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002894
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002895 /* It should now be out of any other write domains, and we can update
2896 * the domain values for our changes.
2897 */
Chris Wilson05394f32010-11-08 19:18:58 +00002898 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2899 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002900 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002901 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2902 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2903 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002904 }
2905
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002906 trace_i915_gem_object_change_domain(obj,
2907 old_read_domains,
2908 old_write_domain);
2909
Eric Anholte47c68e2008-11-14 13:35:19 -08002910 return 0;
2911}
2912
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002913/*
2914 * Prepare buffer for display plane. Use uninterruptible for possible flush
2915 * wait, as in modesetting process we're not supposed to be interrupted.
2916 */
2917int
Chris Wilson05394f32010-11-08 19:18:58 +00002918i915_gem_object_set_to_display_plane(struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002919 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002920{
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002921 uint32_t old_read_domains;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002922 int ret;
2923
2924 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002925 if (obj->gtt_space == NULL)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002926 return -EINVAL;
2927
Chris Wilson3619df02010-11-28 15:37:17 +00002928 i915_gem_object_flush_gpu_write_domain(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002929
Chris Wilsonced270f2010-09-26 22:47:46 +01002930 /* Currently, we are always called from an non-interruptible context. */
Chris Wilson0be73282010-12-06 14:36:27 +00002931 if (pipelined != obj->ring) {
Chris Wilsonced270f2010-09-26 22:47:46 +01002932 ret = i915_gem_object_wait_rendering(obj, false);
2933 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002934 return ret;
2935 }
2936
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002937 i915_gem_object_flush_cpu_write_domain(obj);
2938
Chris Wilson05394f32010-11-08 19:18:58 +00002939 old_read_domains = obj->base.read_domains;
2940 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002941
2942 trace_i915_gem_object_change_domain(obj,
2943 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00002944 obj->base.write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002945
2946 return 0;
2947}
2948
Chris Wilson85345512010-11-13 09:49:11 +00002949int
2950i915_gem_object_flush_gpu(struct drm_i915_gem_object *obj,
2951 bool interruptible)
2952{
2953 if (!obj->active)
2954 return 0;
2955
2956 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS)
Chris Wilson05394f32010-11-08 19:18:58 +00002957 i915_gem_flush_ring(obj->base.dev, obj->ring,
Chris Wilson85345512010-11-13 09:49:11 +00002958 0, obj->base.write_domain);
2959
Chris Wilson05394f32010-11-08 19:18:58 +00002960 return i915_gem_object_wait_rendering(obj, interruptible);
Chris Wilson85345512010-11-13 09:49:11 +00002961}
2962
Eric Anholte47c68e2008-11-14 13:35:19 -08002963/**
2964 * Moves a single object to the CPU read, and possibly write domain.
2965 *
2966 * This function returns when the move is complete, including waiting on
2967 * flushes to occur.
2968 */
2969static int
Chris Wilson919926a2010-11-12 13:42:53 +00002970i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002971{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002972 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002973 int ret;
2974
Chris Wilson3619df02010-11-28 15:37:17 +00002975 i915_gem_object_flush_gpu_write_domain(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01002976 ret = i915_gem_object_wait_rendering(obj, true);
2977 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08002978 return ret;
2979
2980 i915_gem_object_flush_gtt_write_domain(obj);
2981
2982 /* If we have a partially-valid cache of the object in the CPU,
2983 * finish invalidating it and free the per-page flags.
2984 */
2985 i915_gem_object_set_to_full_cpu_read_domain(obj);
2986
Chris Wilson05394f32010-11-08 19:18:58 +00002987 old_write_domain = obj->base.write_domain;
2988 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002989
Eric Anholte47c68e2008-11-14 13:35:19 -08002990 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00002991 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002992 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002993
Chris Wilson05394f32010-11-08 19:18:58 +00002994 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002995 }
2996
2997 /* It should now be out of any other write domains, and we can update
2998 * the domain values for our changes.
2999 */
Chris Wilson05394f32010-11-08 19:18:58 +00003000 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003001
3002 /* If we're writing through the CPU, then the GPU read domains will
3003 * need to be invalidated at next use.
3004 */
3005 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003006 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3007 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003008 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003009
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003010 trace_i915_gem_object_change_domain(obj,
3011 old_read_domains,
3012 old_write_domain);
3013
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003014 return 0;
3015}
3016
Eric Anholt673a3942008-07-30 12:06:12 -07003017/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003018 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003019 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003020 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3021 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3022 */
3023static void
Chris Wilson05394f32010-11-08 19:18:58 +00003024i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003025{
Chris Wilson05394f32010-11-08 19:18:58 +00003026 if (!obj->page_cpu_valid)
Eric Anholte47c68e2008-11-14 13:35:19 -08003027 return;
3028
3029 /* If we're partially in the CPU read domain, finish moving it in.
3030 */
Chris Wilson05394f32010-11-08 19:18:58 +00003031 if (obj->base.read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003032 int i;
3033
Chris Wilson05394f32010-11-08 19:18:58 +00003034 for (i = 0; i <= (obj->base.size - 1) / PAGE_SIZE; i++) {
3035 if (obj->page_cpu_valid[i])
Eric Anholte47c68e2008-11-14 13:35:19 -08003036 continue;
Chris Wilson05394f32010-11-08 19:18:58 +00003037 drm_clflush_pages(obj->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003038 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003039 }
3040
3041 /* Free the page_cpu_valid mappings which are now stale, whether
3042 * or not we've got I915_GEM_DOMAIN_CPU.
3043 */
Chris Wilson05394f32010-11-08 19:18:58 +00003044 kfree(obj->page_cpu_valid);
3045 obj->page_cpu_valid = NULL;
Eric Anholte47c68e2008-11-14 13:35:19 -08003046}
3047
3048/**
3049 * Set the CPU read domain on a range of the object.
3050 *
3051 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3052 * not entirely valid. The page_cpu_valid member of the object flags which
3053 * pages have been flushed, and will be respected by
3054 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3055 * of the whole object.
3056 *
3057 * This function returns when the move is complete, including waiting on
3058 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003059 */
3060static int
Chris Wilson05394f32010-11-08 19:18:58 +00003061i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -08003062 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003063{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003064 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003065 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003066
Chris Wilson05394f32010-11-08 19:18:58 +00003067 if (offset == 0 && size == obj->base.size)
Eric Anholte47c68e2008-11-14 13:35:19 -08003068 return i915_gem_object_set_to_cpu_domain(obj, 0);
3069
Chris Wilson3619df02010-11-28 15:37:17 +00003070 i915_gem_object_flush_gpu_write_domain(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003071 ret = i915_gem_object_wait_rendering(obj, true);
3072 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003073 return ret;
Daniel Vetterde18a292010-11-27 22:30:41 +01003074
Eric Anholte47c68e2008-11-14 13:35:19 -08003075 i915_gem_object_flush_gtt_write_domain(obj);
3076
3077 /* If we're already fully in the CPU read domain, we're done. */
Chris Wilson05394f32010-11-08 19:18:58 +00003078 if (obj->page_cpu_valid == NULL &&
3079 (obj->base.read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003080 return 0;
3081
Eric Anholte47c68e2008-11-14 13:35:19 -08003082 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3083 * newly adding I915_GEM_DOMAIN_CPU
3084 */
Chris Wilson05394f32010-11-08 19:18:58 +00003085 if (obj->page_cpu_valid == NULL) {
3086 obj->page_cpu_valid = kzalloc(obj->base.size / PAGE_SIZE,
3087 GFP_KERNEL);
3088 if (obj->page_cpu_valid == NULL)
Eric Anholte47c68e2008-11-14 13:35:19 -08003089 return -ENOMEM;
Chris Wilson05394f32010-11-08 19:18:58 +00003090 } else if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
3091 memset(obj->page_cpu_valid, 0, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003092
3093 /* Flush the cache on any pages that are still invalid from the CPU's
3094 * perspective.
3095 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003096 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3097 i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003098 if (obj->page_cpu_valid[i])
Eric Anholt673a3942008-07-30 12:06:12 -07003099 continue;
3100
Chris Wilson05394f32010-11-08 19:18:58 +00003101 drm_clflush_pages(obj->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003102
Chris Wilson05394f32010-11-08 19:18:58 +00003103 obj->page_cpu_valid[i] = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003104 }
3105
Eric Anholte47c68e2008-11-14 13:35:19 -08003106 /* It should now be out of any other write domains, and we can update
3107 * the domain values for our changes.
3108 */
Chris Wilson05394f32010-11-08 19:18:58 +00003109 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003110
Chris Wilson05394f32010-11-08 19:18:58 +00003111 old_read_domains = obj->base.read_domains;
3112 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003113
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003114 trace_i915_gem_object_change_domain(obj,
3115 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003116 obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003117
Eric Anholt673a3942008-07-30 12:06:12 -07003118 return 0;
3119}
3120
Eric Anholt673a3942008-07-30 12:06:12 -07003121/* Throttle our rendering by waiting until the ring has completed our requests
3122 * emitted over 20 msec ago.
3123 *
Eric Anholtb9624422009-06-03 07:27:35 +00003124 * Note that if we were to use the current jiffies each time around the loop,
3125 * we wouldn't escape the function with any frames outstanding if the time to
3126 * render a frame was over 20ms.
3127 *
Eric Anholt673a3942008-07-30 12:06:12 -07003128 * This should get us reasonable parallelism between CPU and GPU but also
3129 * relatively low latency when blocking on a particular request to finish.
3130 */
3131static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003132i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003133{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003134 struct drm_i915_private *dev_priv = dev->dev_private;
3135 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003136 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003137 struct drm_i915_gem_request *request;
3138 struct intel_ring_buffer *ring = NULL;
3139 u32 seqno = 0;
3140 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003141
Chris Wilson1c255952010-09-26 11:03:27 +01003142 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003143 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003144 if (time_after_eq(request->emitted_jiffies, recent_enough))
3145 break;
3146
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003147 ring = request->ring;
3148 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003149 }
Chris Wilson1c255952010-09-26 11:03:27 +01003150 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003151
3152 if (seqno == 0)
3153 return 0;
3154
3155 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003156 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003157 /* And wait for the seqno passing without holding any locks and
3158 * causing extra latency for others. This is safe as the irq
3159 * generation is designed to be run atomically and so is
3160 * lockless.
3161 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003162 if (ring->irq_get(ring)) {
3163 ret = wait_event_interruptible(ring->irq_queue,
3164 i915_seqno_passed(ring->get_seqno(ring), seqno)
3165 || atomic_read(&dev_priv->mm.wedged));
3166 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003167
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003168 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3169 ret = -EIO;
3170 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003171 }
3172
3173 if (ret == 0)
3174 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003175
Eric Anholt673a3942008-07-30 12:06:12 -07003176 return ret;
3177}
3178
Eric Anholt673a3942008-07-30 12:06:12 -07003179int
Chris Wilson05394f32010-11-08 19:18:58 +00003180i915_gem_object_pin(struct drm_i915_gem_object *obj,
3181 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003182 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003183{
Chris Wilson05394f32010-11-08 19:18:58 +00003184 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003185 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003186 int ret;
3187
Chris Wilson05394f32010-11-08 19:18:58 +00003188 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003189 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003190
Chris Wilson05394f32010-11-08 19:18:58 +00003191 if (obj->gtt_space != NULL) {
3192 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3193 (map_and_fenceable && !obj->map_and_fenceable)) {
3194 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003195 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003196 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3197 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003198 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003199 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003200 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003201 ret = i915_gem_object_unbind(obj);
3202 if (ret)
3203 return ret;
3204 }
3205 }
3206
Chris Wilson05394f32010-11-08 19:18:58 +00003207 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003208 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003209 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003210 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003211 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003212 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003213
Chris Wilson05394f32010-11-08 19:18:58 +00003214 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003215 if (!obj->active)
3216 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003217 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003218 }
Chris Wilson6299f992010-11-24 12:23:44 +00003219 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003220
Chris Wilson23bc5982010-09-29 16:10:57 +01003221 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003222 return 0;
3223}
3224
3225void
Chris Wilson05394f32010-11-08 19:18:58 +00003226i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003227{
Chris Wilson05394f32010-11-08 19:18:58 +00003228 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003229 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003230
Chris Wilson23bc5982010-09-29 16:10:57 +01003231 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003232 BUG_ON(obj->pin_count == 0);
3233 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003234
Chris Wilson05394f32010-11-08 19:18:58 +00003235 if (--obj->pin_count == 0) {
3236 if (!obj->active)
3237 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003238 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003239 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003240 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003241 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003242}
3243
3244int
3245i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003246 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003247{
3248 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003249 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003250 int ret;
3251
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003252 ret = i915_mutex_lock_interruptible(dev);
3253 if (ret)
3254 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003255
Chris Wilson05394f32010-11-08 19:18:58 +00003256 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07003257 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003258 ret = -ENOENT;
3259 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003260 }
Eric Anholt673a3942008-07-30 12:06:12 -07003261
Chris Wilson05394f32010-11-08 19:18:58 +00003262 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003263 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003264 ret = -EINVAL;
3265 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003266 }
3267
Chris Wilson05394f32010-11-08 19:18:58 +00003268 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003269 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3270 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003271 ret = -EINVAL;
3272 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003273 }
3274
Chris Wilson05394f32010-11-08 19:18:58 +00003275 obj->user_pin_count++;
3276 obj->pin_filp = file;
3277 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003278 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003279 if (ret)
3280 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003281 }
3282
3283 /* XXX - flush the CPU caches for pinned objects
3284 * as the X server doesn't manage domains yet
3285 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003286 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003287 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003288out:
Chris Wilson05394f32010-11-08 19:18:58 +00003289 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003290unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003291 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003292 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003293}
3294
3295int
3296i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003297 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003298{
3299 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003300 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003301 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003302
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003303 ret = i915_mutex_lock_interruptible(dev);
3304 if (ret)
3305 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003306
Chris Wilson05394f32010-11-08 19:18:58 +00003307 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07003308 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003309 ret = -ENOENT;
3310 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003311 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003312
Chris Wilson05394f32010-11-08 19:18:58 +00003313 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003314 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3315 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003316 ret = -EINVAL;
3317 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003318 }
Chris Wilson05394f32010-11-08 19:18:58 +00003319 obj->user_pin_count--;
3320 if (obj->user_pin_count == 0) {
3321 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003322 i915_gem_object_unpin(obj);
3323 }
Eric Anholt673a3942008-07-30 12:06:12 -07003324
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003325out:
Chris Wilson05394f32010-11-08 19:18:58 +00003326 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003327unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003328 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003329 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003330}
3331
3332int
3333i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003334 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003335{
3336 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003337 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003338 int ret;
3339
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003340 ret = i915_mutex_lock_interruptible(dev);
3341 if (ret)
3342 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003343
Chris Wilson05394f32010-11-08 19:18:58 +00003344 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Eric Anholt673a3942008-07-30 12:06:12 -07003345 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003346 ret = -ENOENT;
3347 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003348 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003349
Chris Wilson0be555b2010-08-04 15:36:30 +01003350 /* Count all active objects as busy, even if they are currently not used
3351 * by the gpu. Users of this interface expect objects to eventually
3352 * become non-busy without any further actions, therefore emit any
3353 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003354 */
Chris Wilson05394f32010-11-08 19:18:58 +00003355 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003356 if (args->busy) {
3357 /* Unconditionally flush objects, even when the gpu still uses this
3358 * object. Userspace calling this function indicates that it wants to
3359 * use this buffer rather sooner than later, so issuing the required
3360 * flush earlier is beneficial.
3361 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003362 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003363 i915_gem_flush_ring(dev, obj->ring,
3364 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003365 } else if (obj->ring->outstanding_lazy_request ==
3366 obj->last_rendering_seqno) {
3367 struct drm_i915_gem_request *request;
3368
Chris Wilson7a194872010-12-07 10:38:40 +00003369 /* This ring is not being cleared by active usage,
3370 * so emit a request to do so.
3371 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003372 request = kzalloc(sizeof(*request), GFP_KERNEL);
3373 if (request)
3374 ret = i915_add_request(dev,
3375 NULL, request,
3376 obj->ring);
3377 else
Chris Wilson7a194872010-12-07 10:38:40 +00003378 ret = -ENOMEM;
3379 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003380
3381 /* Update the active list for the hardware's current position.
3382 * Otherwise this only updates on a delayed timer or when irqs
3383 * are actually unmasked, and our working set ends up being
3384 * larger than required.
3385 */
Chris Wilson05394f32010-11-08 19:18:58 +00003386 i915_gem_retire_requests_ring(dev, obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003387
Chris Wilson05394f32010-11-08 19:18:58 +00003388 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003389 }
Eric Anholt673a3942008-07-30 12:06:12 -07003390
Chris Wilson05394f32010-11-08 19:18:58 +00003391 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003392unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003393 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003394 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003395}
3396
3397int
3398i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3399 struct drm_file *file_priv)
3400{
3401 return i915_gem_ring_throttle(dev, file_priv);
3402}
3403
Chris Wilson3ef94da2009-09-14 16:50:29 +01003404int
3405i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3406 struct drm_file *file_priv)
3407{
3408 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003409 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003410 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003411
3412 switch (args->madv) {
3413 case I915_MADV_DONTNEED:
3414 case I915_MADV_WILLNEED:
3415 break;
3416 default:
3417 return -EINVAL;
3418 }
3419
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003420 ret = i915_mutex_lock_interruptible(dev);
3421 if (ret)
3422 return ret;
3423
Chris Wilson05394f32010-11-08 19:18:58 +00003424 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilson3ef94da2009-09-14 16:50:29 +01003425 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003426 ret = -ENOENT;
3427 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003428 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003429
Chris Wilson05394f32010-11-08 19:18:58 +00003430 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003431 ret = -EINVAL;
3432 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003433 }
3434
Chris Wilson05394f32010-11-08 19:18:58 +00003435 if (obj->madv != __I915_MADV_PURGED)
3436 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003437
Chris Wilson2d7ef392009-09-20 23:13:10 +01003438 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003439 if (i915_gem_object_is_purgeable(obj) &&
3440 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003441 i915_gem_object_truncate(obj);
3442
Chris Wilson05394f32010-11-08 19:18:58 +00003443 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003444
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003445out:
Chris Wilson05394f32010-11-08 19:18:58 +00003446 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003447unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003448 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003449 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003450}
3451
Chris Wilson05394f32010-11-08 19:18:58 +00003452struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3453 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003454{
Chris Wilson73aa8082010-09-30 11:46:12 +01003455 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003456 struct drm_i915_gem_object *obj;
3457
3458 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3459 if (obj == NULL)
3460 return NULL;
3461
3462 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3463 kfree(obj);
3464 return NULL;
3465 }
3466
Chris Wilson73aa8082010-09-30 11:46:12 +01003467 i915_gem_info_add_obj(dev_priv, size);
3468
Daniel Vetterc397b902010-04-09 19:05:07 +00003469 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3470 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3471
3472 obj->agp_type = AGP_USER_MEMORY;
Daniel Vetter62b8b212010-04-09 19:05:08 +00003473 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003474 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003475 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003476 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003477 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003478 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003479 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003480 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003481 /* Avoid an unnecessary call to unbind on the first bind. */
3482 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003483
Chris Wilson05394f32010-11-08 19:18:58 +00003484 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003485}
3486
Eric Anholt673a3942008-07-30 12:06:12 -07003487int i915_gem_init_object(struct drm_gem_object *obj)
3488{
Daniel Vetterc397b902010-04-09 19:05:07 +00003489 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003490
Eric Anholt673a3942008-07-30 12:06:12 -07003491 return 0;
3492}
3493
Chris Wilson05394f32010-11-08 19:18:58 +00003494static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003495{
Chris Wilson05394f32010-11-08 19:18:58 +00003496 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003497 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003498 int ret;
3499
3500 ret = i915_gem_object_unbind(obj);
3501 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003502 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003503 &dev_priv->mm.deferred_free_list);
3504 return;
3505 }
3506
Chris Wilson05394f32010-11-08 19:18:58 +00003507 if (obj->base.map_list.map)
Chris Wilsonbe726152010-07-23 23:18:50 +01003508 i915_gem_free_mmap_offset(obj);
3509
Chris Wilson05394f32010-11-08 19:18:58 +00003510 drm_gem_object_release(&obj->base);
3511 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003512
Chris Wilson05394f32010-11-08 19:18:58 +00003513 kfree(obj->page_cpu_valid);
3514 kfree(obj->bit_17);
3515 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003516}
3517
Chris Wilson05394f32010-11-08 19:18:58 +00003518void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003519{
Chris Wilson05394f32010-11-08 19:18:58 +00003520 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3521 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003522
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003523 trace_i915_gem_object_destroy(obj);
3524
Chris Wilson05394f32010-11-08 19:18:58 +00003525 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003526 i915_gem_object_unpin(obj);
3527
Chris Wilson05394f32010-11-08 19:18:58 +00003528 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003529 i915_gem_detach_phys_object(dev, obj);
3530
Chris Wilsonbe726152010-07-23 23:18:50 +01003531 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003532}
3533
Jesse Barnes5669fca2009-02-17 15:13:31 -08003534int
Eric Anholt673a3942008-07-30 12:06:12 -07003535i915_gem_idle(struct drm_device *dev)
3536{
3537 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003538 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003539
Keith Packard6dbe2772008-10-14 21:41:13 -07003540 mutex_lock(&dev->struct_mutex);
3541
Chris Wilson87acb0a2010-10-19 10:13:00 +01003542 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003543 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003544 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003545 }
Eric Anholt673a3942008-07-30 12:06:12 -07003546
Chris Wilson29105cc2010-01-07 10:39:13 +00003547 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003548 if (ret) {
3549 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003550 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003551 }
Eric Anholt673a3942008-07-30 12:06:12 -07003552
Chris Wilson29105cc2010-01-07 10:39:13 +00003553 /* Under UMS, be paranoid and evict. */
3554 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003555 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003556 if (ret) {
3557 mutex_unlock(&dev->struct_mutex);
3558 return ret;
3559 }
3560 }
3561
Chris Wilson312817a2010-11-22 11:50:11 +00003562 i915_gem_reset_fences(dev);
3563
Chris Wilson29105cc2010-01-07 10:39:13 +00003564 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3565 * We need to replace this with a semaphore, or something.
3566 * And not confound mm.suspended!
3567 */
3568 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003569 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003570
3571 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003572 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003573
Keith Packard6dbe2772008-10-14 21:41:13 -07003574 mutex_unlock(&dev->struct_mutex);
3575
Chris Wilson29105cc2010-01-07 10:39:13 +00003576 /* Cancel the retire work handler, which should be idle now. */
3577 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3578
Eric Anholt673a3942008-07-30 12:06:12 -07003579 return 0;
3580}
3581
Eric Anholt673a3942008-07-30 12:06:12 -07003582int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003583i915_gem_init_ringbuffer(struct drm_device *dev)
3584{
3585 drm_i915_private_t *dev_priv = dev->dev_private;
3586 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003587
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003588 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003589 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003590 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003591
3592 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003593 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003594 if (ret)
3595 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003596 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003597
Chris Wilson549f7362010-10-19 11:19:32 +01003598 if (HAS_BLT(dev)) {
3599 ret = intel_init_blt_ring_buffer(dev);
3600 if (ret)
3601 goto cleanup_bsd_ring;
3602 }
3603
Chris Wilson6f392d52010-08-07 11:01:22 +01003604 dev_priv->next_seqno = 1;
3605
Chris Wilson68f95ba2010-05-27 13:18:22 +01003606 return 0;
3607
Chris Wilson549f7362010-10-19 11:19:32 +01003608cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003609 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003610cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003611 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003612 return ret;
3613}
3614
3615void
3616i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3617{
3618 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003619 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003620
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003621 for (i = 0; i < I915_NUM_RINGS; i++)
3622 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003623}
3624
3625int
Eric Anholt673a3942008-07-30 12:06:12 -07003626i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3627 struct drm_file *file_priv)
3628{
3629 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003630 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003631
Jesse Barnes79e53942008-11-07 14:24:08 -08003632 if (drm_core_check_feature(dev, DRIVER_MODESET))
3633 return 0;
3634
Ben Gamariba1234d2009-09-14 17:48:47 -04003635 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003636 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003637 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003638 }
3639
Eric Anholt673a3942008-07-30 12:06:12 -07003640 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003641 dev_priv->mm.suspended = 0;
3642
3643 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003644 if (ret != 0) {
3645 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003646 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003647 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003648
Chris Wilson69dc4982010-10-19 10:36:51 +01003649 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003650 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3651 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003652 for (i = 0; i < I915_NUM_RINGS; i++) {
3653 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3654 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3655 }
Eric Anholt673a3942008-07-30 12:06:12 -07003656 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003657
Chris Wilson5f353082010-06-07 14:03:03 +01003658 ret = drm_irq_install(dev);
3659 if (ret)
3660 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003661
Eric Anholt673a3942008-07-30 12:06:12 -07003662 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003663
3664cleanup_ringbuffer:
3665 mutex_lock(&dev->struct_mutex);
3666 i915_gem_cleanup_ringbuffer(dev);
3667 dev_priv->mm.suspended = 1;
3668 mutex_unlock(&dev->struct_mutex);
3669
3670 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003671}
3672
3673int
3674i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3675 struct drm_file *file_priv)
3676{
Jesse Barnes79e53942008-11-07 14:24:08 -08003677 if (drm_core_check_feature(dev, DRIVER_MODESET))
3678 return 0;
3679
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003680 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003681 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003682}
3683
3684void
3685i915_gem_lastclose(struct drm_device *dev)
3686{
3687 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003688
Eric Anholte806b492009-01-22 09:56:58 -08003689 if (drm_core_check_feature(dev, DRIVER_MODESET))
3690 return;
3691
Keith Packard6dbe2772008-10-14 21:41:13 -07003692 ret = i915_gem_idle(dev);
3693 if (ret)
3694 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003695}
3696
Chris Wilson64193402010-10-24 12:38:05 +01003697static void
3698init_ring_lists(struct intel_ring_buffer *ring)
3699{
3700 INIT_LIST_HEAD(&ring->active_list);
3701 INIT_LIST_HEAD(&ring->request_list);
3702 INIT_LIST_HEAD(&ring->gpu_write_list);
3703}
3704
Eric Anholt673a3942008-07-30 12:06:12 -07003705void
3706i915_gem_load(struct drm_device *dev)
3707{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003708 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003709 drm_i915_private_t *dev_priv = dev->dev_private;
3710
Chris Wilson69dc4982010-10-19 10:36:51 +01003711 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003712 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3713 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003714 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003715 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003716 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003717 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003718 for (i = 0; i < I915_NUM_RINGS; i++)
3719 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003720 for (i = 0; i < 16; i++)
3721 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003722 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3723 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003724 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003725
Dave Airlie94400122010-07-20 13:15:31 +10003726 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3727 if (IS_GEN3(dev)) {
3728 u32 tmp = I915_READ(MI_ARB_STATE);
3729 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3730 /* arb state is a masked write, so set bit + bit in mask */
3731 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3732 I915_WRITE(MI_ARB_STATE, tmp);
3733 }
3734 }
3735
Jesse Barnesde151cf2008-11-12 10:03:55 -08003736 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003737 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3738 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003739
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003740 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003741 dev_priv->num_fence_regs = 16;
3742 else
3743 dev_priv->num_fence_regs = 8;
3744
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003745 /* Initialize fence registers to zero */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003746 switch (INTEL_INFO(dev)->gen) {
3747 case 6:
3748 for (i = 0; i < 16; i++)
3749 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (i * 8), 0);
3750 break;
3751 case 5:
3752 case 4:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003753 for (i = 0; i < 16; i++)
3754 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003755 break;
3756 case 3:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003757 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
3758 for (i = 0; i < 8; i++)
3759 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003760 case 2:
3761 for (i = 0; i < 8; i++)
3762 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
3763 break;
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003764 }
Eric Anholt673a3942008-07-30 12:06:12 -07003765 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003766 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003767
3768 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3769 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3770 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003771}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003772
3773/*
3774 * Create a physically contiguous memory object for this object
3775 * e.g. for cursor + overlay regs
3776 */
Chris Wilson995b6762010-08-20 13:23:26 +01003777static int i915_gem_init_phys_object(struct drm_device *dev,
3778 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003779{
3780 drm_i915_private_t *dev_priv = dev->dev_private;
3781 struct drm_i915_gem_phys_object *phys_obj;
3782 int ret;
3783
3784 if (dev_priv->mm.phys_objs[id - 1] || !size)
3785 return 0;
3786
Eric Anholt9a298b22009-03-24 12:23:04 -07003787 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003788 if (!phys_obj)
3789 return -ENOMEM;
3790
3791 phys_obj->id = id;
3792
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003793 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003794 if (!phys_obj->handle) {
3795 ret = -ENOMEM;
3796 goto kfree_obj;
3797 }
3798#ifdef CONFIG_X86
3799 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3800#endif
3801
3802 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3803
3804 return 0;
3805kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003806 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003807 return ret;
3808}
3809
Chris Wilson995b6762010-08-20 13:23:26 +01003810static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003811{
3812 drm_i915_private_t *dev_priv = dev->dev_private;
3813 struct drm_i915_gem_phys_object *phys_obj;
3814
3815 if (!dev_priv->mm.phys_objs[id - 1])
3816 return;
3817
3818 phys_obj = dev_priv->mm.phys_objs[id - 1];
3819 if (phys_obj->cur_obj) {
3820 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3821 }
3822
3823#ifdef CONFIG_X86
3824 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3825#endif
3826 drm_pci_free(dev, phys_obj->handle);
3827 kfree(phys_obj);
3828 dev_priv->mm.phys_objs[id - 1] = NULL;
3829}
3830
3831void i915_gem_free_all_phys_object(struct drm_device *dev)
3832{
3833 int i;
3834
Dave Airlie260883c2009-01-22 17:58:49 +10003835 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003836 i915_gem_free_phys_object(dev, i);
3837}
3838
3839void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003840 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003841{
Chris Wilson05394f32010-11-08 19:18:58 +00003842 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003843 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003844 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003845 int page_count;
3846
Chris Wilson05394f32010-11-08 19:18:58 +00003847 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003848 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003849 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003850
Chris Wilson05394f32010-11-08 19:18:58 +00003851 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003852 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003853 struct page *page = read_cache_page_gfp(mapping, i,
3854 GFP_HIGHUSER | __GFP_RECLAIMABLE);
3855 if (!IS_ERR(page)) {
3856 char *dst = kmap_atomic(page);
3857 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3858 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003859
Chris Wilsone5281cc2010-10-28 13:45:36 +01003860 drm_clflush_pages(&page, 1);
3861
3862 set_page_dirty(page);
3863 mark_page_accessed(page);
3864 page_cache_release(page);
3865 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003866 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003867 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003868
Chris Wilson05394f32010-11-08 19:18:58 +00003869 obj->phys_obj->cur_obj = NULL;
3870 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003871}
3872
3873int
3874i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003875 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003876 int id,
3877 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003878{
Chris Wilson05394f32010-11-08 19:18:58 +00003879 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003880 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003881 int ret = 0;
3882 int page_count;
3883 int i;
3884
3885 if (id > I915_MAX_PHYS_OBJECT)
3886 return -EINVAL;
3887
Chris Wilson05394f32010-11-08 19:18:58 +00003888 if (obj->phys_obj) {
3889 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003890 return 0;
3891 i915_gem_detach_phys_object(dev, obj);
3892 }
3893
Dave Airlie71acb5e2008-12-30 20:31:46 +10003894 /* create a new object */
3895 if (!dev_priv->mm.phys_objs[id - 1]) {
3896 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003897 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003898 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003899 DRM_ERROR("failed to init phys object %d size: %zu\n",
3900 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003901 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003902 }
3903 }
3904
3905 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003906 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3907 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003908
Chris Wilson05394f32010-11-08 19:18:58 +00003909 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003910
3911 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003912 struct page *page;
3913 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003914
Chris Wilsone5281cc2010-10-28 13:45:36 +01003915 page = read_cache_page_gfp(mapping, i,
3916 GFP_HIGHUSER | __GFP_RECLAIMABLE);
3917 if (IS_ERR(page))
3918 return PTR_ERR(page);
3919
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003920 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003921 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003922 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003923 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003924
3925 mark_page_accessed(page);
3926 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003927 }
3928
3929 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003930}
3931
3932static int
Chris Wilson05394f32010-11-08 19:18:58 +00003933i915_gem_phys_pwrite(struct drm_device *dev,
3934 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003935 struct drm_i915_gem_pwrite *args,
3936 struct drm_file *file_priv)
3937{
Chris Wilson05394f32010-11-08 19:18:58 +00003938 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003939 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003940
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003941 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3942 unsigned long unwritten;
3943
3944 /* The physical object once assigned is fixed for the lifetime
3945 * of the obj, so we can safely drop the lock and continue
3946 * to access vaddr.
3947 */
3948 mutex_unlock(&dev->struct_mutex);
3949 unwritten = copy_from_user(vaddr, user_data, args->size);
3950 mutex_lock(&dev->struct_mutex);
3951 if (unwritten)
3952 return -EFAULT;
3953 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003954
Daniel Vetter40ce6572010-11-05 18:12:18 +01003955 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003956 return 0;
3957}
Eric Anholtb9624422009-06-03 07:27:35 +00003958
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003959void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003960{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003961 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003962
3963 /* Clean up our request list when the client is going away, so that
3964 * later retire_requests won't dereference our soon-to-be-gone
3965 * file_priv.
3966 */
Chris Wilson1c255952010-09-26 11:03:27 +01003967 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003968 while (!list_empty(&file_priv->mm.request_list)) {
3969 struct drm_i915_gem_request *request;
3970
3971 request = list_first_entry(&file_priv->mm.request_list,
3972 struct drm_i915_gem_request,
3973 client_list);
3974 list_del(&request->client_list);
3975 request->file_priv = NULL;
3976 }
Chris Wilson1c255952010-09-26 11:03:27 +01003977 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003978}
Chris Wilson31169712009-09-14 16:50:28 +01003979
Chris Wilson31169712009-09-14 16:50:28 +01003980static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003981i915_gpu_is_active(struct drm_device *dev)
3982{
3983 drm_i915_private_t *dev_priv = dev->dev_private;
3984 int lists_empty;
3985
Chris Wilson1637ef42010-04-20 17:10:35 +01003986 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003987 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003988
3989 return !lists_empty;
3990}
3991
3992static int
Chris Wilson17250b72010-10-28 12:51:39 +01003993i915_gem_inactive_shrink(struct shrinker *shrinker,
3994 int nr_to_scan,
3995 gfp_t gfp_mask)
Chris Wilson31169712009-09-14 16:50:28 +01003996{
Chris Wilson17250b72010-10-28 12:51:39 +01003997 struct drm_i915_private *dev_priv =
3998 container_of(shrinker,
3999 struct drm_i915_private,
4000 mm.inactive_shrinker);
4001 struct drm_device *dev = dev_priv->dev;
4002 struct drm_i915_gem_object *obj, *next;
4003 int cnt;
4004
4005 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004006 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004007
4008 /* "fast-path" to count number of available objects */
4009 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004010 cnt = 0;
4011 list_for_each_entry(obj,
4012 &dev_priv->mm.inactive_list,
4013 mm_list)
4014 cnt++;
4015 mutex_unlock(&dev->struct_mutex);
4016 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004017 }
4018
Chris Wilson1637ef42010-04-20 17:10:35 +01004019rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004020 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004021 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004022
Chris Wilson17250b72010-10-28 12:51:39 +01004023 list_for_each_entry_safe(obj, next,
4024 &dev_priv->mm.inactive_list,
4025 mm_list) {
4026 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004027 if (i915_gem_object_unbind(obj) == 0 &&
4028 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004029 break;
Chris Wilson31169712009-09-14 16:50:28 +01004030 }
Chris Wilson31169712009-09-14 16:50:28 +01004031 }
4032
4033 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004034 cnt = 0;
4035 list_for_each_entry_safe(obj, next,
4036 &dev_priv->mm.inactive_list,
4037 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004038 if (nr_to_scan &&
4039 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004040 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004041 else
Chris Wilson17250b72010-10-28 12:51:39 +01004042 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004043 }
4044
Chris Wilson17250b72010-10-28 12:51:39 +01004045 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004046 /*
4047 * We are desperate for pages, so as a last resort, wait
4048 * for the GPU to finish and discard whatever we can.
4049 * This has a dramatic impact to reduce the number of
4050 * OOM-killer events whilst running the GPU aggressively.
4051 */
Chris Wilson17250b72010-10-28 12:51:39 +01004052 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004053 goto rescan;
4054 }
Chris Wilson17250b72010-10-28 12:51:39 +01004055 mutex_unlock(&dev->struct_mutex);
4056 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004057}