blob: 9cdeeef5d6d76586458a9f11d4dd54e15f6c03ff [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070036#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson88241782011-01-07 17:09:48 +000039static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000040static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
41static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000042static __must_check int i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
43 uint64_t offset,
44 uint64_t size);
Chris Wilson05394f32010-11-08 19:18:58 +000045static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000046static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
47 unsigned alignment,
48 bool map_and_fenceable);
Chris Wilsond9e86c02010-11-10 16:40:20 +000049static void i915_gem_clear_fence_reg(struct drm_device *dev,
50 struct drm_i915_fence_reg *reg);
Chris Wilson05394f32010-11-08 19:18:58 +000051static int i915_gem_phys_pwrite(struct drm_device *dev,
52 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100053 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000054 struct drm_file *file);
55static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070056
Chris Wilson17250b72010-10-28 12:51:39 +010057static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070058 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010059static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010060
Chris Wilson73aa8082010-09-30 11:46:12 +010061/* some bookkeeping */
62static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
63 size_t size)
64{
65 dev_priv->mm.object_count++;
66 dev_priv->mm.object_memory += size;
67}
68
69static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
70 size_t size)
71{
72 dev_priv->mm.object_count--;
73 dev_priv->mm.object_memory -= size;
74}
75
Chris Wilson21dd3732011-01-26 15:55:56 +000076static int
77i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010078{
79 struct drm_i915_private *dev_priv = dev->dev_private;
80 struct completion *x = &dev_priv->error_completion;
81 unsigned long flags;
82 int ret;
83
84 if (!atomic_read(&dev_priv->mm.wedged))
85 return 0;
86
87 ret = wait_for_completion_interruptible(x);
88 if (ret)
89 return ret;
90
Chris Wilson21dd3732011-01-26 15:55:56 +000091 if (atomic_read(&dev_priv->mm.wedged)) {
92 /* GPU is hung, bump the completion count to account for
93 * the token we just consumed so that we never hit zero and
94 * end up waiting upon a subsequent completion event that
95 * will never happen.
96 */
97 spin_lock_irqsave(&x->wait.lock, flags);
98 x->done++;
99 spin_unlock_irqrestore(&x->wait.lock, flags);
100 }
101 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100102}
103
Chris Wilson54cf91d2010-11-25 18:00:26 +0000104int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100105{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100106 int ret;
107
Chris Wilson21dd3732011-01-26 15:55:56 +0000108 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100109 if (ret)
110 return ret;
111
112 ret = mutex_lock_interruptible(&dev->struct_mutex);
113 if (ret)
114 return ret;
115
Chris Wilson23bc5982010-09-29 16:10:57 +0100116 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100117 return 0;
118}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100119
Chris Wilson7d1c4802010-08-07 21:45:03 +0100120static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000121i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100122{
Chris Wilson05394f32010-11-08 19:18:58 +0000123 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100124}
125
Eric Anholt673a3942008-07-30 12:06:12 -0700126int
127i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000128 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700129{
Eric Anholt673a3942008-07-30 12:06:12 -0700130 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000131
132 if (args->gtt_start >= args->gtt_end ||
133 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
134 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700135
136 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200137 i915_gem_init_global_gtt(dev, args->gtt_start,
138 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700139 mutex_unlock(&dev->struct_mutex);
140
Chris Wilson20217462010-11-23 15:26:33 +0000141 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700142}
143
Eric Anholt5a125c32008-10-22 21:40:13 -0700144int
145i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000146 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700147{
Chris Wilson73aa8082010-09-30 11:46:12 +0100148 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700149 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000150 struct drm_i915_gem_object *obj;
151 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700152
153 if (!(dev->driver->driver_features & DRIVER_GEM))
154 return -ENODEV;
155
Chris Wilson6299f992010-11-24 12:23:44 +0000156 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100157 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000158 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
159 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100160 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700161
Chris Wilson6299f992010-11-24 12:23:44 +0000162 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400163 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000164
Eric Anholt5a125c32008-10-22 21:40:13 -0700165 return 0;
166}
167
Dave Airlieff72145b2011-02-07 12:16:14 +1000168static int
169i915_gem_create(struct drm_file *file,
170 struct drm_device *dev,
171 uint64_t size,
172 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700173{
Chris Wilson05394f32010-11-08 19:18:58 +0000174 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300175 int ret;
176 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700177
Dave Airlieff72145b2011-02-07 12:16:14 +1000178 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200179 if (size == 0)
180 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700181
182 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000183 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700184 if (obj == NULL)
185 return -ENOMEM;
186
Chris Wilson05394f32010-11-08 19:18:58 +0000187 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100188 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000189 drm_gem_object_release(&obj->base);
190 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100191 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700192 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100193 }
194
Chris Wilson202f2fe2010-10-14 13:20:40 +0100195 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000196 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100197 trace_i915_gem_object_create(obj);
198
Dave Airlieff72145b2011-02-07 12:16:14 +1000199 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700200 return 0;
201}
202
Dave Airlieff72145b2011-02-07 12:16:14 +1000203int
204i915_gem_dumb_create(struct drm_file *file,
205 struct drm_device *dev,
206 struct drm_mode_create_dumb *args)
207{
208 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000209 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000210 args->size = args->pitch * args->height;
211 return i915_gem_create(file, dev,
212 args->size, &args->handle);
213}
214
215int i915_gem_dumb_destroy(struct drm_file *file,
216 struct drm_device *dev,
217 uint32_t handle)
218{
219 return drm_gem_handle_delete(file, handle);
220}
221
222/**
223 * Creates a new mm object and returns a handle to it.
224 */
225int
226i915_gem_create_ioctl(struct drm_device *dev, void *data,
227 struct drm_file *file)
228{
229 struct drm_i915_gem_create *args = data;
230 return i915_gem_create(file, dev,
231 args->size, &args->handle);
232}
233
Chris Wilson05394f32010-11-08 19:18:58 +0000234static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700235{
Chris Wilson05394f32010-11-08 19:18:58 +0000236 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700237
238 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000239 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700240}
241
Daniel Vetter8c599672011-12-14 13:57:31 +0100242static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100243__copy_to_user_swizzled(char __user *cpu_vaddr,
244 const char *gpu_vaddr, int gpu_offset,
245 int length)
246{
247 int ret, cpu_offset = 0;
248
249 while (length > 0) {
250 int cacheline_end = ALIGN(gpu_offset + 1, 64);
251 int this_length = min(cacheline_end - gpu_offset, length);
252 int swizzled_gpu_offset = gpu_offset ^ 64;
253
254 ret = __copy_to_user(cpu_vaddr + cpu_offset,
255 gpu_vaddr + swizzled_gpu_offset,
256 this_length);
257 if (ret)
258 return ret + length;
259
260 cpu_offset += this_length;
261 gpu_offset += this_length;
262 length -= this_length;
263 }
264
265 return 0;
266}
267
268static inline int
Daniel Vetter8c599672011-12-14 13:57:31 +0100269__copy_from_user_swizzled(char __user *gpu_vaddr, int gpu_offset,
270 const char *cpu_vaddr,
271 int length)
272{
273 int ret, cpu_offset = 0;
274
275 while (length > 0) {
276 int cacheline_end = ALIGN(gpu_offset + 1, 64);
277 int this_length = min(cacheline_end - gpu_offset, length);
278 int swizzled_gpu_offset = gpu_offset ^ 64;
279
280 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
281 cpu_vaddr + cpu_offset,
282 this_length);
283 if (ret)
284 return ret + length;
285
286 cpu_offset += this_length;
287 gpu_offset += this_length;
288 length -= this_length;
289 }
290
291 return 0;
292}
293
Eric Anholteb014592009-03-10 11:44:52 -0700294static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200295i915_gem_shmem_pread(struct drm_device *dev,
296 struct drm_i915_gem_object *obj,
297 struct drm_i915_gem_pread *args,
298 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700299{
Chris Wilson05394f32010-11-08 19:18:58 +0000300 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100301 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700302 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100303 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100304 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100305 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200306 int hit_slowpath = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200307 int needs_clflush = 0;
Eric Anholteb014592009-03-10 11:44:52 -0700308
Daniel Vetter8461d222011-12-14 13:57:32 +0100309 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700310 remain = args->size;
311
Daniel Vetter8461d222011-12-14 13:57:32 +0100312 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700313
Daniel Vetter84897312012-03-25 19:47:31 +0200314 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
315 /* If we're not in the cpu read domain, set ourself into the gtt
316 * read domain and manually flush cachelines (if required). This
317 * optimizes for the case when the gpu will dirty the data
318 * anyway again before the next pread happens. */
319 if (obj->cache_level == I915_CACHE_NONE)
320 needs_clflush = 1;
321 ret = i915_gem_object_set_to_gtt_domain(obj, false);
322 if (ret)
323 return ret;
324 }
325
Eric Anholteb014592009-03-10 11:44:52 -0700326 offset = args->offset;
327
328 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100329 struct page *page;
Daniel Vetter8461d222011-12-14 13:57:32 +0100330 char *vaddr;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100331
Eric Anholteb014592009-03-10 11:44:52 -0700332 /* Operation in this page
333 *
Eric Anholteb014592009-03-10 11:44:52 -0700334 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700335 * page_length = bytes to copy for this page
336 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100337 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700338 page_length = remain;
339 if ((shmem_page_offset + page_length) > PAGE_SIZE)
340 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700341
Hugh Dickins5949eac2011-06-27 16:18:18 -0700342 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Jesper Juhlb65552f2011-06-12 20:53:44 +0000343 if (IS_ERR(page)) {
344 ret = PTR_ERR(page);
345 goto out;
346 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100347
Daniel Vetter8461d222011-12-14 13:57:32 +0100348 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
349 (page_to_phys(page) & (1 << 17)) != 0;
350
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200351 if (!page_do_bit17_swizzling) {
352 vaddr = kmap_atomic(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200353 if (needs_clflush)
354 drm_clflush_virt_range(vaddr + shmem_page_offset,
355 page_length);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200356 ret = __copy_to_user_inatomic(user_data,
357 vaddr + shmem_page_offset,
358 page_length);
359 kunmap_atomic(vaddr);
360 if (ret == 0)
361 goto next_page;
362 }
363
364 hit_slowpath = 1;
365
366 mutex_unlock(&dev->struct_mutex);
367
Daniel Vetter8461d222011-12-14 13:57:32 +0100368 vaddr = kmap(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200369 if (needs_clflush)
370 drm_clflush_virt_range(vaddr + shmem_page_offset,
371 page_length);
372
Daniel Vetter8461d222011-12-14 13:57:32 +0100373 if (page_do_bit17_swizzling)
374 ret = __copy_to_user_swizzled(user_data,
375 vaddr, shmem_page_offset,
376 page_length);
377 else
378 ret = __copy_to_user(user_data,
379 vaddr + shmem_page_offset,
380 page_length);
381 kunmap(page);
Eric Anholteb014592009-03-10 11:44:52 -0700382
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200383 mutex_lock(&dev->struct_mutex);
384next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100385 mark_page_accessed(page);
386 page_cache_release(page);
387
Daniel Vetter8461d222011-12-14 13:57:32 +0100388 if (ret) {
389 ret = -EFAULT;
390 goto out;
391 }
392
Eric Anholteb014592009-03-10 11:44:52 -0700393 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100394 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700395 offset += page_length;
396 }
397
Chris Wilson4f27b752010-10-14 15:26:45 +0100398out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200399 if (hit_slowpath) {
400 /* Fixup: Kill any reinstated backing storage pages */
401 if (obj->madv == __I915_MADV_PURGED)
402 i915_gem_object_truncate(obj);
403 }
Eric Anholteb014592009-03-10 11:44:52 -0700404
405 return ret;
406}
407
Eric Anholt673a3942008-07-30 12:06:12 -0700408/**
409 * Reads data from the object referenced by handle.
410 *
411 * On error, the contents of *data are undefined.
412 */
413int
414i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000415 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700416{
417 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000418 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100419 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700420
Chris Wilson51311d02010-11-17 09:10:42 +0000421 if (args->size == 0)
422 return 0;
423
424 if (!access_ok(VERIFY_WRITE,
425 (char __user *)(uintptr_t)args->data_ptr,
426 args->size))
427 return -EFAULT;
428
429 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
430 args->size);
431 if (ret)
432 return -EFAULT;
433
Chris Wilson4f27b752010-10-14 15:26:45 +0100434 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100435 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100436 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700437
Chris Wilson05394f32010-11-08 19:18:58 +0000438 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000439 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100440 ret = -ENOENT;
441 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100442 }
Eric Anholt673a3942008-07-30 12:06:12 -0700443
Chris Wilson7dcd2492010-09-26 20:21:44 +0100444 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000445 if (args->offset > obj->base.size ||
446 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100447 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100448 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100449 }
450
Chris Wilsondb53a302011-02-03 11:57:46 +0000451 trace_i915_gem_object_pread(obj, args->offset, args->size);
452
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200453 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700454
Chris Wilson35b62a82010-09-26 20:23:38 +0100455out:
Chris Wilson05394f32010-11-08 19:18:58 +0000456 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100457unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100458 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700459 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700460}
461
Keith Packard0839ccb2008-10-30 19:38:48 -0700462/* This is the fast write path which cannot handle
463 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700464 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700465
Keith Packard0839ccb2008-10-30 19:38:48 -0700466static inline int
467fast_user_write(struct io_mapping *mapping,
468 loff_t page_base, int page_offset,
469 char __user *user_data,
470 int length)
471{
472 char *vaddr_atomic;
473 unsigned long unwritten;
474
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700475 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700476 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
477 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700478 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100479 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700480}
481
482/* Here's the write path which can sleep for
483 * page faults
484 */
485
Chris Wilsonab34c222010-05-27 14:15:35 +0100486static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700487slow_kernel_write(struct io_mapping *mapping,
488 loff_t gtt_base, int gtt_offset,
489 struct page *user_page, int user_offset,
490 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700491{
Chris Wilsonab34c222010-05-27 14:15:35 +0100492 char __iomem *dst_vaddr;
493 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700494
Chris Wilsonab34c222010-05-27 14:15:35 +0100495 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
496 src_vaddr = kmap(user_page);
497
498 memcpy_toio(dst_vaddr + gtt_offset,
499 src_vaddr + user_offset,
500 length);
501
502 kunmap(user_page);
503 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700504}
505
Eric Anholt3de09aa2009-03-09 09:42:23 -0700506/**
507 * This is the fast pwrite path, where we copy the data directly from the
508 * user into the GTT, uncached.
509 */
Eric Anholt673a3942008-07-30 12:06:12 -0700510static int
Chris Wilson05394f32010-11-08 19:18:58 +0000511i915_gem_gtt_pwrite_fast(struct drm_device *dev,
512 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700513 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000514 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700515{
Keith Packard0839ccb2008-10-30 19:38:48 -0700516 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700517 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700518 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700519 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700520 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700521
522 user_data = (char __user *) (uintptr_t) args->data_ptr;
523 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700524
Chris Wilson05394f32010-11-08 19:18:58 +0000525 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700526
527 while (remain > 0) {
528 /* Operation in this page
529 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700530 * page_base = page offset within aperture
531 * page_offset = offset within page
532 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700533 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100534 page_base = offset & PAGE_MASK;
535 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700536 page_length = remain;
537 if ((page_offset + remain) > PAGE_SIZE)
538 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700539
Keith Packard0839ccb2008-10-30 19:38:48 -0700540 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700541 * source page isn't available. Return the error and we'll
542 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700543 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100544 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
545 page_offset, user_data, page_length))
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100546 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700547
Keith Packard0839ccb2008-10-30 19:38:48 -0700548 remain -= page_length;
549 user_data += page_length;
550 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700551 }
Eric Anholt673a3942008-07-30 12:06:12 -0700552
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100553 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700554}
555
Eric Anholt3de09aa2009-03-09 09:42:23 -0700556/**
557 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
558 * the memory and maps it using kmap_atomic for copying.
559 *
560 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
561 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
562 */
Eric Anholt3043c602008-10-02 12:24:47 -0700563static int
Chris Wilson05394f32010-11-08 19:18:58 +0000564i915_gem_gtt_pwrite_slow(struct drm_device *dev,
565 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700566 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000567 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700568{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700569 drm_i915_private_t *dev_priv = dev->dev_private;
570 ssize_t remain;
571 loff_t gtt_page_base, offset;
572 loff_t first_data_page, last_data_page, num_pages;
573 loff_t pinned_pages, i;
574 struct page **user_pages;
575 struct mm_struct *mm = current->mm;
576 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700577 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700578 uint64_t data_ptr = args->data_ptr;
579
580 remain = args->size;
581
582 /* Pin the user pages containing the data. We can't fault while
583 * holding the struct mutex, and all of the pwrite implementations
584 * want to hold it while dereferencing the user data.
585 */
586 first_data_page = data_ptr / PAGE_SIZE;
587 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
588 num_pages = last_data_page - first_data_page + 1;
589
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100590 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700591 if (user_pages == NULL)
592 return -ENOMEM;
593
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100594 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700595 down_read(&mm->mmap_sem);
596 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
597 num_pages, 0, 0, user_pages, NULL);
598 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100599 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700600 if (pinned_pages < num_pages) {
601 ret = -EFAULT;
602 goto out_unpin_pages;
603 }
604
Chris Wilsond9e86c02010-11-10 16:40:20 +0000605 ret = i915_gem_object_set_to_gtt_domain(obj, true);
606 if (ret)
607 goto out_unpin_pages;
608
609 ret = i915_gem_object_put_fence(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700610 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100611 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700612
Chris Wilson05394f32010-11-08 19:18:58 +0000613 offset = obj->gtt_offset + args->offset;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700614
615 while (remain > 0) {
616 /* Operation in this page
617 *
618 * gtt_page_base = page offset within aperture
619 * gtt_page_offset = offset within page in aperture
620 * data_page_index = page number in get_user_pages return
621 * data_page_offset = offset with data_page_index page.
622 * page_length = bytes to copy for this page
623 */
624 gtt_page_base = offset & PAGE_MASK;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100625 gtt_page_offset = offset_in_page(offset);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700626 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100627 data_page_offset = offset_in_page(data_ptr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700628
629 page_length = remain;
630 if ((gtt_page_offset + page_length) > PAGE_SIZE)
631 page_length = PAGE_SIZE - gtt_page_offset;
632 if ((data_page_offset + page_length) > PAGE_SIZE)
633 page_length = PAGE_SIZE - data_page_offset;
634
Chris Wilsonab34c222010-05-27 14:15:35 +0100635 slow_kernel_write(dev_priv->mm.gtt_mapping,
636 gtt_page_base, gtt_page_offset,
637 user_pages[data_page_index],
638 data_page_offset,
639 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700640
641 remain -= page_length;
642 offset += page_length;
643 data_ptr += page_length;
644 }
645
Eric Anholt3de09aa2009-03-09 09:42:23 -0700646out_unpin_pages:
647 for (i = 0; i < pinned_pages; i++)
648 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700649 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700650
651 return ret;
652}
653
Eric Anholt673a3942008-07-30 12:06:12 -0700654static int
Daniel Vettere244a442012-03-25 19:47:28 +0200655i915_gem_shmem_pwrite(struct drm_device *dev,
656 struct drm_i915_gem_object *obj,
657 struct drm_i915_gem_pwrite *args,
658 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700659{
Chris Wilson05394f32010-11-08 19:18:58 +0000660 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700661 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100662 loff_t offset;
663 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100664 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100665 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200666 int hit_slowpath = 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700667
Daniel Vetter8c599672011-12-14 13:57:31 +0100668 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700669 remain = args->size;
670
Daniel Vetter8c599672011-12-14 13:57:31 +0100671 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700672
Eric Anholt40123c12009-03-09 13:42:30 -0700673 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000674 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700675
676 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100677 struct page *page;
Daniel Vetter8c599672011-12-14 13:57:31 +0100678 char *vaddr;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100679
Eric Anholt40123c12009-03-09 13:42:30 -0700680 /* Operation in this page
681 *
Eric Anholt40123c12009-03-09 13:42:30 -0700682 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700683 * page_length = bytes to copy for this page
684 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100685 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700686
687 page_length = remain;
688 if ((shmem_page_offset + page_length) > PAGE_SIZE)
689 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700690
Hugh Dickins5949eac2011-06-27 16:18:18 -0700691 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100692 if (IS_ERR(page)) {
693 ret = PTR_ERR(page);
694 goto out;
695 }
696
Daniel Vetter8c599672011-12-14 13:57:31 +0100697 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
698 (page_to_phys(page) & (1 << 17)) != 0;
699
Daniel Vettere244a442012-03-25 19:47:28 +0200700 if (!page_do_bit17_swizzling) {
701 vaddr = kmap_atomic(page);
702 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
703 user_data,
704 page_length);
705 kunmap_atomic(vaddr);
706
707 if (ret == 0)
708 goto next_page;
709 }
710
711 hit_slowpath = 1;
712
713 mutex_unlock(&dev->struct_mutex);
714
Daniel Vetter8c599672011-12-14 13:57:31 +0100715 vaddr = kmap(page);
716 if (page_do_bit17_swizzling)
717 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
718 user_data,
719 page_length);
720 else
721 ret = __copy_from_user(vaddr + shmem_page_offset,
722 user_data,
723 page_length);
724 kunmap(page);
Eric Anholt40123c12009-03-09 13:42:30 -0700725
Daniel Vettere244a442012-03-25 19:47:28 +0200726 mutex_lock(&dev->struct_mutex);
727next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100728 set_page_dirty(page);
729 mark_page_accessed(page);
730 page_cache_release(page);
731
Daniel Vetter8c599672011-12-14 13:57:31 +0100732 if (ret) {
733 ret = -EFAULT;
734 goto out;
735 }
736
Eric Anholt40123c12009-03-09 13:42:30 -0700737 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100738 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700739 offset += page_length;
740 }
741
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100742out:
Daniel Vettere244a442012-03-25 19:47:28 +0200743 if (hit_slowpath) {
744 /* Fixup: Kill any reinstated backing storage pages */
745 if (obj->madv == __I915_MADV_PURGED)
746 i915_gem_object_truncate(obj);
747 /* and flush dirty cachelines in case the object isn't in the cpu write
748 * domain anymore. */
749 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
750 i915_gem_clflush_object(obj);
751 intel_gtt_chipset_flush();
752 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100753 }
Eric Anholt40123c12009-03-09 13:42:30 -0700754
755 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700756}
757
758/**
759 * Writes data to the object referenced by handle.
760 *
761 * On error, the contents of the buffer that were to be modified are undefined.
762 */
763int
764i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100765 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700766{
767 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000768 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000769 int ret;
770
771 if (args->size == 0)
772 return 0;
773
774 if (!access_ok(VERIFY_READ,
775 (char __user *)(uintptr_t)args->data_ptr,
776 args->size))
777 return -EFAULT;
778
779 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
780 args->size);
781 if (ret)
782 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700783
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100784 ret = i915_mutex_lock_interruptible(dev);
785 if (ret)
786 return ret;
787
Chris Wilson05394f32010-11-08 19:18:58 +0000788 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000789 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100790 ret = -ENOENT;
791 goto unlock;
792 }
Eric Anholt673a3942008-07-30 12:06:12 -0700793
Chris Wilson7dcd2492010-09-26 20:21:44 +0100794 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000795 if (args->offset > obj->base.size ||
796 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100797 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100798 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100799 }
800
Chris Wilsondb53a302011-02-03 11:57:46 +0000801 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
802
Eric Anholt673a3942008-07-30 12:06:12 -0700803 /* We can only do the GTT pwrite on untiled buffers, as otherwise
804 * it would end up going through the fenced access, and we'll get
805 * different detiling behavior between reading and writing.
806 * pread/pwrite currently are reading and writing from the CPU
807 * perspective, requiring manual detiling by the client.
808 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100809 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100810 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100811 goto out;
812 }
813
814 if (obj->gtt_space &&
815 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +0100816 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100817 if (ret)
818 goto out;
819
Chris Wilsond9e86c02010-11-10 16:40:20 +0000820 ret = i915_gem_object_set_to_gtt_domain(obj, true);
821 if (ret)
822 goto out_unpin;
823
824 ret = i915_gem_object_put_fence(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100825 if (ret)
826 goto out_unpin;
827
828 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
829 if (ret == -EFAULT)
830 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
831
832out_unpin:
833 i915_gem_object_unpin(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100834
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100835 if (ret != -EFAULT)
836 goto out;
837 /* Fall through to the shmfs paths because the gtt paths might
838 * fail with non-page-backed user pointers (e.g. gtt mappings
839 * when moving data between textures). */
Eric Anholt40123c12009-03-09 13:42:30 -0700840 }
Eric Anholt673a3942008-07-30 12:06:12 -0700841
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100842 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
843 if (ret)
844 goto out;
845
Daniel Vettere244a442012-03-25 19:47:28 +0200846 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100847
Chris Wilson35b62a82010-09-26 20:23:38 +0100848out:
Chris Wilson05394f32010-11-08 19:18:58 +0000849 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100850unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100851 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700852 return ret;
853}
854
855/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800856 * Called when user space prepares to use an object with the CPU, either
857 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700858 */
859int
860i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000861 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700862{
863 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000864 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800865 uint32_t read_domains = args->read_domains;
866 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700867 int ret;
868
869 if (!(dev->driver->driver_features & DRIVER_GEM))
870 return -ENODEV;
871
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800872 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100873 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800874 return -EINVAL;
875
Chris Wilson21d509e2009-06-06 09:46:02 +0100876 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800877 return -EINVAL;
878
879 /* Having something in the write domain implies it's in the read
880 * domain, and only that read domain. Enforce that in the request.
881 */
882 if (write_domain != 0 && read_domains != write_domain)
883 return -EINVAL;
884
Chris Wilson76c1dec2010-09-25 11:22:51 +0100885 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100886 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100887 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700888
Chris Wilson05394f32010-11-08 19:18:58 +0000889 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000890 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100891 ret = -ENOENT;
892 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100893 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700894
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800895 if (read_domains & I915_GEM_DOMAIN_GTT) {
896 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800897
898 /* Silently promote "you're not bound, there was nothing to do"
899 * to success, since the client was just asking us to
900 * make sure everything was done.
901 */
902 if (ret == -EINVAL)
903 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800904 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800905 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800906 }
907
Chris Wilson05394f32010-11-08 19:18:58 +0000908 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100909unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700910 mutex_unlock(&dev->struct_mutex);
911 return ret;
912}
913
914/**
915 * Called when user space has done writes to this buffer
916 */
917int
918i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000919 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700920{
921 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000922 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700923 int ret = 0;
924
925 if (!(dev->driver->driver_features & DRIVER_GEM))
926 return -ENODEV;
927
Chris Wilson76c1dec2010-09-25 11:22:51 +0100928 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100929 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100930 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100931
Chris Wilson05394f32010-11-08 19:18:58 +0000932 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000933 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100934 ret = -ENOENT;
935 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700936 }
937
Eric Anholt673a3942008-07-30 12:06:12 -0700938 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000939 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800940 i915_gem_object_flush_cpu_write_domain(obj);
941
Chris Wilson05394f32010-11-08 19:18:58 +0000942 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100943unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700944 mutex_unlock(&dev->struct_mutex);
945 return ret;
946}
947
948/**
949 * Maps the contents of an object, returning the address it is mapped
950 * into.
951 *
952 * While the mapping holds a reference on the contents of the object, it doesn't
953 * imply a ref on the object itself.
954 */
955int
956i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000957 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700958{
959 struct drm_i915_gem_mmap *args = data;
960 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700961 unsigned long addr;
962
963 if (!(dev->driver->driver_features & DRIVER_GEM))
964 return -ENODEV;
965
Chris Wilson05394f32010-11-08 19:18:58 +0000966 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -0700967 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100968 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -0700969
Eric Anholt673a3942008-07-30 12:06:12 -0700970 down_write(&current->mm->mmap_sem);
971 addr = do_mmap(obj->filp, 0, args->size,
972 PROT_READ | PROT_WRITE, MAP_SHARED,
973 args->offset);
974 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000975 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700976 if (IS_ERR((void *)addr))
977 return addr;
978
979 args->addr_ptr = (uint64_t) addr;
980
981 return 0;
982}
983
Jesse Barnesde151cf2008-11-12 10:03:55 -0800984/**
985 * i915_gem_fault - fault a page into the GTT
986 * vma: VMA in question
987 * vmf: fault info
988 *
989 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
990 * from userspace. The fault handler takes care of binding the object to
991 * the GTT (if needed), allocating and programming a fence register (again,
992 * only if needed based on whether the old reg is still valid or the object
993 * is tiled) and inserting a new PTE into the faulting process.
994 *
995 * Note that the faulting process may involve evicting existing objects
996 * from the GTT and/or fence registers to make room. So performance may
997 * suffer if the GTT working set is large or there are few fence registers
998 * left.
999 */
1000int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1001{
Chris Wilson05394f32010-11-08 19:18:58 +00001002 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1003 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001004 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001005 pgoff_t page_offset;
1006 unsigned long pfn;
1007 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001008 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001009
1010 /* We don't use vmf->pgoff since that has the fake offset */
1011 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1012 PAGE_SHIFT;
1013
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001014 ret = i915_mutex_lock_interruptible(dev);
1015 if (ret)
1016 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001017
Chris Wilsondb53a302011-02-03 11:57:46 +00001018 trace_i915_gem_object_fault(obj, page_offset, true, write);
1019
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001020 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001021 if (!obj->map_and_fenceable) {
1022 ret = i915_gem_object_unbind(obj);
1023 if (ret)
1024 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001025 }
Chris Wilson05394f32010-11-08 19:18:58 +00001026 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001027 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001028 if (ret)
1029 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001030
Eric Anholte92d03b2011-06-14 16:43:09 -07001031 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1032 if (ret)
1033 goto unlock;
1034 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001035
Daniel Vetter74898d72012-02-15 23:50:22 +01001036 if (!obj->has_global_gtt_mapping)
1037 i915_gem_gtt_bind_object(obj, obj->cache_level);
1038
Chris Wilsond9e86c02010-11-10 16:40:20 +00001039 if (obj->tiling_mode == I915_TILING_NONE)
1040 ret = i915_gem_object_put_fence(obj);
1041 else
Chris Wilsonce453d82011-02-21 14:43:56 +00001042 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001043 if (ret)
1044 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001045
Chris Wilson05394f32010-11-08 19:18:58 +00001046 if (i915_gem_object_is_inactive(obj))
1047 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001048
Chris Wilson6299f992010-11-24 12:23:44 +00001049 obj->fault_mappable = true;
1050
Chris Wilson05394f32010-11-08 19:18:58 +00001051 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001052 page_offset;
1053
1054 /* Finally, remap it using the new GTT offset */
1055 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001056unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001057 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001058out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001059 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001060 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001061 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001062 /* Give the error handler a chance to run and move the
1063 * objects off the GPU active list. Next time we service the
1064 * fault, we should be able to transition the page into the
1065 * GTT without touching the GPU (and so avoid further
1066 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1067 * with coherency, just lost writes.
1068 */
Chris Wilson045e7692010-11-07 09:18:22 +00001069 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001070 case 0:
1071 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001072 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001073 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001074 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001075 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001076 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001077 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001078 }
1079}
1080
1081/**
Chris Wilson901782b2009-07-10 08:18:50 +01001082 * i915_gem_release_mmap - remove physical page mappings
1083 * @obj: obj in question
1084 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001085 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001086 * relinquish ownership of the pages back to the system.
1087 *
1088 * It is vital that we remove the page mapping if we have mapped a tiled
1089 * object through the GTT and then lose the fence register due to
1090 * resource pressure. Similarly if the object has been moved out of the
1091 * aperture, than pages mapped into userspace must be revoked. Removing the
1092 * mapping will then trigger a page fault on the next user access, allowing
1093 * fixup by i915_gem_fault().
1094 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001095void
Chris Wilson05394f32010-11-08 19:18:58 +00001096i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001097{
Chris Wilson6299f992010-11-24 12:23:44 +00001098 if (!obj->fault_mappable)
1099 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001100
Chris Wilsonf6e47882011-03-20 21:09:12 +00001101 if (obj->base.dev->dev_mapping)
1102 unmap_mapping_range(obj->base.dev->dev_mapping,
1103 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1104 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001105
Chris Wilson6299f992010-11-24 12:23:44 +00001106 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001107}
1108
Chris Wilson92b88ae2010-11-09 11:47:32 +00001109static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001110i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001111{
Chris Wilsone28f8712011-07-18 13:11:49 -07001112 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001113
1114 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001115 tiling_mode == I915_TILING_NONE)
1116 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001117
1118 /* Previous chips need a power-of-two fence region when tiling */
1119 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001120 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001121 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001122 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001123
Chris Wilsone28f8712011-07-18 13:11:49 -07001124 while (gtt_size < size)
1125 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001126
Chris Wilsone28f8712011-07-18 13:11:49 -07001127 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001128}
1129
Jesse Barnesde151cf2008-11-12 10:03:55 -08001130/**
1131 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1132 * @obj: object to check
1133 *
1134 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001135 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001136 */
1137static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001138i915_gem_get_gtt_alignment(struct drm_device *dev,
1139 uint32_t size,
1140 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001141{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001142 /*
1143 * Minimum alignment is 4k (GTT page size), but might be greater
1144 * if a fence register is needed for the object.
1145 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001146 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001147 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001148 return 4096;
1149
1150 /*
1151 * Previous chips need to be aligned to the size of the smallest
1152 * fence register that can contain the object.
1153 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001154 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001155}
1156
Daniel Vetter5e783302010-11-14 22:32:36 +01001157/**
1158 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1159 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001160 * @dev: the device
1161 * @size: size of the object
1162 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001163 *
1164 * Return the required GTT alignment for an object, only taking into account
1165 * unfenced tiled surface requirements.
1166 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001167uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001168i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1169 uint32_t size,
1170 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001171{
Daniel Vetter5e783302010-11-14 22:32:36 +01001172 /*
1173 * Minimum alignment is 4k (GTT page size) for sane hw.
1174 */
1175 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001176 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001177 return 4096;
1178
Chris Wilsone28f8712011-07-18 13:11:49 -07001179 /* Previous hardware however needs to be aligned to a power-of-two
1180 * tile height. The simplest method for determining this is to reuse
1181 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001182 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001183 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001184}
1185
Jesse Barnesde151cf2008-11-12 10:03:55 -08001186int
Dave Airlieff72145b2011-02-07 12:16:14 +10001187i915_gem_mmap_gtt(struct drm_file *file,
1188 struct drm_device *dev,
1189 uint32_t handle,
1190 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001191{
Chris Wilsonda761a62010-10-27 17:37:08 +01001192 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001193 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001194 int ret;
1195
1196 if (!(dev->driver->driver_features & DRIVER_GEM))
1197 return -ENODEV;
1198
Chris Wilson76c1dec2010-09-25 11:22:51 +01001199 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001200 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001201 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001202
Dave Airlieff72145b2011-02-07 12:16:14 +10001203 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001204 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001205 ret = -ENOENT;
1206 goto unlock;
1207 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001208
Chris Wilson05394f32010-11-08 19:18:58 +00001209 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001210 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001211 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001212 }
1213
Chris Wilson05394f32010-11-08 19:18:58 +00001214 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001215 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001216 ret = -EINVAL;
1217 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001218 }
1219
Chris Wilson05394f32010-11-08 19:18:58 +00001220 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001221 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001222 if (ret)
1223 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001224 }
1225
Dave Airlieff72145b2011-02-07 12:16:14 +10001226 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001227
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001228out:
Chris Wilson05394f32010-11-08 19:18:58 +00001229 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001230unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001231 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001232 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001233}
1234
Dave Airlieff72145b2011-02-07 12:16:14 +10001235/**
1236 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1237 * @dev: DRM device
1238 * @data: GTT mapping ioctl data
1239 * @file: GEM object info
1240 *
1241 * Simply returns the fake offset to userspace so it can mmap it.
1242 * The mmap call will end up in drm_gem_mmap(), which will set things
1243 * up so we can get faults in the handler above.
1244 *
1245 * The fault handler will take care of binding the object into the GTT
1246 * (since it may have been evicted to make room for something), allocating
1247 * a fence register, and mapping the appropriate aperture address into
1248 * userspace.
1249 */
1250int
1251i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1252 struct drm_file *file)
1253{
1254 struct drm_i915_gem_mmap_gtt *args = data;
1255
1256 if (!(dev->driver->driver_features & DRIVER_GEM))
1257 return -ENODEV;
1258
1259 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1260}
1261
1262
Chris Wilsone5281cc2010-10-28 13:45:36 +01001263static int
Chris Wilson05394f32010-11-08 19:18:58 +00001264i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001265 gfp_t gfpmask)
1266{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001267 int page_count, i;
1268 struct address_space *mapping;
1269 struct inode *inode;
1270 struct page *page;
1271
1272 /* Get the list of pages out of our struct file. They'll be pinned
1273 * at this point until we release them.
1274 */
Chris Wilson05394f32010-11-08 19:18:58 +00001275 page_count = obj->base.size / PAGE_SIZE;
1276 BUG_ON(obj->pages != NULL);
1277 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1278 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001279 return -ENOMEM;
1280
Chris Wilson05394f32010-11-08 19:18:58 +00001281 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001282 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001283 gfpmask |= mapping_gfp_mask(mapping);
1284
Chris Wilsone5281cc2010-10-28 13:45:36 +01001285 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001286 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001287 if (IS_ERR(page))
1288 goto err_pages;
1289
Chris Wilson05394f32010-11-08 19:18:58 +00001290 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001291 }
1292
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001293 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001294 i915_gem_object_do_bit_17_swizzle(obj);
1295
1296 return 0;
1297
1298err_pages:
1299 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001300 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001301
Chris Wilson05394f32010-11-08 19:18:58 +00001302 drm_free_large(obj->pages);
1303 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001304 return PTR_ERR(page);
1305}
1306
Chris Wilson5cdf5882010-09-27 15:51:07 +01001307static void
Chris Wilson05394f32010-11-08 19:18:58 +00001308i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001309{
Chris Wilson05394f32010-11-08 19:18:58 +00001310 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001311 int i;
1312
Chris Wilson05394f32010-11-08 19:18:58 +00001313 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001314
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001315 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001316 i915_gem_object_save_bit_17_swizzle(obj);
1317
Chris Wilson05394f32010-11-08 19:18:58 +00001318 if (obj->madv == I915_MADV_DONTNEED)
1319 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001320
1321 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001322 if (obj->dirty)
1323 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001324
Chris Wilson05394f32010-11-08 19:18:58 +00001325 if (obj->madv == I915_MADV_WILLNEED)
1326 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001327
Chris Wilson05394f32010-11-08 19:18:58 +00001328 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001329 }
Chris Wilson05394f32010-11-08 19:18:58 +00001330 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001331
Chris Wilson05394f32010-11-08 19:18:58 +00001332 drm_free_large(obj->pages);
1333 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001334}
1335
Chris Wilson54cf91d2010-11-25 18:00:26 +00001336void
Chris Wilson05394f32010-11-08 19:18:58 +00001337i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001338 struct intel_ring_buffer *ring,
1339 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001340{
Chris Wilson05394f32010-11-08 19:18:58 +00001341 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001342 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001343
Zou Nan hai852835f2010-05-21 09:08:56 +08001344 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001345 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001346
1347 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001348 if (!obj->active) {
1349 drm_gem_object_reference(&obj->base);
1350 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001351 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001352
Eric Anholt673a3942008-07-30 12:06:12 -07001353 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001354 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1355 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001356
Chris Wilson05394f32010-11-08 19:18:58 +00001357 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001358 if (obj->fenced_gpu_access) {
1359 struct drm_i915_fence_reg *reg;
1360
1361 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1362
1363 obj->last_fenced_seqno = seqno;
1364 obj->last_fenced_ring = ring;
1365
1366 reg = &dev_priv->fence_regs[obj->fence_reg];
1367 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1368 }
1369}
1370
1371static void
1372i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1373{
1374 list_del_init(&obj->ring_list);
1375 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001376}
1377
Eric Anholtce44b0e2008-11-06 16:00:31 -08001378static void
Chris Wilson05394f32010-11-08 19:18:58 +00001379i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001380{
Chris Wilson05394f32010-11-08 19:18:58 +00001381 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001382 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001383
Chris Wilson05394f32010-11-08 19:18:58 +00001384 BUG_ON(!obj->active);
1385 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001386
1387 i915_gem_object_move_off_active(obj);
1388}
1389
1390static void
1391i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1392{
1393 struct drm_device *dev = obj->base.dev;
1394 struct drm_i915_private *dev_priv = dev->dev_private;
1395
1396 if (obj->pin_count != 0)
1397 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1398 else
1399 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1400
1401 BUG_ON(!list_empty(&obj->gpu_write_list));
1402 BUG_ON(!obj->active);
1403 obj->ring = NULL;
1404
1405 i915_gem_object_move_off_active(obj);
1406 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001407
1408 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001409 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001410 drm_gem_object_unreference(&obj->base);
1411
1412 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001413}
Eric Anholt673a3942008-07-30 12:06:12 -07001414
Chris Wilson963b4832009-09-20 23:03:54 +01001415/* Immediately discard the backing storage */
1416static void
Chris Wilson05394f32010-11-08 19:18:58 +00001417i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001418{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001419 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001420
Chris Wilsonae9fed62010-08-07 11:01:30 +01001421 /* Our goal here is to return as much of the memory as
1422 * is possible back to the system as we are called from OOM.
1423 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001424 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001425 */
Chris Wilson05394f32010-11-08 19:18:58 +00001426 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001427 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001428
Chris Wilsona14917e2012-02-24 21:13:38 +00001429 if (obj->base.map_list.map)
1430 drm_gem_free_mmap_offset(&obj->base);
1431
Chris Wilson05394f32010-11-08 19:18:58 +00001432 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001433}
1434
1435static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001436i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001437{
Chris Wilson05394f32010-11-08 19:18:58 +00001438 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001439}
1440
Eric Anholt673a3942008-07-30 12:06:12 -07001441static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001442i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1443 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001444{
Chris Wilson05394f32010-11-08 19:18:58 +00001445 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001446
Chris Wilson05394f32010-11-08 19:18:58 +00001447 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001448 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001449 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001450 if (obj->base.write_domain & flush_domains) {
1451 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001452
Chris Wilson05394f32010-11-08 19:18:58 +00001453 obj->base.write_domain = 0;
1454 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001455 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001456 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001457
Daniel Vetter63560392010-02-19 11:51:59 +01001458 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001459 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001460 old_write_domain);
1461 }
1462 }
1463}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001464
Daniel Vetter53d227f2012-01-25 16:32:49 +01001465static u32
1466i915_gem_get_seqno(struct drm_device *dev)
1467{
1468 drm_i915_private_t *dev_priv = dev->dev_private;
1469 u32 seqno = dev_priv->next_seqno;
1470
1471 /* reserve 0 for non-seqno */
1472 if (++dev_priv->next_seqno == 0)
1473 dev_priv->next_seqno = 1;
1474
1475 return seqno;
1476}
1477
1478u32
1479i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1480{
1481 if (ring->outstanding_lazy_request == 0)
1482 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1483
1484 return ring->outstanding_lazy_request;
1485}
1486
Chris Wilson3cce4692010-10-27 16:11:02 +01001487int
Chris Wilsondb53a302011-02-03 11:57:46 +00001488i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001489 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001490 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001491{
Chris Wilsondb53a302011-02-03 11:57:46 +00001492 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001493 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001494 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001495 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001496 int ret;
1497
1498 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001499 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001500
Chris Wilsona71d8d92012-02-15 11:25:36 +00001501 /* Record the position of the start of the request so that
1502 * should we detect the updated seqno part-way through the
1503 * GPU processing the request, we never over-estimate the
1504 * position of the head.
1505 */
1506 request_ring_position = intel_ring_get_tail(ring);
1507
Chris Wilson3cce4692010-10-27 16:11:02 +01001508 ret = ring->add_request(ring, &seqno);
1509 if (ret)
1510 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001511
Chris Wilsondb53a302011-02-03 11:57:46 +00001512 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001513
1514 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001515 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001516 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001517 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001518 was_empty = list_empty(&ring->request_list);
1519 list_add_tail(&request->list, &ring->request_list);
1520
Chris Wilsondb53a302011-02-03 11:57:46 +00001521 if (file) {
1522 struct drm_i915_file_private *file_priv = file->driver_priv;
1523
Chris Wilson1c255952010-09-26 11:03:27 +01001524 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001525 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001526 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001527 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001528 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001529 }
Eric Anholt673a3942008-07-30 12:06:12 -07001530
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001531 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001532
Ben Gamarif65d9422009-09-14 17:48:44 -04001533 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001534 if (i915_enable_hangcheck) {
1535 mod_timer(&dev_priv->hangcheck_timer,
1536 jiffies +
1537 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1538 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001539 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001540 queue_delayed_work(dev_priv->wq,
1541 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001542 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001543 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001544}
1545
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001546static inline void
1547i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001548{
Chris Wilson1c255952010-09-26 11:03:27 +01001549 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001550
Chris Wilson1c255952010-09-26 11:03:27 +01001551 if (!file_priv)
1552 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001553
Chris Wilson1c255952010-09-26 11:03:27 +01001554 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001555 if (request->file_priv) {
1556 list_del(&request->client_list);
1557 request->file_priv = NULL;
1558 }
Chris Wilson1c255952010-09-26 11:03:27 +01001559 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001560}
1561
Chris Wilsondfaae392010-09-22 10:31:52 +01001562static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1563 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001564{
Chris Wilsondfaae392010-09-22 10:31:52 +01001565 while (!list_empty(&ring->request_list)) {
1566 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001567
Chris Wilsondfaae392010-09-22 10:31:52 +01001568 request = list_first_entry(&ring->request_list,
1569 struct drm_i915_gem_request,
1570 list);
1571
1572 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001573 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001574 kfree(request);
1575 }
1576
1577 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001578 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001579
Chris Wilson05394f32010-11-08 19:18:58 +00001580 obj = list_first_entry(&ring->active_list,
1581 struct drm_i915_gem_object,
1582 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001583
Chris Wilson05394f32010-11-08 19:18:58 +00001584 obj->base.write_domain = 0;
1585 list_del_init(&obj->gpu_write_list);
1586 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001587 }
Eric Anholt673a3942008-07-30 12:06:12 -07001588}
1589
Chris Wilson312817a2010-11-22 11:50:11 +00001590static void i915_gem_reset_fences(struct drm_device *dev)
1591{
1592 struct drm_i915_private *dev_priv = dev->dev_private;
1593 int i;
1594
Daniel Vetter4b9de732011-10-09 21:52:02 +02001595 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001596 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001597 struct drm_i915_gem_object *obj = reg->obj;
1598
1599 if (!obj)
1600 continue;
1601
1602 if (obj->tiling_mode)
1603 i915_gem_release_mmap(obj);
1604
Chris Wilsond9e86c02010-11-10 16:40:20 +00001605 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1606 reg->obj->fenced_gpu_access = false;
1607 reg->obj->last_fenced_seqno = 0;
1608 reg->obj->last_fenced_ring = NULL;
1609 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001610 }
1611}
1612
Chris Wilson069efc12010-09-30 16:53:18 +01001613void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001614{
Chris Wilsondfaae392010-09-22 10:31:52 +01001615 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001616 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001617 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001618
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001619 for (i = 0; i < I915_NUM_RINGS; i++)
1620 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001621
1622 /* Remove anything from the flushing lists. The GPU cache is likely
1623 * to be lost on reset along with the data, so simply move the
1624 * lost bo to the inactive list.
1625 */
1626 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001627 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001628 struct drm_i915_gem_object,
1629 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001630
Chris Wilson05394f32010-11-08 19:18:58 +00001631 obj->base.write_domain = 0;
1632 list_del_init(&obj->gpu_write_list);
1633 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001634 }
Chris Wilson9375e442010-09-19 12:21:28 +01001635
Chris Wilsondfaae392010-09-22 10:31:52 +01001636 /* Move everything out of the GPU domains to ensure we do any
1637 * necessary invalidation upon reuse.
1638 */
Chris Wilson05394f32010-11-08 19:18:58 +00001639 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001640 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001641 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001642 {
Chris Wilson05394f32010-11-08 19:18:58 +00001643 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001644 }
Chris Wilson069efc12010-09-30 16:53:18 +01001645
1646 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001647 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001648}
1649
1650/**
1651 * This function clears the request list as sequence numbers are passed.
1652 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001653void
Chris Wilsondb53a302011-02-03 11:57:46 +00001654i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001655{
Eric Anholt673a3942008-07-30 12:06:12 -07001656 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001657 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001658
Chris Wilsondb53a302011-02-03 11:57:46 +00001659 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001660 return;
1661
Chris Wilsondb53a302011-02-03 11:57:46 +00001662 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001663
Chris Wilson78501ea2010-10-27 12:18:21 +01001664 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001665
Chris Wilson076e2c02011-01-21 10:07:18 +00001666 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001667 if (seqno >= ring->sync_seqno[i])
1668 ring->sync_seqno[i] = 0;
1669
Zou Nan hai852835f2010-05-21 09:08:56 +08001670 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001671 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001672
Zou Nan hai852835f2010-05-21 09:08:56 +08001673 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001674 struct drm_i915_gem_request,
1675 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001676
Chris Wilsondfaae392010-09-22 10:31:52 +01001677 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001678 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001679
Chris Wilsondb53a302011-02-03 11:57:46 +00001680 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001681 /* We know the GPU must have read the request to have
1682 * sent us the seqno + interrupt, so use the position
1683 * of tail of the request to update the last known position
1684 * of the GPU head.
1685 */
1686 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001687
1688 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001689 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001690 kfree(request);
1691 }
1692
1693 /* Move any buffers on the active list that are no longer referenced
1694 * by the ringbuffer to the flushing/inactive lists as appropriate.
1695 */
1696 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001697 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001698
Akshay Joshi0206e352011-08-16 15:34:10 -04001699 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001700 struct drm_i915_gem_object,
1701 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001702
Chris Wilson05394f32010-11-08 19:18:58 +00001703 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001704 break;
1705
Chris Wilson05394f32010-11-08 19:18:58 +00001706 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001707 i915_gem_object_move_to_flushing(obj);
1708 else
1709 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001710 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001711
Chris Wilsondb53a302011-02-03 11:57:46 +00001712 if (unlikely(ring->trace_irq_seqno &&
1713 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001714 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001715 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001716 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001717
Chris Wilsondb53a302011-02-03 11:57:46 +00001718 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001719}
1720
1721void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001722i915_gem_retire_requests(struct drm_device *dev)
1723{
1724 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001725 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001726
Chris Wilsonbe726152010-07-23 23:18:50 +01001727 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001728 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001729
1730 /* We must be careful that during unbind() we do not
1731 * accidentally infinitely recurse into retire requests.
1732 * Currently:
1733 * retire -> free -> unbind -> wait -> retire_ring
1734 */
Chris Wilson05394f32010-11-08 19:18:58 +00001735 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001736 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001737 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001738 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001739 }
1740
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001741 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001742 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001743}
1744
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001745static void
Eric Anholt673a3942008-07-30 12:06:12 -07001746i915_gem_retire_work_handler(struct work_struct *work)
1747{
1748 drm_i915_private_t *dev_priv;
1749 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001750 bool idle;
1751 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001752
1753 dev_priv = container_of(work, drm_i915_private_t,
1754 mm.retire_work.work);
1755 dev = dev_priv->dev;
1756
Chris Wilson891b48c2010-09-29 12:26:37 +01001757 /* Come back later if the device is busy... */
1758 if (!mutex_trylock(&dev->struct_mutex)) {
1759 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1760 return;
1761 }
1762
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001763 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001764
Chris Wilson0a587052011-01-09 21:05:44 +00001765 /* Send a periodic flush down the ring so we don't hold onto GEM
1766 * objects indefinitely.
1767 */
1768 idle = true;
1769 for (i = 0; i < I915_NUM_RINGS; i++) {
1770 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1771
1772 if (!list_empty(&ring->gpu_write_list)) {
1773 struct drm_i915_gem_request *request;
1774 int ret;
1775
Chris Wilsondb53a302011-02-03 11:57:46 +00001776 ret = i915_gem_flush_ring(ring,
1777 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001778 request = kzalloc(sizeof(*request), GFP_KERNEL);
1779 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001780 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001781 kfree(request);
1782 }
1783
1784 idle &= list_empty(&ring->request_list);
1785 }
1786
1787 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001788 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001789
Eric Anholt673a3942008-07-30 12:06:12 -07001790 mutex_unlock(&dev->struct_mutex);
1791}
1792
Chris Wilsondb53a302011-02-03 11:57:46 +00001793/**
1794 * Waits for a sequence number to be signaled, and cleans up the
1795 * request and object lists appropriately for that event.
1796 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001797int
Chris Wilsondb53a302011-02-03 11:57:46 +00001798i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001799 uint32_t seqno,
1800 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001801{
Chris Wilsondb53a302011-02-03 11:57:46 +00001802 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001803 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001804 int ret = 0;
1805
1806 BUG_ON(seqno == 0);
1807
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001808 if (atomic_read(&dev_priv->mm.wedged)) {
1809 struct completion *x = &dev_priv->error_completion;
1810 bool recovery_complete;
1811 unsigned long flags;
1812
1813 /* Give the error handler a chance to run. */
1814 spin_lock_irqsave(&x->wait.lock, flags);
1815 recovery_complete = x->done > 0;
1816 spin_unlock_irqrestore(&x->wait.lock, flags);
1817
1818 return recovery_complete ? -EIO : -EAGAIN;
1819 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001820
Chris Wilson5d97eb62010-11-10 20:40:02 +00001821 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001822 struct drm_i915_gem_request *request;
1823
1824 request = kzalloc(sizeof(*request), GFP_KERNEL);
1825 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001826 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001827
Chris Wilsondb53a302011-02-03 11:57:46 +00001828 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001829 if (ret) {
1830 kfree(request);
1831 return ret;
1832 }
1833
1834 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001835 }
1836
Chris Wilson78501ea2010-10-27 12:18:21 +01001837 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001838 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001839 ier = I915_READ(DEIER) | I915_READ(GTIER);
1840 else
1841 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001842 if (!ier) {
1843 DRM_ERROR("something (likely vbetool) disabled "
1844 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001845 ring->dev->driver->irq_preinstall(ring->dev);
1846 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001847 }
1848
Chris Wilsondb53a302011-02-03 11:57:46 +00001849 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001850
Chris Wilsonb2223492010-10-27 15:27:33 +01001851 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001852 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001853 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001854 ret = wait_event_interruptible(ring->irq_queue,
1855 i915_seqno_passed(ring->get_seqno(ring), seqno)
1856 || atomic_read(&dev_priv->mm.wedged));
1857 else
1858 wait_event(ring->irq_queue,
1859 i915_seqno_passed(ring->get_seqno(ring), seqno)
1860 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001861
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001862 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001863 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1864 seqno) ||
1865 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001866 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001867 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001868
Chris Wilsondb53a302011-02-03 11:57:46 +00001869 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001870 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001871 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001872 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001873
Eric Anholt673a3942008-07-30 12:06:12 -07001874 /* Directly dispatch request retiring. While we have the work queue
1875 * to handle this, the waiter on a request often wants an associated
1876 * buffer to have made it to the inactive list, and we would need
1877 * a separate wait queue to handle that.
1878 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001879 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001880 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001881
1882 return ret;
1883}
1884
Daniel Vetter48764bf2009-09-15 22:57:32 +02001885/**
Eric Anholt673a3942008-07-30 12:06:12 -07001886 * Ensures that all rendering to the object has completed and the object is
1887 * safe to unbind from the GTT or access from the CPU.
1888 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001889int
Chris Wilsonce453d82011-02-21 14:43:56 +00001890i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001891{
Eric Anholt673a3942008-07-30 12:06:12 -07001892 int ret;
1893
Eric Anholte47c68e2008-11-14 13:35:19 -08001894 /* This function only exists to support waiting for existing rendering,
1895 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001896 */
Chris Wilson05394f32010-11-08 19:18:58 +00001897 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001898
1899 /* If there is rendering queued on the buffer being evicted, wait for
1900 * it.
1901 */
Chris Wilson05394f32010-11-08 19:18:58 +00001902 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001903 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1904 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001905 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001906 return ret;
1907 }
1908
1909 return 0;
1910}
1911
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001912static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
1913{
1914 u32 old_write_domain, old_read_domains;
1915
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001916 /* Act a barrier for all accesses through the GTT */
1917 mb();
1918
1919 /* Force a pagefault for domain tracking on next user access */
1920 i915_gem_release_mmap(obj);
1921
Keith Packardb97c3d92011-06-24 21:02:59 -07001922 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
1923 return;
1924
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001925 old_read_domains = obj->base.read_domains;
1926 old_write_domain = obj->base.write_domain;
1927
1928 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
1929 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
1930
1931 trace_i915_gem_object_change_domain(obj,
1932 old_read_domains,
1933 old_write_domain);
1934}
1935
Eric Anholt673a3942008-07-30 12:06:12 -07001936/**
1937 * Unbinds an object from the GTT aperture.
1938 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001939int
Chris Wilson05394f32010-11-08 19:18:58 +00001940i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001941{
Daniel Vetter7bddb012012-02-09 17:15:47 +01001942 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001943 int ret = 0;
1944
Chris Wilson05394f32010-11-08 19:18:58 +00001945 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001946 return 0;
1947
Chris Wilson05394f32010-11-08 19:18:58 +00001948 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07001949 DRM_ERROR("Attempting to unbind pinned buffer\n");
1950 return -EINVAL;
1951 }
1952
Chris Wilsona8198ee2011-04-13 22:04:09 +01001953 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01001954 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07001955 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01001956 /* Continue on if we fail due to EIO, the GPU is hung so we
1957 * should be safe and we need to cleanup or else we might
1958 * cause memory corruption through use-after-free.
1959 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01001960
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001961 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01001962
1963 /* Move the object to the CPU domain to ensure that
1964 * any possible CPU writes while it's not in the GTT
1965 * are flushed when we go to remap it.
1966 */
1967 if (ret == 0)
1968 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1969 if (ret == -ERESTARTSYS)
1970 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01001971 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01001972 /* In the event of a disaster, abandon all caches and
1973 * hope for the best.
1974 */
Chris Wilson812ed4922010-09-30 15:08:57 +01001975 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001976 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01001977 }
Eric Anholt673a3942008-07-30 12:06:12 -07001978
Daniel Vetter96b47b62009-12-15 17:50:00 +01001979 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00001980 ret = i915_gem_object_put_fence(obj);
1981 if (ret == -ERESTARTSYS)
1982 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01001983
Chris Wilsondb53a302011-02-03 11:57:46 +00001984 trace_i915_gem_object_unbind(obj);
1985
Daniel Vetter74898d72012-02-15 23:50:22 +01001986 if (obj->has_global_gtt_mapping)
1987 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001988 if (obj->has_aliasing_ppgtt_mapping) {
1989 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
1990 obj->has_aliasing_ppgtt_mapping = 0;
1991 }
Daniel Vetter74163902012-02-15 23:50:21 +01001992 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001993
Chris Wilsone5281cc2010-10-28 13:45:36 +01001994 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001995
Chris Wilson6299f992010-11-24 12:23:44 +00001996 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00001997 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01001998 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00001999 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002000
Chris Wilson05394f32010-11-08 19:18:58 +00002001 drm_mm_put_block(obj->gtt_space);
2002 obj->gtt_space = NULL;
2003 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002004
Chris Wilson05394f32010-11-08 19:18:58 +00002005 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002006 i915_gem_object_truncate(obj);
2007
Chris Wilson8dc17752010-07-23 23:18:51 +01002008 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002009}
2010
Chris Wilson88241782011-01-07 17:09:48 +00002011int
Chris Wilsondb53a302011-02-03 11:57:46 +00002012i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002013 uint32_t invalidate_domains,
2014 uint32_t flush_domains)
2015{
Chris Wilson88241782011-01-07 17:09:48 +00002016 int ret;
2017
Chris Wilson36d527d2011-03-19 22:26:49 +00002018 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2019 return 0;
2020
Chris Wilsondb53a302011-02-03 11:57:46 +00002021 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2022
Chris Wilson88241782011-01-07 17:09:48 +00002023 ret = ring->flush(ring, invalidate_domains, flush_domains);
2024 if (ret)
2025 return ret;
2026
Chris Wilson36d527d2011-03-19 22:26:49 +00002027 if (flush_domains & I915_GEM_GPU_DOMAINS)
2028 i915_gem_process_flushing_list(ring, flush_domains);
2029
Chris Wilson88241782011-01-07 17:09:48 +00002030 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002031}
2032
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002033static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002034{
Chris Wilson88241782011-01-07 17:09:48 +00002035 int ret;
2036
Chris Wilson395b70b2010-10-28 21:28:46 +01002037 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002038 return 0;
2039
Chris Wilson88241782011-01-07 17:09:48 +00002040 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002041 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002042 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002043 if (ret)
2044 return ret;
2045 }
2046
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002047 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2048 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002049}
2050
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002051int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002052{
2053 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002054 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002055
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002056 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002057 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002058 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002059 if (ret)
2060 return ret;
2061 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002062
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002063 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002064}
2065
Daniel Vetterc6642782010-11-12 13:46:18 +00002066static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2067 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002068{
Chris Wilson05394f32010-11-08 19:18:58 +00002069 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002070 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002071 u32 size = obj->gtt_space->size;
2072 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002073 uint64_t val;
2074
Chris Wilson05394f32010-11-08 19:18:58 +00002075 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002076 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002077 val |= obj->gtt_offset & 0xfffff000;
2078 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002079 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2080
Chris Wilson05394f32010-11-08 19:18:58 +00002081 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002082 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2083 val |= I965_FENCE_REG_VALID;
2084
Daniel Vetterc6642782010-11-12 13:46:18 +00002085 if (pipelined) {
2086 int ret = intel_ring_begin(pipelined, 6);
2087 if (ret)
2088 return ret;
2089
2090 intel_ring_emit(pipelined, MI_NOOP);
2091 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2092 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2093 intel_ring_emit(pipelined, (u32)val);
2094 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2095 intel_ring_emit(pipelined, (u32)(val >> 32));
2096 intel_ring_advance(pipelined);
2097 } else
2098 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2099
2100 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002101}
2102
Daniel Vetterc6642782010-11-12 13:46:18 +00002103static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2104 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002105{
Chris Wilson05394f32010-11-08 19:18:58 +00002106 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002107 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002108 u32 size = obj->gtt_space->size;
2109 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002110 uint64_t val;
2111
Chris Wilson05394f32010-11-08 19:18:58 +00002112 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002113 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002114 val |= obj->gtt_offset & 0xfffff000;
2115 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2116 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002117 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2118 val |= I965_FENCE_REG_VALID;
2119
Daniel Vetterc6642782010-11-12 13:46:18 +00002120 if (pipelined) {
2121 int ret = intel_ring_begin(pipelined, 6);
2122 if (ret)
2123 return ret;
2124
2125 intel_ring_emit(pipelined, MI_NOOP);
2126 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2127 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2128 intel_ring_emit(pipelined, (u32)val);
2129 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2130 intel_ring_emit(pipelined, (u32)(val >> 32));
2131 intel_ring_advance(pipelined);
2132 } else
2133 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2134
2135 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002136}
2137
Daniel Vetterc6642782010-11-12 13:46:18 +00002138static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2139 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002140{
Chris Wilson05394f32010-11-08 19:18:58 +00002141 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002142 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002143 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002144 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002145 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002146
Daniel Vetterc6642782010-11-12 13:46:18 +00002147 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2148 (size & -size) != size ||
2149 (obj->gtt_offset & (size - 1)),
2150 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2151 obj->gtt_offset, obj->map_and_fenceable, size))
2152 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002153
Daniel Vetterc6642782010-11-12 13:46:18 +00002154 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002155 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002156 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002157 tile_width = 512;
2158
2159 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002160 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002161 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002162
Chris Wilson05394f32010-11-08 19:18:58 +00002163 val = obj->gtt_offset;
2164 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002165 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002166 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002167 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2168 val |= I830_FENCE_REG_VALID;
2169
Chris Wilson05394f32010-11-08 19:18:58 +00002170 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002171 if (fence_reg < 8)
2172 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002173 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002174 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002175
2176 if (pipelined) {
2177 int ret = intel_ring_begin(pipelined, 4);
2178 if (ret)
2179 return ret;
2180
2181 intel_ring_emit(pipelined, MI_NOOP);
2182 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2183 intel_ring_emit(pipelined, fence_reg);
2184 intel_ring_emit(pipelined, val);
2185 intel_ring_advance(pipelined);
2186 } else
2187 I915_WRITE(fence_reg, val);
2188
2189 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002190}
2191
Daniel Vetterc6642782010-11-12 13:46:18 +00002192static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2193 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002194{
Chris Wilson05394f32010-11-08 19:18:58 +00002195 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002196 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002197 u32 size = obj->gtt_space->size;
2198 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002199 uint32_t val;
2200 uint32_t pitch_val;
2201
Daniel Vetterc6642782010-11-12 13:46:18 +00002202 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2203 (size & -size) != size ||
2204 (obj->gtt_offset & (size - 1)),
2205 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2206 obj->gtt_offset, size))
2207 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002208
Chris Wilson05394f32010-11-08 19:18:58 +00002209 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002210 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002211
Chris Wilson05394f32010-11-08 19:18:58 +00002212 val = obj->gtt_offset;
2213 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002214 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002215 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002216 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2217 val |= I830_FENCE_REG_VALID;
2218
Daniel Vetterc6642782010-11-12 13:46:18 +00002219 if (pipelined) {
2220 int ret = intel_ring_begin(pipelined, 4);
2221 if (ret)
2222 return ret;
2223
2224 intel_ring_emit(pipelined, MI_NOOP);
2225 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2226 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2227 intel_ring_emit(pipelined, val);
2228 intel_ring_advance(pipelined);
2229 } else
2230 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2231
2232 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002233}
2234
Chris Wilsond9e86c02010-11-10 16:40:20 +00002235static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2236{
2237 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2238}
2239
2240static int
2241i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002242 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002243{
2244 int ret;
2245
2246 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002247 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002248 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002249 0, obj->base.write_domain);
2250 if (ret)
2251 return ret;
2252 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002253
2254 obj->fenced_gpu_access = false;
2255 }
2256
2257 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2258 if (!ring_passed_seqno(obj->last_fenced_ring,
2259 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002260 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002261 obj->last_fenced_seqno,
2262 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002263 if (ret)
2264 return ret;
2265 }
2266
2267 obj->last_fenced_seqno = 0;
2268 obj->last_fenced_ring = NULL;
2269 }
2270
Chris Wilson63256ec2011-01-04 18:42:07 +00002271 /* Ensure that all CPU reads are completed before installing a fence
2272 * and all writes before removing the fence.
2273 */
2274 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2275 mb();
2276
Chris Wilsond9e86c02010-11-10 16:40:20 +00002277 return 0;
2278}
2279
2280int
2281i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2282{
2283 int ret;
2284
2285 if (obj->tiling_mode)
2286 i915_gem_release_mmap(obj);
2287
Chris Wilsonce453d82011-02-21 14:43:56 +00002288 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002289 if (ret)
2290 return ret;
2291
2292 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2293 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002294
2295 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002296 i915_gem_clear_fence_reg(obj->base.dev,
2297 &dev_priv->fence_regs[obj->fence_reg]);
2298
2299 obj->fence_reg = I915_FENCE_REG_NONE;
2300 }
2301
2302 return 0;
2303}
2304
2305static struct drm_i915_fence_reg *
2306i915_find_fence_reg(struct drm_device *dev,
2307 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002308{
Daniel Vetterae3db242010-02-19 11:51:58 +01002309 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002310 struct drm_i915_fence_reg *reg, *first, *avail;
2311 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002312
2313 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002314 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002315 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2316 reg = &dev_priv->fence_regs[i];
2317 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002318 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002319
Chris Wilson1690e1e2011-12-14 13:57:08 +01002320 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002321 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002322 }
2323
Chris Wilsond9e86c02010-11-10 16:40:20 +00002324 if (avail == NULL)
2325 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002326
2327 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002328 avail = first = NULL;
2329 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002330 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002331 continue;
2332
Chris Wilsond9e86c02010-11-10 16:40:20 +00002333 if (first == NULL)
2334 first = reg;
2335
2336 if (!pipelined ||
2337 !reg->obj->last_fenced_ring ||
2338 reg->obj->last_fenced_ring == pipelined) {
2339 avail = reg;
2340 break;
2341 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002342 }
2343
Chris Wilsond9e86c02010-11-10 16:40:20 +00002344 if (avail == NULL)
2345 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002346
Chris Wilsona00b10c2010-09-24 21:15:47 +01002347 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002348}
2349
Jesse Barnesde151cf2008-11-12 10:03:55 -08002350/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002351 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002352 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002353 * @pipelined: ring on which to queue the change, or NULL for CPU access
2354 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002355 *
2356 * When mapping objects through the GTT, userspace wants to be able to write
2357 * to them without having to worry about swizzling if the object is tiled.
2358 *
2359 * This function walks the fence regs looking for a free one for @obj,
2360 * stealing one if it can't find any.
2361 *
2362 * It then sets up the reg based on the object's properties: address, pitch
2363 * and tiling format.
2364 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002365int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002366i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002367 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002368{
Chris Wilson05394f32010-11-08 19:18:58 +00002369 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002370 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002371 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002372 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002373
Chris Wilson6bda10d2010-12-05 21:04:18 +00002374 /* XXX disable pipelining. There are bugs. Shocking. */
2375 pipelined = NULL;
2376
Chris Wilsond9e86c02010-11-10 16:40:20 +00002377 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002378 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2379 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002380 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002381
Chris Wilson29c5a582011-03-17 15:23:22 +00002382 if (obj->tiling_changed) {
2383 ret = i915_gem_object_flush_fence(obj, pipelined);
2384 if (ret)
2385 return ret;
2386
2387 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2388 pipelined = NULL;
2389
2390 if (pipelined) {
2391 reg->setup_seqno =
2392 i915_gem_next_request_seqno(pipelined);
2393 obj->last_fenced_seqno = reg->setup_seqno;
2394 obj->last_fenced_ring = pipelined;
2395 }
2396
2397 goto update;
2398 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002399
2400 if (!pipelined) {
2401 if (reg->setup_seqno) {
2402 if (!ring_passed_seqno(obj->last_fenced_ring,
2403 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002404 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002405 reg->setup_seqno,
2406 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002407 if (ret)
2408 return ret;
2409 }
2410
2411 reg->setup_seqno = 0;
2412 }
2413 } else if (obj->last_fenced_ring &&
2414 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002415 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002416 if (ret)
2417 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002418 }
2419
Eric Anholta09ba7f2009-08-29 12:49:51 -07002420 return 0;
2421 }
2422
Chris Wilsond9e86c02010-11-10 16:40:20 +00002423 reg = i915_find_fence_reg(dev, pipelined);
2424 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002425 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002426
Chris Wilsonce453d82011-02-21 14:43:56 +00002427 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002428 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002429 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002430
Chris Wilsond9e86c02010-11-10 16:40:20 +00002431 if (reg->obj) {
2432 struct drm_i915_gem_object *old = reg->obj;
2433
2434 drm_gem_object_reference(&old->base);
2435
2436 if (old->tiling_mode)
2437 i915_gem_release_mmap(old);
2438
Chris Wilsonce453d82011-02-21 14:43:56 +00002439 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002440 if (ret) {
2441 drm_gem_object_unreference(&old->base);
2442 return ret;
2443 }
2444
2445 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2446 pipelined = NULL;
2447
2448 old->fence_reg = I915_FENCE_REG_NONE;
2449 old->last_fenced_ring = pipelined;
2450 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002451 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002452
2453 drm_gem_object_unreference(&old->base);
2454 } else if (obj->last_fenced_seqno == 0)
2455 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002456
Jesse Barnesde151cf2008-11-12 10:03:55 -08002457 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002458 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2459 obj->fence_reg = reg - dev_priv->fence_regs;
2460 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002461
Chris Wilsond9e86c02010-11-10 16:40:20 +00002462 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002463 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002464 obj->last_fenced_seqno = reg->setup_seqno;
2465
2466update:
2467 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002468 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002469 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002470 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002471 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002472 break;
2473 case 5:
2474 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002475 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002476 break;
2477 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002478 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002479 break;
2480 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002481 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002482 break;
2483 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002484
Daniel Vetterc6642782010-11-12 13:46:18 +00002485 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002486}
2487
2488/**
2489 * i915_gem_clear_fence_reg - clear out fence register info
2490 * @obj: object to clear
2491 *
2492 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002493 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002494 */
2495static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002496i915_gem_clear_fence_reg(struct drm_device *dev,
2497 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002498{
Jesse Barnes79e53942008-11-07 14:24:08 -08002499 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002500 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002501
Chris Wilsone259bef2010-09-17 00:32:02 +01002502 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002503 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002504 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002505 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002506 break;
2507 case 5:
2508 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002509 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002510 break;
2511 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002512 if (fence_reg >= 8)
2513 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002514 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002515 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002516 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002517
2518 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002519 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002520 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002521
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002522 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002523 reg->obj = NULL;
2524 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002525 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002526}
2527
2528/**
Eric Anholt673a3942008-07-30 12:06:12 -07002529 * Finds free space in the GTT aperture and binds the object there.
2530 */
2531static int
Chris Wilson05394f32010-11-08 19:18:58 +00002532i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002533 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002534 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002535{
Chris Wilson05394f32010-11-08 19:18:58 +00002536 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002537 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002538 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002539 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002540 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002541 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002542 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002543
Chris Wilson05394f32010-11-08 19:18:58 +00002544 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002545 DRM_ERROR("Attempting to bind a purgeable object\n");
2546 return -EINVAL;
2547 }
2548
Chris Wilsone28f8712011-07-18 13:11:49 -07002549 fence_size = i915_gem_get_gtt_size(dev,
2550 obj->base.size,
2551 obj->tiling_mode);
2552 fence_alignment = i915_gem_get_gtt_alignment(dev,
2553 obj->base.size,
2554 obj->tiling_mode);
2555 unfenced_alignment =
2556 i915_gem_get_unfenced_gtt_alignment(dev,
2557 obj->base.size,
2558 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002559
Eric Anholt673a3942008-07-30 12:06:12 -07002560 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002561 alignment = map_and_fenceable ? fence_alignment :
2562 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002563 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002564 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2565 return -EINVAL;
2566 }
2567
Chris Wilson05394f32010-11-08 19:18:58 +00002568 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002569
Chris Wilson654fc602010-05-27 13:18:21 +01002570 /* If the object is bigger than the entire aperture, reject it early
2571 * before evicting everything in a vain attempt to find space.
2572 */
Chris Wilson05394f32010-11-08 19:18:58 +00002573 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002574 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002575 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2576 return -E2BIG;
2577 }
2578
Eric Anholt673a3942008-07-30 12:06:12 -07002579 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002580 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002581 free_space =
2582 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002583 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002584 dev_priv->mm.gtt_mappable_end,
2585 0);
2586 else
2587 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002588 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002589
2590 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002591 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002592 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002593 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002594 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002595 dev_priv->mm.gtt_mappable_end,
2596 0);
2597 else
Chris Wilson05394f32010-11-08 19:18:58 +00002598 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002599 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002600 }
Chris Wilson05394f32010-11-08 19:18:58 +00002601 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002602 /* If the gtt is empty and we're still having trouble
2603 * fitting our object in, we're out of memory.
2604 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002605 ret = i915_gem_evict_something(dev, size, alignment,
2606 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002607 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002608 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002609
Eric Anholt673a3942008-07-30 12:06:12 -07002610 goto search_free;
2611 }
2612
Chris Wilsone5281cc2010-10-28 13:45:36 +01002613 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002614 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002615 drm_mm_put_block(obj->gtt_space);
2616 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002617
2618 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002619 /* first try to reclaim some memory by clearing the GTT */
2620 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002621 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002622 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002623 if (gfpmask) {
2624 gfpmask = 0;
2625 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002626 }
2627
Chris Wilson809b6332011-01-10 17:33:15 +00002628 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002629 }
2630
2631 goto search_free;
2632 }
2633
Eric Anholt673a3942008-07-30 12:06:12 -07002634 return ret;
2635 }
2636
Daniel Vetter74163902012-02-15 23:50:21 +01002637 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002638 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002639 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002640 drm_mm_put_block(obj->gtt_space);
2641 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002642
Chris Wilson809b6332011-01-10 17:33:15 +00002643 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002644 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002645
2646 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002647 }
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002648
2649 if (!dev_priv->mm.aliasing_ppgtt)
2650 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002651
Chris Wilson6299f992010-11-24 12:23:44 +00002652 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002653 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002654
Eric Anholt673a3942008-07-30 12:06:12 -07002655 /* Assert that the object is not currently in any GPU domain. As it
2656 * wasn't in the GTT, there shouldn't be any way it could have been in
2657 * a GPU cache
2658 */
Chris Wilson05394f32010-11-08 19:18:58 +00002659 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2660 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002661
Chris Wilson6299f992010-11-24 12:23:44 +00002662 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002663
Daniel Vetter75e9e912010-11-04 17:11:09 +01002664 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002665 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002666 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002667
Daniel Vetter75e9e912010-11-04 17:11:09 +01002668 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002669 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002670
Chris Wilson05394f32010-11-08 19:18:58 +00002671 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002672
Chris Wilsondb53a302011-02-03 11:57:46 +00002673 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002674 return 0;
2675}
2676
2677void
Chris Wilson05394f32010-11-08 19:18:58 +00002678i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002679{
Eric Anholt673a3942008-07-30 12:06:12 -07002680 /* If we don't have a page list set up, then we're not pinned
2681 * to GPU, and we can ignore the cache flush because it'll happen
2682 * again at bind time.
2683 */
Chris Wilson05394f32010-11-08 19:18:58 +00002684 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002685 return;
2686
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002687 /* If the GPU is snooping the contents of the CPU cache,
2688 * we do not need to manually clear the CPU cache lines. However,
2689 * the caches are only snooped when the render cache is
2690 * flushed/invalidated. As we always have to emit invalidations
2691 * and flushes when moving into and out of the RENDER domain, correct
2692 * snooping behaviour occurs naturally as the result of our domain
2693 * tracking.
2694 */
2695 if (obj->cache_level != I915_CACHE_NONE)
2696 return;
2697
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002698 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002699
Chris Wilson05394f32010-11-08 19:18:58 +00002700 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002701}
2702
Eric Anholte47c68e2008-11-14 13:35:19 -08002703/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002704static int
Chris Wilson3619df02010-11-28 15:37:17 +00002705i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002706{
Chris Wilson05394f32010-11-08 19:18:58 +00002707 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002708 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002709
2710 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002711 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002712}
2713
2714/** Flushes the GTT write domain for the object if it's dirty. */
2715static void
Chris Wilson05394f32010-11-08 19:18:58 +00002716i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002717{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002718 uint32_t old_write_domain;
2719
Chris Wilson05394f32010-11-08 19:18:58 +00002720 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002721 return;
2722
Chris Wilson63256ec2011-01-04 18:42:07 +00002723 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002724 * to it immediately go to main memory as far as we know, so there's
2725 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002726 *
2727 * However, we do have to enforce the order so that all writes through
2728 * the GTT land before any writes to the device, such as updates to
2729 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002730 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002731 wmb();
2732
Chris Wilson05394f32010-11-08 19:18:58 +00002733 old_write_domain = obj->base.write_domain;
2734 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002735
2736 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002737 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002738 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002739}
2740
2741/** Flushes the CPU write domain for the object if it's dirty. */
2742static void
Chris Wilson05394f32010-11-08 19:18:58 +00002743i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002744{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002745 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002746
Chris Wilson05394f32010-11-08 19:18:58 +00002747 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002748 return;
2749
2750 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002751 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002752 old_write_domain = obj->base.write_domain;
2753 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002754
2755 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002756 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002757 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002758}
2759
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002760/**
2761 * Moves a single object to the GTT read, and possibly write domain.
2762 *
2763 * This function returns when the move is complete, including waiting on
2764 * flushes to occur.
2765 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002766int
Chris Wilson20217462010-11-23 15:26:33 +00002767i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002768{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002769 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002770 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002771
Eric Anholt02354392008-11-26 13:58:13 -08002772 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002773 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002774 return -EINVAL;
2775
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002776 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2777 return 0;
2778
Chris Wilson88241782011-01-07 17:09:48 +00002779 ret = i915_gem_object_flush_gpu_write_domain(obj);
2780 if (ret)
2781 return ret;
2782
Chris Wilson87ca9c82010-12-02 09:42:56 +00002783 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002784 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002785 if (ret)
2786 return ret;
2787 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002788
Chris Wilson72133422010-09-13 23:56:38 +01002789 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002790
Chris Wilson05394f32010-11-08 19:18:58 +00002791 old_write_domain = obj->base.write_domain;
2792 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002793
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002794 /* It should now be out of any other write domains, and we can update
2795 * the domain values for our changes.
2796 */
Chris Wilson05394f32010-11-08 19:18:58 +00002797 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2798 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002799 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002800 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2801 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2802 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002803 }
2804
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002805 trace_i915_gem_object_change_domain(obj,
2806 old_read_domains,
2807 old_write_domain);
2808
Eric Anholte47c68e2008-11-14 13:35:19 -08002809 return 0;
2810}
2811
Chris Wilsone4ffd172011-04-04 09:44:39 +01002812int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2813 enum i915_cache_level cache_level)
2814{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002815 struct drm_device *dev = obj->base.dev;
2816 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002817 int ret;
2818
2819 if (obj->cache_level == cache_level)
2820 return 0;
2821
2822 if (obj->pin_count) {
2823 DRM_DEBUG("can not change the cache level of pinned objects\n");
2824 return -EBUSY;
2825 }
2826
2827 if (obj->gtt_space) {
2828 ret = i915_gem_object_finish_gpu(obj);
2829 if (ret)
2830 return ret;
2831
2832 i915_gem_object_finish_gtt(obj);
2833
2834 /* Before SandyBridge, you could not use tiling or fence
2835 * registers with snooped memory, so relinquish any fences
2836 * currently pointing to our region in the aperture.
2837 */
2838 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2839 ret = i915_gem_object_put_fence(obj);
2840 if (ret)
2841 return ret;
2842 }
2843
Daniel Vetter74898d72012-02-15 23:50:22 +01002844 if (obj->has_global_gtt_mapping)
2845 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002846 if (obj->has_aliasing_ppgtt_mapping)
2847 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2848 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002849 }
2850
2851 if (cache_level == I915_CACHE_NONE) {
2852 u32 old_read_domains, old_write_domain;
2853
2854 /* If we're coming from LLC cached, then we haven't
2855 * actually been tracking whether the data is in the
2856 * CPU cache or not, since we only allow one bit set
2857 * in obj->write_domain and have been skipping the clflushes.
2858 * Just set it to the CPU cache for now.
2859 */
2860 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2861 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2862
2863 old_read_domains = obj->base.read_domains;
2864 old_write_domain = obj->base.write_domain;
2865
2866 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2867 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2868
2869 trace_i915_gem_object_change_domain(obj,
2870 old_read_domains,
2871 old_write_domain);
2872 }
2873
2874 obj->cache_level = cache_level;
2875 return 0;
2876}
2877
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002878/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002879 * Prepare buffer for display plane (scanout, cursors, etc).
2880 * Can be called from an uninterruptible phase (modesetting) and allows
2881 * any flushes to be pipelined (for pageflips).
2882 *
2883 * For the display plane, we want to be in the GTT but out of any write
2884 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
2885 * ability to pipeline the waits, pinning and any additional subtleties
2886 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002887 */
2888int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002889i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2890 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002891 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002892{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002893 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002894 int ret;
2895
Chris Wilson88241782011-01-07 17:09:48 +00002896 ret = i915_gem_object_flush_gpu_write_domain(obj);
2897 if (ret)
2898 return ret;
2899
Chris Wilson0be73282010-12-06 14:36:27 +00002900 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002901 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07002902 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002903 return ret;
2904 }
2905
Eric Anholta7ef0642011-03-29 16:59:54 -07002906 /* The display engine is not coherent with the LLC cache on gen6. As
2907 * a result, we make sure that the pinning that is about to occur is
2908 * done with uncached PTEs. This is lowest common denominator for all
2909 * chipsets.
2910 *
2911 * However for gen6+, we could do better by using the GFDT bit instead
2912 * of uncaching, which would allow us to flush all the LLC-cached data
2913 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2914 */
2915 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2916 if (ret)
2917 return ret;
2918
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002919 /* As the user may map the buffer once pinned in the display plane
2920 * (e.g. libkms for the bootup splash), we have to ensure that we
2921 * always use map_and_fenceable for all scanout buffers.
2922 */
2923 ret = i915_gem_object_pin(obj, alignment, true);
2924 if (ret)
2925 return ret;
2926
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002927 i915_gem_object_flush_cpu_write_domain(obj);
2928
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002929 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002930 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002931
2932 /* It should now be out of any other write domains, and we can update
2933 * the domain values for our changes.
2934 */
2935 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002936 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002937
2938 trace_i915_gem_object_change_domain(obj,
2939 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002940 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002941
2942 return 0;
2943}
2944
Chris Wilson85345512010-11-13 09:49:11 +00002945int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002946i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002947{
Chris Wilson88241782011-01-07 17:09:48 +00002948 int ret;
2949
Chris Wilsona8198ee2011-04-13 22:04:09 +01002950 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002951 return 0;
2952
Chris Wilson88241782011-01-07 17:09:48 +00002953 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002954 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002955 if (ret)
2956 return ret;
2957 }
Chris Wilson85345512010-11-13 09:49:11 +00002958
Chris Wilsonc501ae72011-12-14 13:57:23 +01002959 ret = i915_gem_object_wait_rendering(obj);
2960 if (ret)
2961 return ret;
2962
Chris Wilsona8198ee2011-04-13 22:04:09 +01002963 /* Ensure that we invalidate the GPU's caches and TLBs. */
2964 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002965 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002966}
2967
Eric Anholte47c68e2008-11-14 13:35:19 -08002968/**
2969 * Moves a single object to the CPU read, and possibly write domain.
2970 *
2971 * This function returns when the move is complete, including waiting on
2972 * flushes to occur.
2973 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002974int
Chris Wilson919926a2010-11-12 13:42:53 +00002975i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002976{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002977 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002978 int ret;
2979
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002980 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2981 return 0;
2982
Chris Wilson88241782011-01-07 17:09:48 +00002983 ret = i915_gem_object_flush_gpu_write_domain(obj);
2984 if (ret)
2985 return ret;
2986
Chris Wilsonce453d82011-02-21 14:43:56 +00002987 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01002988 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08002989 return ret;
2990
2991 i915_gem_object_flush_gtt_write_domain(obj);
2992
2993 /* If we have a partially-valid cache of the object in the CPU,
2994 * finish invalidating it and free the per-page flags.
2995 */
2996 i915_gem_object_set_to_full_cpu_read_domain(obj);
2997
Chris Wilson05394f32010-11-08 19:18:58 +00002998 old_write_domain = obj->base.write_domain;
2999 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003000
Eric Anholte47c68e2008-11-14 13:35:19 -08003001 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003002 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003003 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003004
Chris Wilson05394f32010-11-08 19:18:58 +00003005 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003006 }
3007
3008 /* It should now be out of any other write domains, and we can update
3009 * the domain values for our changes.
3010 */
Chris Wilson05394f32010-11-08 19:18:58 +00003011 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003012
3013 /* If we're writing through the CPU, then the GPU read domains will
3014 * need to be invalidated at next use.
3015 */
3016 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003017 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3018 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003019 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003020
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003021 trace_i915_gem_object_change_domain(obj,
3022 old_read_domains,
3023 old_write_domain);
3024
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003025 return 0;
3026}
3027
Eric Anholt673a3942008-07-30 12:06:12 -07003028/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003029 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003030 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003031 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3032 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3033 */
3034static void
Chris Wilson05394f32010-11-08 19:18:58 +00003035i915_gem_object_set_to_full_cpu_read_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003036{
Chris Wilson05394f32010-11-08 19:18:58 +00003037 if (!obj->page_cpu_valid)
Eric Anholte47c68e2008-11-14 13:35:19 -08003038 return;
3039
3040 /* If we're partially in the CPU read domain, finish moving it in.
3041 */
Chris Wilson05394f32010-11-08 19:18:58 +00003042 if (obj->base.read_domains & I915_GEM_DOMAIN_CPU) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003043 int i;
3044
Chris Wilson05394f32010-11-08 19:18:58 +00003045 for (i = 0; i <= (obj->base.size - 1) / PAGE_SIZE; i++) {
3046 if (obj->page_cpu_valid[i])
Eric Anholte47c68e2008-11-14 13:35:19 -08003047 continue;
Chris Wilson05394f32010-11-08 19:18:58 +00003048 drm_clflush_pages(obj->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003049 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003050 }
3051
3052 /* Free the page_cpu_valid mappings which are now stale, whether
3053 * or not we've got I915_GEM_DOMAIN_CPU.
3054 */
Chris Wilson05394f32010-11-08 19:18:58 +00003055 kfree(obj->page_cpu_valid);
3056 obj->page_cpu_valid = NULL;
Eric Anholte47c68e2008-11-14 13:35:19 -08003057}
3058
3059/**
3060 * Set the CPU read domain on a range of the object.
3061 *
3062 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3063 * not entirely valid. The page_cpu_valid member of the object flags which
3064 * pages have been flushed, and will be respected by
3065 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3066 * of the whole object.
3067 *
3068 * This function returns when the move is complete, including waiting on
3069 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003070 */
3071static int
Chris Wilson05394f32010-11-08 19:18:58 +00003072i915_gem_object_set_cpu_read_domain_range(struct drm_i915_gem_object *obj,
Eric Anholte47c68e2008-11-14 13:35:19 -08003073 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003074{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003075 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003076 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003077
Chris Wilson05394f32010-11-08 19:18:58 +00003078 if (offset == 0 && size == obj->base.size)
Eric Anholte47c68e2008-11-14 13:35:19 -08003079 return i915_gem_object_set_to_cpu_domain(obj, 0);
3080
Chris Wilson88241782011-01-07 17:09:48 +00003081 ret = i915_gem_object_flush_gpu_write_domain(obj);
3082 if (ret)
3083 return ret;
3084
Chris Wilsonce453d82011-02-21 14:43:56 +00003085 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003086 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003087 return ret;
Daniel Vetterde18a292010-11-27 22:30:41 +01003088
Eric Anholte47c68e2008-11-14 13:35:19 -08003089 i915_gem_object_flush_gtt_write_domain(obj);
3090
3091 /* If we're already fully in the CPU read domain, we're done. */
Chris Wilson05394f32010-11-08 19:18:58 +00003092 if (obj->page_cpu_valid == NULL &&
3093 (obj->base.read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003094 return 0;
3095
Eric Anholte47c68e2008-11-14 13:35:19 -08003096 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3097 * newly adding I915_GEM_DOMAIN_CPU
3098 */
Chris Wilson05394f32010-11-08 19:18:58 +00003099 if (obj->page_cpu_valid == NULL) {
3100 obj->page_cpu_valid = kzalloc(obj->base.size / PAGE_SIZE,
3101 GFP_KERNEL);
3102 if (obj->page_cpu_valid == NULL)
Eric Anholte47c68e2008-11-14 13:35:19 -08003103 return -ENOMEM;
Chris Wilson05394f32010-11-08 19:18:58 +00003104 } else if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
3105 memset(obj->page_cpu_valid, 0, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003106
3107 /* Flush the cache on any pages that are still invalid from the CPU's
3108 * perspective.
3109 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003110 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3111 i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00003112 if (obj->page_cpu_valid[i])
Eric Anholt673a3942008-07-30 12:06:12 -07003113 continue;
3114
Chris Wilson05394f32010-11-08 19:18:58 +00003115 drm_clflush_pages(obj->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003116
Chris Wilson05394f32010-11-08 19:18:58 +00003117 obj->page_cpu_valid[i] = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07003118 }
3119
Eric Anholte47c68e2008-11-14 13:35:19 -08003120 /* It should now be out of any other write domains, and we can update
3121 * the domain values for our changes.
3122 */
Chris Wilson05394f32010-11-08 19:18:58 +00003123 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003124
Chris Wilson05394f32010-11-08 19:18:58 +00003125 old_read_domains = obj->base.read_domains;
3126 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003127
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003128 trace_i915_gem_object_change_domain(obj,
3129 old_read_domains,
Chris Wilson05394f32010-11-08 19:18:58 +00003130 obj->base.write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003131
Eric Anholt673a3942008-07-30 12:06:12 -07003132 return 0;
3133}
3134
Eric Anholt673a3942008-07-30 12:06:12 -07003135/* Throttle our rendering by waiting until the ring has completed our requests
3136 * emitted over 20 msec ago.
3137 *
Eric Anholtb9624422009-06-03 07:27:35 +00003138 * Note that if we were to use the current jiffies each time around the loop,
3139 * we wouldn't escape the function with any frames outstanding if the time to
3140 * render a frame was over 20ms.
3141 *
Eric Anholt673a3942008-07-30 12:06:12 -07003142 * This should get us reasonable parallelism between CPU and GPU but also
3143 * relatively low latency when blocking on a particular request to finish.
3144 */
3145static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003146i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003147{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003148 struct drm_i915_private *dev_priv = dev->dev_private;
3149 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003150 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003151 struct drm_i915_gem_request *request;
3152 struct intel_ring_buffer *ring = NULL;
3153 u32 seqno = 0;
3154 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003155
Chris Wilsone110e8d2011-01-26 15:39:14 +00003156 if (atomic_read(&dev_priv->mm.wedged))
3157 return -EIO;
3158
Chris Wilson1c255952010-09-26 11:03:27 +01003159 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003160 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003161 if (time_after_eq(request->emitted_jiffies, recent_enough))
3162 break;
3163
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003164 ring = request->ring;
3165 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003166 }
Chris Wilson1c255952010-09-26 11:03:27 +01003167 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003168
3169 if (seqno == 0)
3170 return 0;
3171
3172 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003173 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003174 /* And wait for the seqno passing without holding any locks and
3175 * causing extra latency for others. This is safe as the irq
3176 * generation is designed to be run atomically and so is
3177 * lockless.
3178 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003179 if (ring->irq_get(ring)) {
3180 ret = wait_event_interruptible(ring->irq_queue,
3181 i915_seqno_passed(ring->get_seqno(ring), seqno)
3182 || atomic_read(&dev_priv->mm.wedged));
3183 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003184
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003185 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3186 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003187 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3188 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003189 atomic_read(&dev_priv->mm.wedged), 3000)) {
3190 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003191 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003192 }
3193
3194 if (ret == 0)
3195 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003196
Eric Anholt673a3942008-07-30 12:06:12 -07003197 return ret;
3198}
3199
Eric Anholt673a3942008-07-30 12:06:12 -07003200int
Chris Wilson05394f32010-11-08 19:18:58 +00003201i915_gem_object_pin(struct drm_i915_gem_object *obj,
3202 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003203 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003204{
Chris Wilson05394f32010-11-08 19:18:58 +00003205 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003206 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003207 int ret;
3208
Chris Wilson05394f32010-11-08 19:18:58 +00003209 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003210 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003211
Chris Wilson05394f32010-11-08 19:18:58 +00003212 if (obj->gtt_space != NULL) {
3213 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3214 (map_and_fenceable && !obj->map_and_fenceable)) {
3215 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003216 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003217 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3218 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003219 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003220 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003221 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003222 ret = i915_gem_object_unbind(obj);
3223 if (ret)
3224 return ret;
3225 }
3226 }
3227
Chris Wilson05394f32010-11-08 19:18:58 +00003228 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003229 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003230 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003231 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003232 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003233 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003234
Daniel Vetter74898d72012-02-15 23:50:22 +01003235 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3236 i915_gem_gtt_bind_object(obj, obj->cache_level);
3237
Chris Wilson05394f32010-11-08 19:18:58 +00003238 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003239 if (!obj->active)
3240 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003241 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003242 }
Chris Wilson6299f992010-11-24 12:23:44 +00003243 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003244
Chris Wilson23bc5982010-09-29 16:10:57 +01003245 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003246 return 0;
3247}
3248
3249void
Chris Wilson05394f32010-11-08 19:18:58 +00003250i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003251{
Chris Wilson05394f32010-11-08 19:18:58 +00003252 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003253 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003254
Chris Wilson23bc5982010-09-29 16:10:57 +01003255 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003256 BUG_ON(obj->pin_count == 0);
3257 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003258
Chris Wilson05394f32010-11-08 19:18:58 +00003259 if (--obj->pin_count == 0) {
3260 if (!obj->active)
3261 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003262 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003263 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003264 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003265 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003266}
3267
3268int
3269i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003270 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003271{
3272 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003273 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003274 int ret;
3275
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003276 ret = i915_mutex_lock_interruptible(dev);
3277 if (ret)
3278 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003279
Chris Wilson05394f32010-11-08 19:18:58 +00003280 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003281 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003282 ret = -ENOENT;
3283 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003284 }
Eric Anholt673a3942008-07-30 12:06:12 -07003285
Chris Wilson05394f32010-11-08 19:18:58 +00003286 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003287 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003288 ret = -EINVAL;
3289 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003290 }
3291
Chris Wilson05394f32010-11-08 19:18:58 +00003292 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003293 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3294 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003295 ret = -EINVAL;
3296 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003297 }
3298
Chris Wilson05394f32010-11-08 19:18:58 +00003299 obj->user_pin_count++;
3300 obj->pin_filp = file;
3301 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003302 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003303 if (ret)
3304 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003305 }
3306
3307 /* XXX - flush the CPU caches for pinned objects
3308 * as the X server doesn't manage domains yet
3309 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003310 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003311 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003312out:
Chris Wilson05394f32010-11-08 19:18:58 +00003313 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003314unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003315 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003316 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003317}
3318
3319int
3320i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003321 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003322{
3323 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003324 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003325 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003326
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003327 ret = i915_mutex_lock_interruptible(dev);
3328 if (ret)
3329 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003330
Chris Wilson05394f32010-11-08 19:18:58 +00003331 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003332 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003333 ret = -ENOENT;
3334 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003335 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003336
Chris Wilson05394f32010-11-08 19:18:58 +00003337 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003338 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3339 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003340 ret = -EINVAL;
3341 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003342 }
Chris Wilson05394f32010-11-08 19:18:58 +00003343 obj->user_pin_count--;
3344 if (obj->user_pin_count == 0) {
3345 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003346 i915_gem_object_unpin(obj);
3347 }
Eric Anholt673a3942008-07-30 12:06:12 -07003348
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003349out:
Chris Wilson05394f32010-11-08 19:18:58 +00003350 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003351unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003352 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003353 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003354}
3355
3356int
3357i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003358 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003359{
3360 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003361 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003362 int ret;
3363
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003364 ret = i915_mutex_lock_interruptible(dev);
3365 if (ret)
3366 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003367
Chris Wilson05394f32010-11-08 19:18:58 +00003368 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003369 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003370 ret = -ENOENT;
3371 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003372 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003373
Chris Wilson0be555b2010-08-04 15:36:30 +01003374 /* Count all active objects as busy, even if they are currently not used
3375 * by the gpu. Users of this interface expect objects to eventually
3376 * become non-busy without any further actions, therefore emit any
3377 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003378 */
Chris Wilson05394f32010-11-08 19:18:58 +00003379 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003380 if (args->busy) {
3381 /* Unconditionally flush objects, even when the gpu still uses this
3382 * object. Userspace calling this function indicates that it wants to
3383 * use this buffer rather sooner than later, so issuing the required
3384 * flush earlier is beneficial.
3385 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003386 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003387 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003388 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003389 } else if (obj->ring->outstanding_lazy_request ==
3390 obj->last_rendering_seqno) {
3391 struct drm_i915_gem_request *request;
3392
Chris Wilson7a194872010-12-07 10:38:40 +00003393 /* This ring is not being cleared by active usage,
3394 * so emit a request to do so.
3395 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003396 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003397 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003398 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003399 if (ret)
3400 kfree(request);
3401 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003402 ret = -ENOMEM;
3403 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003404
3405 /* Update the active list for the hardware's current position.
3406 * Otherwise this only updates on a delayed timer or when irqs
3407 * are actually unmasked, and our working set ends up being
3408 * larger than required.
3409 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003410 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003411
Chris Wilson05394f32010-11-08 19:18:58 +00003412 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003413 }
Eric Anholt673a3942008-07-30 12:06:12 -07003414
Chris Wilson05394f32010-11-08 19:18:58 +00003415 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003416unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003417 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003418 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003419}
3420
3421int
3422i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3423 struct drm_file *file_priv)
3424{
Akshay Joshi0206e352011-08-16 15:34:10 -04003425 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003426}
3427
Chris Wilson3ef94da2009-09-14 16:50:29 +01003428int
3429i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3430 struct drm_file *file_priv)
3431{
3432 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003433 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003434 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003435
3436 switch (args->madv) {
3437 case I915_MADV_DONTNEED:
3438 case I915_MADV_WILLNEED:
3439 break;
3440 default:
3441 return -EINVAL;
3442 }
3443
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003444 ret = i915_mutex_lock_interruptible(dev);
3445 if (ret)
3446 return ret;
3447
Chris Wilson05394f32010-11-08 19:18:58 +00003448 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003449 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003450 ret = -ENOENT;
3451 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003452 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003453
Chris Wilson05394f32010-11-08 19:18:58 +00003454 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003455 ret = -EINVAL;
3456 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003457 }
3458
Chris Wilson05394f32010-11-08 19:18:58 +00003459 if (obj->madv != __I915_MADV_PURGED)
3460 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003461
Chris Wilson2d7ef392009-09-20 23:13:10 +01003462 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003463 if (i915_gem_object_is_purgeable(obj) &&
3464 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003465 i915_gem_object_truncate(obj);
3466
Chris Wilson05394f32010-11-08 19:18:58 +00003467 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003468
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003469out:
Chris Wilson05394f32010-11-08 19:18:58 +00003470 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003471unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003472 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003473 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003474}
3475
Chris Wilson05394f32010-11-08 19:18:58 +00003476struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3477 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003478{
Chris Wilson73aa8082010-09-30 11:46:12 +01003479 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003480 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003481 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003482
3483 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3484 if (obj == NULL)
3485 return NULL;
3486
3487 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3488 kfree(obj);
3489 return NULL;
3490 }
3491
Hugh Dickins5949eac2011-06-27 16:18:18 -07003492 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3493 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3494
Chris Wilson73aa8082010-09-30 11:46:12 +01003495 i915_gem_info_add_obj(dev_priv, size);
3496
Daniel Vetterc397b902010-04-09 19:05:07 +00003497 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3498 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3499
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003500 if (HAS_LLC(dev)) {
3501 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003502 * cache) for about a 10% performance improvement
3503 * compared to uncached. Graphics requests other than
3504 * display scanout are coherent with the CPU in
3505 * accessing this cache. This means in this mode we
3506 * don't need to clflush on the CPU side, and on the
3507 * GPU side we only need to flush internal caches to
3508 * get data visible to the CPU.
3509 *
3510 * However, we maintain the display planes as UC, and so
3511 * need to rebind when first used as such.
3512 */
3513 obj->cache_level = I915_CACHE_LLC;
3514 } else
3515 obj->cache_level = I915_CACHE_NONE;
3516
Daniel Vetter62b8b212010-04-09 19:05:08 +00003517 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003518 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003519 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003520 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003521 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003522 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003523 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003524 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003525 /* Avoid an unnecessary call to unbind on the first bind. */
3526 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003527
Chris Wilson05394f32010-11-08 19:18:58 +00003528 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003529}
3530
Eric Anholt673a3942008-07-30 12:06:12 -07003531int i915_gem_init_object(struct drm_gem_object *obj)
3532{
Daniel Vetterc397b902010-04-09 19:05:07 +00003533 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003534
Eric Anholt673a3942008-07-30 12:06:12 -07003535 return 0;
3536}
3537
Chris Wilson05394f32010-11-08 19:18:58 +00003538static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003539{
Chris Wilson05394f32010-11-08 19:18:58 +00003540 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003541 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003542 int ret;
3543
3544 ret = i915_gem_object_unbind(obj);
3545 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003546 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003547 &dev_priv->mm.deferred_free_list);
3548 return;
3549 }
3550
Chris Wilson26e12f82011-03-20 11:20:19 +00003551 trace_i915_gem_object_destroy(obj);
3552
Chris Wilson05394f32010-11-08 19:18:58 +00003553 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003554 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003555
Chris Wilson05394f32010-11-08 19:18:58 +00003556 drm_gem_object_release(&obj->base);
3557 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003558
Chris Wilson05394f32010-11-08 19:18:58 +00003559 kfree(obj->page_cpu_valid);
3560 kfree(obj->bit_17);
3561 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003562}
3563
Chris Wilson05394f32010-11-08 19:18:58 +00003564void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003565{
Chris Wilson05394f32010-11-08 19:18:58 +00003566 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3567 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003568
Chris Wilson05394f32010-11-08 19:18:58 +00003569 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003570 i915_gem_object_unpin(obj);
3571
Chris Wilson05394f32010-11-08 19:18:58 +00003572 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003573 i915_gem_detach_phys_object(dev, obj);
3574
Chris Wilsonbe726152010-07-23 23:18:50 +01003575 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003576}
3577
Jesse Barnes5669fca2009-02-17 15:13:31 -08003578int
Eric Anholt673a3942008-07-30 12:06:12 -07003579i915_gem_idle(struct drm_device *dev)
3580{
3581 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003582 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003583
Keith Packard6dbe2772008-10-14 21:41:13 -07003584 mutex_lock(&dev->struct_mutex);
3585
Chris Wilson87acb0a2010-10-19 10:13:00 +01003586 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003587 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003588 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003589 }
Eric Anholt673a3942008-07-30 12:06:12 -07003590
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003591 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003592 if (ret) {
3593 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003594 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003595 }
Eric Anholt673a3942008-07-30 12:06:12 -07003596
Chris Wilson29105cc2010-01-07 10:39:13 +00003597 /* Under UMS, be paranoid and evict. */
3598 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003599 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003600 if (ret) {
3601 mutex_unlock(&dev->struct_mutex);
3602 return ret;
3603 }
3604 }
3605
Chris Wilson312817a2010-11-22 11:50:11 +00003606 i915_gem_reset_fences(dev);
3607
Chris Wilson29105cc2010-01-07 10:39:13 +00003608 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3609 * We need to replace this with a semaphore, or something.
3610 * And not confound mm.suspended!
3611 */
3612 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003613 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003614
3615 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003616 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003617
Keith Packard6dbe2772008-10-14 21:41:13 -07003618 mutex_unlock(&dev->struct_mutex);
3619
Chris Wilson29105cc2010-01-07 10:39:13 +00003620 /* Cancel the retire work handler, which should be idle now. */
3621 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3622
Eric Anholt673a3942008-07-30 12:06:12 -07003623 return 0;
3624}
3625
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003626void i915_gem_init_swizzling(struct drm_device *dev)
3627{
3628 drm_i915_private_t *dev_priv = dev->dev_private;
3629
Daniel Vetter11782b02012-01-31 16:47:55 +01003630 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003631 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3632 return;
3633
3634 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3635 DISP_TILE_SURFACE_SWIZZLING);
3636
Daniel Vetter11782b02012-01-31 16:47:55 +01003637 if (IS_GEN5(dev))
3638 return;
3639
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003640 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3641 if (IS_GEN6(dev))
3642 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3643 else
3644 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3645}
Daniel Vettere21af882012-02-09 20:53:27 +01003646
3647void i915_gem_init_ppgtt(struct drm_device *dev)
3648{
3649 drm_i915_private_t *dev_priv = dev->dev_private;
3650 uint32_t pd_offset;
3651 struct intel_ring_buffer *ring;
3652 int i;
3653
3654 if (!dev_priv->mm.aliasing_ppgtt)
3655 return;
3656
3657 pd_offset = dev_priv->mm.aliasing_ppgtt->pd_offset;
3658 pd_offset /= 64; /* in cachelines, */
3659 pd_offset <<= 16;
3660
3661 if (INTEL_INFO(dev)->gen == 6) {
3662 uint32_t ecochk = I915_READ(GAM_ECOCHK);
3663 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3664 ECOCHK_PPGTT_CACHE64B);
3665 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3666 } else if (INTEL_INFO(dev)->gen >= 7) {
3667 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3668 /* GFX_MODE is per-ring on gen7+ */
3669 }
3670
3671 for (i = 0; i < I915_NUM_RINGS; i++) {
3672 ring = &dev_priv->ring[i];
3673
3674 if (INTEL_INFO(dev)->gen >= 7)
3675 I915_WRITE(RING_MODE_GEN7(ring),
3676 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3677
3678 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3679 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3680 }
3681}
3682
Eric Anholt673a3942008-07-30 12:06:12 -07003683int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003684i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003685{
3686 drm_i915_private_t *dev_priv = dev->dev_private;
3687 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003688
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003689 i915_gem_init_swizzling(dev);
3690
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003691 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003692 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003693 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003694
3695 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003696 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003697 if (ret)
3698 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003699 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003700
Chris Wilson549f7362010-10-19 11:19:32 +01003701 if (HAS_BLT(dev)) {
3702 ret = intel_init_blt_ring_buffer(dev);
3703 if (ret)
3704 goto cleanup_bsd_ring;
3705 }
3706
Chris Wilson6f392d52010-08-07 11:01:22 +01003707 dev_priv->next_seqno = 1;
3708
Daniel Vettere21af882012-02-09 20:53:27 +01003709 i915_gem_init_ppgtt(dev);
3710
Chris Wilson68f95ba2010-05-27 13:18:22 +01003711 return 0;
3712
Chris Wilson549f7362010-10-19 11:19:32 +01003713cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003714 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003715cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003716 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003717 return ret;
3718}
3719
3720void
3721i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3722{
3723 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003724 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003725
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003726 for (i = 0; i < I915_NUM_RINGS; i++)
3727 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003728}
3729
3730int
Eric Anholt673a3942008-07-30 12:06:12 -07003731i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3732 struct drm_file *file_priv)
3733{
3734 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003735 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003736
Jesse Barnes79e53942008-11-07 14:24:08 -08003737 if (drm_core_check_feature(dev, DRIVER_MODESET))
3738 return 0;
3739
Ben Gamariba1234d2009-09-14 17:48:47 -04003740 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003741 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003742 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003743 }
3744
Eric Anholt673a3942008-07-30 12:06:12 -07003745 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003746 dev_priv->mm.suspended = 0;
3747
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003748 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003749 if (ret != 0) {
3750 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003751 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003752 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003753
Chris Wilson69dc4982010-10-19 10:36:51 +01003754 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003755 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3756 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003757 for (i = 0; i < I915_NUM_RINGS; i++) {
3758 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3759 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3760 }
Eric Anholt673a3942008-07-30 12:06:12 -07003761 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003762
Chris Wilson5f353082010-06-07 14:03:03 +01003763 ret = drm_irq_install(dev);
3764 if (ret)
3765 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003766
Eric Anholt673a3942008-07-30 12:06:12 -07003767 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003768
3769cleanup_ringbuffer:
3770 mutex_lock(&dev->struct_mutex);
3771 i915_gem_cleanup_ringbuffer(dev);
3772 dev_priv->mm.suspended = 1;
3773 mutex_unlock(&dev->struct_mutex);
3774
3775 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003776}
3777
3778int
3779i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3780 struct drm_file *file_priv)
3781{
Jesse Barnes79e53942008-11-07 14:24:08 -08003782 if (drm_core_check_feature(dev, DRIVER_MODESET))
3783 return 0;
3784
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003785 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003786 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003787}
3788
3789void
3790i915_gem_lastclose(struct drm_device *dev)
3791{
3792 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003793
Eric Anholte806b492009-01-22 09:56:58 -08003794 if (drm_core_check_feature(dev, DRIVER_MODESET))
3795 return;
3796
Keith Packard6dbe2772008-10-14 21:41:13 -07003797 ret = i915_gem_idle(dev);
3798 if (ret)
3799 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003800}
3801
Chris Wilson64193402010-10-24 12:38:05 +01003802static void
3803init_ring_lists(struct intel_ring_buffer *ring)
3804{
3805 INIT_LIST_HEAD(&ring->active_list);
3806 INIT_LIST_HEAD(&ring->request_list);
3807 INIT_LIST_HEAD(&ring->gpu_write_list);
3808}
3809
Eric Anholt673a3942008-07-30 12:06:12 -07003810void
3811i915_gem_load(struct drm_device *dev)
3812{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003813 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003814 drm_i915_private_t *dev_priv = dev->dev_private;
3815
Chris Wilson69dc4982010-10-19 10:36:51 +01003816 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003817 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3818 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003819 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003820 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003821 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003822 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003823 for (i = 0; i < I915_NUM_RINGS; i++)
3824 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003825 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003826 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003827 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3828 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003829 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003830
Dave Airlie94400122010-07-20 13:15:31 +10003831 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3832 if (IS_GEN3(dev)) {
3833 u32 tmp = I915_READ(MI_ARB_STATE);
3834 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3835 /* arb state is a masked write, so set bit + bit in mask */
3836 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3837 I915_WRITE(MI_ARB_STATE, tmp);
3838 }
3839 }
3840
Chris Wilson72bfa192010-12-19 11:42:05 +00003841 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3842
Jesse Barnesde151cf2008-11-12 10:03:55 -08003843 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003844 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3845 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003846
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003847 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003848 dev_priv->num_fence_regs = 16;
3849 else
3850 dev_priv->num_fence_regs = 8;
3851
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003852 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003853 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3854 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003855 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003856
Eric Anholt673a3942008-07-30 12:06:12 -07003857 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003858 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003859
Chris Wilsonce453d82011-02-21 14:43:56 +00003860 dev_priv->mm.interruptible = true;
3861
Chris Wilson17250b72010-10-28 12:51:39 +01003862 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3863 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3864 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003865}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003866
3867/*
3868 * Create a physically contiguous memory object for this object
3869 * e.g. for cursor + overlay regs
3870 */
Chris Wilson995b6762010-08-20 13:23:26 +01003871static int i915_gem_init_phys_object(struct drm_device *dev,
3872 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003873{
3874 drm_i915_private_t *dev_priv = dev->dev_private;
3875 struct drm_i915_gem_phys_object *phys_obj;
3876 int ret;
3877
3878 if (dev_priv->mm.phys_objs[id - 1] || !size)
3879 return 0;
3880
Eric Anholt9a298b22009-03-24 12:23:04 -07003881 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003882 if (!phys_obj)
3883 return -ENOMEM;
3884
3885 phys_obj->id = id;
3886
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003887 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003888 if (!phys_obj->handle) {
3889 ret = -ENOMEM;
3890 goto kfree_obj;
3891 }
3892#ifdef CONFIG_X86
3893 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3894#endif
3895
3896 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3897
3898 return 0;
3899kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003900 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003901 return ret;
3902}
3903
Chris Wilson995b6762010-08-20 13:23:26 +01003904static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003905{
3906 drm_i915_private_t *dev_priv = dev->dev_private;
3907 struct drm_i915_gem_phys_object *phys_obj;
3908
3909 if (!dev_priv->mm.phys_objs[id - 1])
3910 return;
3911
3912 phys_obj = dev_priv->mm.phys_objs[id - 1];
3913 if (phys_obj->cur_obj) {
3914 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3915 }
3916
3917#ifdef CONFIG_X86
3918 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3919#endif
3920 drm_pci_free(dev, phys_obj->handle);
3921 kfree(phys_obj);
3922 dev_priv->mm.phys_objs[id - 1] = NULL;
3923}
3924
3925void i915_gem_free_all_phys_object(struct drm_device *dev)
3926{
3927 int i;
3928
Dave Airlie260883c2009-01-22 17:58:49 +10003929 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003930 i915_gem_free_phys_object(dev, i);
3931}
3932
3933void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003934 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003935{
Chris Wilson05394f32010-11-08 19:18:58 +00003936 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003937 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003938 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003939 int page_count;
3940
Chris Wilson05394f32010-11-08 19:18:58 +00003941 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003942 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003943 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003944
Chris Wilson05394f32010-11-08 19:18:58 +00003945 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003946 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003947 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003948 if (!IS_ERR(page)) {
3949 char *dst = kmap_atomic(page);
3950 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3951 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003952
Chris Wilsone5281cc2010-10-28 13:45:36 +01003953 drm_clflush_pages(&page, 1);
3954
3955 set_page_dirty(page);
3956 mark_page_accessed(page);
3957 page_cache_release(page);
3958 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003959 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003960 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003961
Chris Wilson05394f32010-11-08 19:18:58 +00003962 obj->phys_obj->cur_obj = NULL;
3963 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003964}
3965
3966int
3967i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003968 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003969 int id,
3970 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003971{
Chris Wilson05394f32010-11-08 19:18:58 +00003972 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003973 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003974 int ret = 0;
3975 int page_count;
3976 int i;
3977
3978 if (id > I915_MAX_PHYS_OBJECT)
3979 return -EINVAL;
3980
Chris Wilson05394f32010-11-08 19:18:58 +00003981 if (obj->phys_obj) {
3982 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003983 return 0;
3984 i915_gem_detach_phys_object(dev, obj);
3985 }
3986
Dave Airlie71acb5e2008-12-30 20:31:46 +10003987 /* create a new object */
3988 if (!dev_priv->mm.phys_objs[id - 1]) {
3989 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003990 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003991 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003992 DRM_ERROR("failed to init phys object %d size: %zu\n",
3993 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003994 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003995 }
3996 }
3997
3998 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003999 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4000 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004001
Chris Wilson05394f32010-11-08 19:18:58 +00004002 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004003
4004 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004005 struct page *page;
4006 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004007
Hugh Dickins5949eac2011-06-27 16:18:18 -07004008 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004009 if (IS_ERR(page))
4010 return PTR_ERR(page);
4011
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004012 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004013 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004014 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004015 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004016
4017 mark_page_accessed(page);
4018 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004019 }
4020
4021 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004022}
4023
4024static int
Chris Wilson05394f32010-11-08 19:18:58 +00004025i915_gem_phys_pwrite(struct drm_device *dev,
4026 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004027 struct drm_i915_gem_pwrite *args,
4028 struct drm_file *file_priv)
4029{
Chris Wilson05394f32010-11-08 19:18:58 +00004030 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004031 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004032
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004033 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4034 unsigned long unwritten;
4035
4036 /* The physical object once assigned is fixed for the lifetime
4037 * of the obj, so we can safely drop the lock and continue
4038 * to access vaddr.
4039 */
4040 mutex_unlock(&dev->struct_mutex);
4041 unwritten = copy_from_user(vaddr, user_data, args->size);
4042 mutex_lock(&dev->struct_mutex);
4043 if (unwritten)
4044 return -EFAULT;
4045 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004046
Daniel Vetter40ce6572010-11-05 18:12:18 +01004047 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004048 return 0;
4049}
Eric Anholtb9624422009-06-03 07:27:35 +00004050
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004051void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004052{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004053 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004054
4055 /* Clean up our request list when the client is going away, so that
4056 * later retire_requests won't dereference our soon-to-be-gone
4057 * file_priv.
4058 */
Chris Wilson1c255952010-09-26 11:03:27 +01004059 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004060 while (!list_empty(&file_priv->mm.request_list)) {
4061 struct drm_i915_gem_request *request;
4062
4063 request = list_first_entry(&file_priv->mm.request_list,
4064 struct drm_i915_gem_request,
4065 client_list);
4066 list_del(&request->client_list);
4067 request->file_priv = NULL;
4068 }
Chris Wilson1c255952010-09-26 11:03:27 +01004069 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004070}
Chris Wilson31169712009-09-14 16:50:28 +01004071
Chris Wilson31169712009-09-14 16:50:28 +01004072static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004073i915_gpu_is_active(struct drm_device *dev)
4074{
4075 drm_i915_private_t *dev_priv = dev->dev_private;
4076 int lists_empty;
4077
Chris Wilson1637ef42010-04-20 17:10:35 +01004078 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004079 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004080
4081 return !lists_empty;
4082}
4083
4084static int
Ying Han1495f232011-05-24 17:12:27 -07004085i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004086{
Chris Wilson17250b72010-10-28 12:51:39 +01004087 struct drm_i915_private *dev_priv =
4088 container_of(shrinker,
4089 struct drm_i915_private,
4090 mm.inactive_shrinker);
4091 struct drm_device *dev = dev_priv->dev;
4092 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004093 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004094 int cnt;
4095
4096 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004097 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004098
4099 /* "fast-path" to count number of available objects */
4100 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004101 cnt = 0;
4102 list_for_each_entry(obj,
4103 &dev_priv->mm.inactive_list,
4104 mm_list)
4105 cnt++;
4106 mutex_unlock(&dev->struct_mutex);
4107 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004108 }
4109
Chris Wilson1637ef42010-04-20 17:10:35 +01004110rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004111 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004112 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004113
Chris Wilson17250b72010-10-28 12:51:39 +01004114 list_for_each_entry_safe(obj, next,
4115 &dev_priv->mm.inactive_list,
4116 mm_list) {
4117 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004118 if (i915_gem_object_unbind(obj) == 0 &&
4119 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004120 break;
Chris Wilson31169712009-09-14 16:50:28 +01004121 }
Chris Wilson31169712009-09-14 16:50:28 +01004122 }
4123
4124 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004125 cnt = 0;
4126 list_for_each_entry_safe(obj, next,
4127 &dev_priv->mm.inactive_list,
4128 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004129 if (nr_to_scan &&
4130 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004131 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004132 else
Chris Wilson17250b72010-10-28 12:51:39 +01004133 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004134 }
4135
Chris Wilson17250b72010-10-28 12:51:39 +01004136 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004137 /*
4138 * We are desperate for pages, so as a last resort, wait
4139 * for the GPU to finish and discard whatever we can.
4140 * This has a dramatic impact to reduce the number of
4141 * OOM-killer events whilst running the GPU aggressively.
4142 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004143 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004144 goto rescan;
4145 }
Chris Wilson17250b72010-10-28 12:51:39 +01004146 mutex_unlock(&dev->struct_mutex);
4147 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004148}