blob: b253257c028e5032dac7a85538a9290917cdc335 [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_bind_to_gtt(struct drm_i915_gem_object *obj,
43 unsigned alignment,
44 bool map_and_fenceable);
Chris Wilsond9e86c02010-11-10 16:40:20 +000045static void i915_gem_clear_fence_reg(struct drm_device *dev,
46 struct drm_i915_fence_reg *reg);
Chris Wilson05394f32010-11-08 19:18:58 +000047static int i915_gem_phys_pwrite(struct drm_device *dev,
48 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100049 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000050 struct drm_file *file);
51static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070052
Chris Wilson17250b72010-10-28 12:51:39 +010053static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070054 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010055static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010056
Chris Wilson73aa8082010-09-30 11:46:12 +010057/* some bookkeeping */
58static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
59 size_t size)
60{
61 dev_priv->mm.object_count++;
62 dev_priv->mm.object_memory += size;
63}
64
65static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
66 size_t size)
67{
68 dev_priv->mm.object_count--;
69 dev_priv->mm.object_memory -= size;
70}
71
Chris Wilson21dd3732011-01-26 15:55:56 +000072static int
73i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010074{
75 struct drm_i915_private *dev_priv = dev->dev_private;
76 struct completion *x = &dev_priv->error_completion;
77 unsigned long flags;
78 int ret;
79
80 if (!atomic_read(&dev_priv->mm.wedged))
81 return 0;
82
83 ret = wait_for_completion_interruptible(x);
84 if (ret)
85 return ret;
86
Chris Wilson21dd3732011-01-26 15:55:56 +000087 if (atomic_read(&dev_priv->mm.wedged)) {
88 /* GPU is hung, bump the completion count to account for
89 * the token we just consumed so that we never hit zero and
90 * end up waiting upon a subsequent completion event that
91 * will never happen.
92 */
93 spin_lock_irqsave(&x->wait.lock, flags);
94 x->done++;
95 spin_unlock_irqrestore(&x->wait.lock, flags);
96 }
97 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +010098}
99
Chris Wilson54cf91d2010-11-25 18:00:26 +0000100int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100101{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100102 int ret;
103
Chris Wilson21dd3732011-01-26 15:55:56 +0000104 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100105 if (ret)
106 return ret;
107
108 ret = mutex_lock_interruptible(&dev->struct_mutex);
109 if (ret)
110 return ret;
111
Chris Wilson23bc5982010-09-29 16:10:57 +0100112 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100113 return 0;
114}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100115
Chris Wilson7d1c4802010-08-07 21:45:03 +0100116static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000117i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100118{
Chris Wilson05394f32010-11-08 19:18:58 +0000119 return obj->gtt_space && !obj->active && obj->pin_count == 0;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100120}
121
Eric Anholt673a3942008-07-30 12:06:12 -0700122int
123i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000124 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700125{
Eric Anholt673a3942008-07-30 12:06:12 -0700126 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000127
128 if (args->gtt_start >= args->gtt_end ||
129 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
130 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700131
132 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200133 i915_gem_init_global_gtt(dev, args->gtt_start,
134 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700135 mutex_unlock(&dev->struct_mutex);
136
Chris Wilson20217462010-11-23 15:26:33 +0000137 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700138}
139
Eric Anholt5a125c32008-10-22 21:40:13 -0700140int
141i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000142 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700143{
Chris Wilson73aa8082010-09-30 11:46:12 +0100144 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700145 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000146 struct drm_i915_gem_object *obj;
147 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700148
149 if (!(dev->driver->driver_features & DRIVER_GEM))
150 return -ENODEV;
151
Chris Wilson6299f992010-11-24 12:23:44 +0000152 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100153 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000154 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
155 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100156 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700157
Chris Wilson6299f992010-11-24 12:23:44 +0000158 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400159 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000160
Eric Anholt5a125c32008-10-22 21:40:13 -0700161 return 0;
162}
163
Dave Airlieff72145b2011-02-07 12:16:14 +1000164static int
165i915_gem_create(struct drm_file *file,
166 struct drm_device *dev,
167 uint64_t size,
168 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700169{
Chris Wilson05394f32010-11-08 19:18:58 +0000170 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300171 int ret;
172 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700173
Dave Airlieff72145b2011-02-07 12:16:14 +1000174 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200175 if (size == 0)
176 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700177
178 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000179 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700180 if (obj == NULL)
181 return -ENOMEM;
182
Chris Wilson05394f32010-11-08 19:18:58 +0000183 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100184 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000185 drm_gem_object_release(&obj->base);
186 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100187 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700188 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100189 }
190
Chris Wilson202f2fe2010-10-14 13:20:40 +0100191 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000192 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100193 trace_i915_gem_object_create(obj);
194
Dave Airlieff72145b2011-02-07 12:16:14 +1000195 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700196 return 0;
197}
198
Dave Airlieff72145b2011-02-07 12:16:14 +1000199int
200i915_gem_dumb_create(struct drm_file *file,
201 struct drm_device *dev,
202 struct drm_mode_create_dumb *args)
203{
204 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000205 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000206 args->size = args->pitch * args->height;
207 return i915_gem_create(file, dev,
208 args->size, &args->handle);
209}
210
211int i915_gem_dumb_destroy(struct drm_file *file,
212 struct drm_device *dev,
213 uint32_t handle)
214{
215 return drm_gem_handle_delete(file, handle);
216}
217
218/**
219 * Creates a new mm object and returns a handle to it.
220 */
221int
222i915_gem_create_ioctl(struct drm_device *dev, void *data,
223 struct drm_file *file)
224{
225 struct drm_i915_gem_create *args = data;
226 return i915_gem_create(file, dev,
227 args->size, &args->handle);
228}
229
Chris Wilson05394f32010-11-08 19:18:58 +0000230static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700231{
Chris Wilson05394f32010-11-08 19:18:58 +0000232 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700233
234 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000235 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700236}
237
Daniel Vetter8c599672011-12-14 13:57:31 +0100238static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100239__copy_to_user_swizzled(char __user *cpu_vaddr,
240 const char *gpu_vaddr, int gpu_offset,
241 int length)
242{
243 int ret, cpu_offset = 0;
244
245 while (length > 0) {
246 int cacheline_end = ALIGN(gpu_offset + 1, 64);
247 int this_length = min(cacheline_end - gpu_offset, length);
248 int swizzled_gpu_offset = gpu_offset ^ 64;
249
250 ret = __copy_to_user(cpu_vaddr + cpu_offset,
251 gpu_vaddr + swizzled_gpu_offset,
252 this_length);
253 if (ret)
254 return ret + length;
255
256 cpu_offset += this_length;
257 gpu_offset += this_length;
258 length -= this_length;
259 }
260
261 return 0;
262}
263
264static inline int
Daniel Vetter8c599672011-12-14 13:57:31 +0100265__copy_from_user_swizzled(char __user *gpu_vaddr, int gpu_offset,
266 const char *cpu_vaddr,
267 int length)
268{
269 int ret, cpu_offset = 0;
270
271 while (length > 0) {
272 int cacheline_end = ALIGN(gpu_offset + 1, 64);
273 int this_length = min(cacheline_end - gpu_offset, length);
274 int swizzled_gpu_offset = gpu_offset ^ 64;
275
276 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
277 cpu_vaddr + cpu_offset,
278 this_length);
279 if (ret)
280 return ret + length;
281
282 cpu_offset += this_length;
283 gpu_offset += this_length;
284 length -= this_length;
285 }
286
287 return 0;
288}
289
Eric Anholteb014592009-03-10 11:44:52 -0700290static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200291i915_gem_shmem_pread(struct drm_device *dev,
292 struct drm_i915_gem_object *obj,
293 struct drm_i915_gem_pread *args,
294 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700295{
Chris Wilson05394f32010-11-08 19:18:58 +0000296 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100297 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700298 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100299 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100300 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100301 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200302 int hit_slowpath = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200303 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200304 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700305
Daniel Vetter8461d222011-12-14 13:57:32 +0100306 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700307 remain = args->size;
308
Daniel Vetter8461d222011-12-14 13:57:32 +0100309 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700310
Daniel Vetter84897312012-03-25 19:47:31 +0200311 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
312 /* If we're not in the cpu read domain, set ourself into the gtt
313 * read domain and manually flush cachelines (if required). This
314 * optimizes for the case when the gpu will dirty the data
315 * anyway again before the next pread happens. */
316 if (obj->cache_level == I915_CACHE_NONE)
317 needs_clflush = 1;
318 ret = i915_gem_object_set_to_gtt_domain(obj, false);
319 if (ret)
320 return ret;
321 }
322
Eric Anholteb014592009-03-10 11:44:52 -0700323 offset = args->offset;
324
325 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100326 struct page *page;
Daniel Vetter8461d222011-12-14 13:57:32 +0100327 char *vaddr;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100328
Eric Anholteb014592009-03-10 11:44:52 -0700329 /* Operation in this page
330 *
Eric Anholteb014592009-03-10 11:44:52 -0700331 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700332 * page_length = bytes to copy for this page
333 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100334 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700335 page_length = remain;
336 if ((shmem_page_offset + page_length) > PAGE_SIZE)
337 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700338
Daniel Vetter692a5762012-03-25 19:47:34 +0200339 if (obj->pages) {
340 page = obj->pages[offset >> PAGE_SHIFT];
341 release_page = 0;
342 } else {
343 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
344 if (IS_ERR(page)) {
345 ret = PTR_ERR(page);
346 goto out;
347 }
348 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000349 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100350
Daniel Vetter8461d222011-12-14 13:57:32 +0100351 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
352 (page_to_phys(page) & (1 << 17)) != 0;
353
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200354 if (!page_do_bit17_swizzling) {
355 vaddr = kmap_atomic(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200356 if (needs_clflush)
357 drm_clflush_virt_range(vaddr + shmem_page_offset,
358 page_length);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200359 ret = __copy_to_user_inatomic(user_data,
360 vaddr + shmem_page_offset,
361 page_length);
362 kunmap_atomic(vaddr);
363 if (ret == 0)
364 goto next_page;
365 }
366
367 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200368 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200369 mutex_unlock(&dev->struct_mutex);
370
Daniel Vetter8461d222011-12-14 13:57:32 +0100371 vaddr = kmap(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200372 if (needs_clflush)
373 drm_clflush_virt_range(vaddr + shmem_page_offset,
374 page_length);
375
Daniel Vetter8461d222011-12-14 13:57:32 +0100376 if (page_do_bit17_swizzling)
377 ret = __copy_to_user_swizzled(user_data,
378 vaddr, shmem_page_offset,
379 page_length);
380 else
381 ret = __copy_to_user(user_data,
382 vaddr + shmem_page_offset,
383 page_length);
384 kunmap(page);
Eric Anholteb014592009-03-10 11:44:52 -0700385
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200386 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200387 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200388next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100389 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200390 if (release_page)
391 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100392
Daniel Vetter8461d222011-12-14 13:57:32 +0100393 if (ret) {
394 ret = -EFAULT;
395 goto out;
396 }
397
Eric Anholteb014592009-03-10 11:44:52 -0700398 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100399 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700400 offset += page_length;
401 }
402
Chris Wilson4f27b752010-10-14 15:26:45 +0100403out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200404 if (hit_slowpath) {
405 /* Fixup: Kill any reinstated backing storage pages */
406 if (obj->madv == __I915_MADV_PURGED)
407 i915_gem_object_truncate(obj);
408 }
Eric Anholteb014592009-03-10 11:44:52 -0700409
410 return ret;
411}
412
Eric Anholt673a3942008-07-30 12:06:12 -0700413/**
414 * Reads data from the object referenced by handle.
415 *
416 * On error, the contents of *data are undefined.
417 */
418int
419i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000420 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700421{
422 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000423 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100424 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700425
Chris Wilson51311d02010-11-17 09:10:42 +0000426 if (args->size == 0)
427 return 0;
428
429 if (!access_ok(VERIFY_WRITE,
430 (char __user *)(uintptr_t)args->data_ptr,
431 args->size))
432 return -EFAULT;
433
434 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
435 args->size);
436 if (ret)
437 return -EFAULT;
438
Chris Wilson4f27b752010-10-14 15:26:45 +0100439 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100440 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100441 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700442
Chris Wilson05394f32010-11-08 19:18:58 +0000443 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000444 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100445 ret = -ENOENT;
446 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100447 }
Eric Anholt673a3942008-07-30 12:06:12 -0700448
Chris Wilson7dcd2492010-09-26 20:21:44 +0100449 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000450 if (args->offset > obj->base.size ||
451 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100452 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100453 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100454 }
455
Chris Wilsondb53a302011-02-03 11:57:46 +0000456 trace_i915_gem_object_pread(obj, args->offset, args->size);
457
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200458 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700459
Chris Wilson35b62a82010-09-26 20:23:38 +0100460out:
Chris Wilson05394f32010-11-08 19:18:58 +0000461 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100462unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100463 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700464 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700465}
466
Keith Packard0839ccb2008-10-30 19:38:48 -0700467/* This is the fast write path which cannot handle
468 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700469 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700470
Keith Packard0839ccb2008-10-30 19:38:48 -0700471static inline int
472fast_user_write(struct io_mapping *mapping,
473 loff_t page_base, int page_offset,
474 char __user *user_data,
475 int length)
476{
477 char *vaddr_atomic;
478 unsigned long unwritten;
479
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700480 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700481 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
482 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700483 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100484 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700485}
486
487/* Here's the write path which can sleep for
488 * page faults
489 */
490
Chris Wilsonab34c222010-05-27 14:15:35 +0100491static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700492slow_kernel_write(struct io_mapping *mapping,
493 loff_t gtt_base, int gtt_offset,
494 struct page *user_page, int user_offset,
495 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700496{
Chris Wilsonab34c222010-05-27 14:15:35 +0100497 char __iomem *dst_vaddr;
498 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700499
Chris Wilsonab34c222010-05-27 14:15:35 +0100500 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
501 src_vaddr = kmap(user_page);
502
503 memcpy_toio(dst_vaddr + gtt_offset,
504 src_vaddr + user_offset,
505 length);
506
507 kunmap(user_page);
508 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700509}
510
Eric Anholt3de09aa2009-03-09 09:42:23 -0700511/**
512 * This is the fast pwrite path, where we copy the data directly from the
513 * user into the GTT, uncached.
514 */
Eric Anholt673a3942008-07-30 12:06:12 -0700515static int
Chris Wilson05394f32010-11-08 19:18:58 +0000516i915_gem_gtt_pwrite_fast(struct drm_device *dev,
517 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700518 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000519 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700520{
Keith Packard0839ccb2008-10-30 19:38:48 -0700521 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700522 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700523 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700524 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700525 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700526
527 user_data = (char __user *) (uintptr_t) args->data_ptr;
528 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700529
Chris Wilson05394f32010-11-08 19:18:58 +0000530 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700531
532 while (remain > 0) {
533 /* Operation in this page
534 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700535 * page_base = page offset within aperture
536 * page_offset = offset within page
537 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700538 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100539 page_base = offset & PAGE_MASK;
540 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700541 page_length = remain;
542 if ((page_offset + remain) > PAGE_SIZE)
543 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700544
Keith Packard0839ccb2008-10-30 19:38:48 -0700545 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700546 * source page isn't available. Return the error and we'll
547 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700548 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100549 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
550 page_offset, user_data, page_length))
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100551 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700552
Keith Packard0839ccb2008-10-30 19:38:48 -0700553 remain -= page_length;
554 user_data += page_length;
555 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700556 }
Eric Anholt673a3942008-07-30 12:06:12 -0700557
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100558 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700559}
560
Eric Anholt3de09aa2009-03-09 09:42:23 -0700561/**
562 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
563 * the memory and maps it using kmap_atomic for copying.
564 *
565 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
566 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
567 */
Eric Anholt3043c602008-10-02 12:24:47 -0700568static int
Chris Wilson05394f32010-11-08 19:18:58 +0000569i915_gem_gtt_pwrite_slow(struct drm_device *dev,
570 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700571 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000572 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700573{
Eric Anholt3de09aa2009-03-09 09:42:23 -0700574 drm_i915_private_t *dev_priv = dev->dev_private;
575 ssize_t remain;
576 loff_t gtt_page_base, offset;
577 loff_t first_data_page, last_data_page, num_pages;
578 loff_t pinned_pages, i;
579 struct page **user_pages;
580 struct mm_struct *mm = current->mm;
581 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700582 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700583 uint64_t data_ptr = args->data_ptr;
584
585 remain = args->size;
586
587 /* Pin the user pages containing the data. We can't fault while
588 * holding the struct mutex, and all of the pwrite implementations
589 * want to hold it while dereferencing the user data.
590 */
591 first_data_page = data_ptr / PAGE_SIZE;
592 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
593 num_pages = last_data_page - first_data_page + 1;
594
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100595 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700596 if (user_pages == NULL)
597 return -ENOMEM;
598
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100599 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700600 down_read(&mm->mmap_sem);
601 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
602 num_pages, 0, 0, user_pages, NULL);
603 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100604 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700605 if (pinned_pages < num_pages) {
606 ret = -EFAULT;
607 goto out_unpin_pages;
608 }
609
Chris Wilsond9e86c02010-11-10 16:40:20 +0000610 ret = i915_gem_object_set_to_gtt_domain(obj, true);
611 if (ret)
612 goto out_unpin_pages;
613
614 ret = i915_gem_object_put_fence(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700615 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100616 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700617
Chris Wilson05394f32010-11-08 19:18:58 +0000618 offset = obj->gtt_offset + args->offset;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700619
620 while (remain > 0) {
621 /* Operation in this page
622 *
623 * gtt_page_base = page offset within aperture
624 * gtt_page_offset = offset within page in aperture
625 * data_page_index = page number in get_user_pages return
626 * data_page_offset = offset with data_page_index page.
627 * page_length = bytes to copy for this page
628 */
629 gtt_page_base = offset & PAGE_MASK;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100630 gtt_page_offset = offset_in_page(offset);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700631 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100632 data_page_offset = offset_in_page(data_ptr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700633
634 page_length = remain;
635 if ((gtt_page_offset + page_length) > PAGE_SIZE)
636 page_length = PAGE_SIZE - gtt_page_offset;
637 if ((data_page_offset + page_length) > PAGE_SIZE)
638 page_length = PAGE_SIZE - data_page_offset;
639
Chris Wilsonab34c222010-05-27 14:15:35 +0100640 slow_kernel_write(dev_priv->mm.gtt_mapping,
641 gtt_page_base, gtt_page_offset,
642 user_pages[data_page_index],
643 data_page_offset,
644 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700645
646 remain -= page_length;
647 offset += page_length;
648 data_ptr += page_length;
649 }
650
Eric Anholt3de09aa2009-03-09 09:42:23 -0700651out_unpin_pages:
652 for (i = 0; i < pinned_pages; i++)
653 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700654 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700655
656 return ret;
657}
658
Eric Anholt673a3942008-07-30 12:06:12 -0700659static int
Daniel Vettere244a442012-03-25 19:47:28 +0200660i915_gem_shmem_pwrite(struct drm_device *dev,
661 struct drm_i915_gem_object *obj,
662 struct drm_i915_gem_pwrite *args,
663 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700664{
Chris Wilson05394f32010-11-08 19:18:58 +0000665 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700666 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100667 loff_t offset;
668 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100669 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100670 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200671 int hit_slowpath = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200672 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700673
Daniel Vetter8c599672011-12-14 13:57:31 +0100674 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700675 remain = args->size;
676
Daniel Vetter8c599672011-12-14 13:57:31 +0100677 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700678
Eric Anholt40123c12009-03-09 13:42:30 -0700679 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000680 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700681
682 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100683 struct page *page;
Daniel Vetter8c599672011-12-14 13:57:31 +0100684 char *vaddr;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100685
Eric Anholt40123c12009-03-09 13:42:30 -0700686 /* Operation in this page
687 *
Eric Anholt40123c12009-03-09 13:42:30 -0700688 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700689 * page_length = bytes to copy for this page
690 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100691 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700692
693 page_length = remain;
694 if ((shmem_page_offset + page_length) > PAGE_SIZE)
695 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700696
Daniel Vetter692a5762012-03-25 19:47:34 +0200697 if (obj->pages) {
698 page = obj->pages[offset >> PAGE_SHIFT];
699 release_page = 0;
700 } else {
701 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
702 if (IS_ERR(page)) {
703 ret = PTR_ERR(page);
704 goto out;
705 }
706 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100707 }
708
Daniel Vetter8c599672011-12-14 13:57:31 +0100709 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
710 (page_to_phys(page) & (1 << 17)) != 0;
711
Daniel Vettere244a442012-03-25 19:47:28 +0200712 if (!page_do_bit17_swizzling) {
713 vaddr = kmap_atomic(page);
714 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
715 user_data,
716 page_length);
717 kunmap_atomic(vaddr);
718
719 if (ret == 0)
720 goto next_page;
721 }
722
723 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200724 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200725 mutex_unlock(&dev->struct_mutex);
726
Daniel Vetter8c599672011-12-14 13:57:31 +0100727 vaddr = kmap(page);
728 if (page_do_bit17_swizzling)
729 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
730 user_data,
731 page_length);
732 else
733 ret = __copy_from_user(vaddr + shmem_page_offset,
734 user_data,
735 page_length);
736 kunmap(page);
Eric Anholt40123c12009-03-09 13:42:30 -0700737
Daniel Vettere244a442012-03-25 19:47:28 +0200738 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200739 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200740next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100741 set_page_dirty(page);
742 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200743 if (release_page)
744 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100745
Daniel Vetter8c599672011-12-14 13:57:31 +0100746 if (ret) {
747 ret = -EFAULT;
748 goto out;
749 }
750
Eric Anholt40123c12009-03-09 13:42:30 -0700751 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100752 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700753 offset += page_length;
754 }
755
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100756out:
Daniel Vettere244a442012-03-25 19:47:28 +0200757 if (hit_slowpath) {
758 /* Fixup: Kill any reinstated backing storage pages */
759 if (obj->madv == __I915_MADV_PURGED)
760 i915_gem_object_truncate(obj);
761 /* and flush dirty cachelines in case the object isn't in the cpu write
762 * domain anymore. */
763 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
764 i915_gem_clflush_object(obj);
765 intel_gtt_chipset_flush();
766 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100767 }
Eric Anholt40123c12009-03-09 13:42:30 -0700768
769 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700770}
771
772/**
773 * Writes data to the object referenced by handle.
774 *
775 * On error, the contents of the buffer that were to be modified are undefined.
776 */
777int
778i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100779 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700780{
781 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000782 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000783 int ret;
784
785 if (args->size == 0)
786 return 0;
787
788 if (!access_ok(VERIFY_READ,
789 (char __user *)(uintptr_t)args->data_ptr,
790 args->size))
791 return -EFAULT;
792
793 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
794 args->size);
795 if (ret)
796 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700797
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100798 ret = i915_mutex_lock_interruptible(dev);
799 if (ret)
800 return ret;
801
Chris Wilson05394f32010-11-08 19:18:58 +0000802 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000803 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100804 ret = -ENOENT;
805 goto unlock;
806 }
Eric Anholt673a3942008-07-30 12:06:12 -0700807
Chris Wilson7dcd2492010-09-26 20:21:44 +0100808 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000809 if (args->offset > obj->base.size ||
810 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100811 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100812 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100813 }
814
Chris Wilsondb53a302011-02-03 11:57:46 +0000815 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
816
Eric Anholt673a3942008-07-30 12:06:12 -0700817 /* We can only do the GTT pwrite on untiled buffers, as otherwise
818 * it would end up going through the fenced access, and we'll get
819 * different detiling behavior between reading and writing.
820 * pread/pwrite currently are reading and writing from the CPU
821 * perspective, requiring manual detiling by the client.
822 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100823 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100824 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100825 goto out;
826 }
827
828 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200829 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100830 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +0100831 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100832 if (ret)
833 goto out;
834
Chris Wilsond9e86c02010-11-10 16:40:20 +0000835 ret = i915_gem_object_set_to_gtt_domain(obj, true);
836 if (ret)
837 goto out_unpin;
838
839 ret = i915_gem_object_put_fence(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100840 if (ret)
841 goto out_unpin;
842
843 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
844 if (ret == -EFAULT)
845 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
846
847out_unpin:
848 i915_gem_object_unpin(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100849
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100850 if (ret != -EFAULT)
851 goto out;
852 /* Fall through to the shmfs paths because the gtt paths might
853 * fail with non-page-backed user pointers (e.g. gtt mappings
854 * when moving data between textures). */
Eric Anholt40123c12009-03-09 13:42:30 -0700855 }
Eric Anholt673a3942008-07-30 12:06:12 -0700856
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100857 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
858 if (ret)
859 goto out;
860
Daniel Vettere244a442012-03-25 19:47:28 +0200861 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100862
Chris Wilson35b62a82010-09-26 20:23:38 +0100863out:
Chris Wilson05394f32010-11-08 19:18:58 +0000864 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100865unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100866 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700867 return ret;
868}
869
870/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800871 * Called when user space prepares to use an object with the CPU, either
872 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700873 */
874int
875i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000876 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700877{
878 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000879 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800880 uint32_t read_domains = args->read_domains;
881 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700882 int ret;
883
884 if (!(dev->driver->driver_features & DRIVER_GEM))
885 return -ENODEV;
886
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800887 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100888 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800889 return -EINVAL;
890
Chris Wilson21d509e2009-06-06 09:46:02 +0100891 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800892 return -EINVAL;
893
894 /* Having something in the write domain implies it's in the read
895 * domain, and only that read domain. Enforce that in the request.
896 */
897 if (write_domain != 0 && read_domains != write_domain)
898 return -EINVAL;
899
Chris Wilson76c1dec2010-09-25 11:22:51 +0100900 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100901 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100902 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700903
Chris Wilson05394f32010-11-08 19:18:58 +0000904 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000905 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100906 ret = -ENOENT;
907 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100908 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700909
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800910 if (read_domains & I915_GEM_DOMAIN_GTT) {
911 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800912
913 /* Silently promote "you're not bound, there was nothing to do"
914 * to success, since the client was just asking us to
915 * make sure everything was done.
916 */
917 if (ret == -EINVAL)
918 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800919 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800920 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800921 }
922
Chris Wilson05394f32010-11-08 19:18:58 +0000923 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100924unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700925 mutex_unlock(&dev->struct_mutex);
926 return ret;
927}
928
929/**
930 * Called when user space has done writes to this buffer
931 */
932int
933i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000934 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700935{
936 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000937 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700938 int ret = 0;
939
940 if (!(dev->driver->driver_features & DRIVER_GEM))
941 return -ENODEV;
942
Chris Wilson76c1dec2010-09-25 11:22:51 +0100943 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100944 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100945 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100946
Chris Wilson05394f32010-11-08 19:18:58 +0000947 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000948 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100949 ret = -ENOENT;
950 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700951 }
952
Eric Anholt673a3942008-07-30 12:06:12 -0700953 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000954 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800955 i915_gem_object_flush_cpu_write_domain(obj);
956
Chris Wilson05394f32010-11-08 19:18:58 +0000957 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100958unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700959 mutex_unlock(&dev->struct_mutex);
960 return ret;
961}
962
963/**
964 * Maps the contents of an object, returning the address it is mapped
965 * into.
966 *
967 * While the mapping holds a reference on the contents of the object, it doesn't
968 * imply a ref on the object itself.
969 */
970int
971i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000972 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700973{
974 struct drm_i915_gem_mmap *args = data;
975 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700976 unsigned long addr;
977
978 if (!(dev->driver->driver_features & DRIVER_GEM))
979 return -ENODEV;
980
Chris Wilson05394f32010-11-08 19:18:58 +0000981 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -0700982 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100983 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -0700984
Eric Anholt673a3942008-07-30 12:06:12 -0700985 down_write(&current->mm->mmap_sem);
986 addr = do_mmap(obj->filp, 0, args->size,
987 PROT_READ | PROT_WRITE, MAP_SHARED,
988 args->offset);
989 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000990 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700991 if (IS_ERR((void *)addr))
992 return addr;
993
994 args->addr_ptr = (uint64_t) addr;
995
996 return 0;
997}
998
Jesse Barnesde151cf2008-11-12 10:03:55 -0800999/**
1000 * i915_gem_fault - fault a page into the GTT
1001 * vma: VMA in question
1002 * vmf: fault info
1003 *
1004 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1005 * from userspace. The fault handler takes care of binding the object to
1006 * the GTT (if needed), allocating and programming a fence register (again,
1007 * only if needed based on whether the old reg is still valid or the object
1008 * is tiled) and inserting a new PTE into the faulting process.
1009 *
1010 * Note that the faulting process may involve evicting existing objects
1011 * from the GTT and/or fence registers to make room. So performance may
1012 * suffer if the GTT working set is large or there are few fence registers
1013 * left.
1014 */
1015int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1016{
Chris Wilson05394f32010-11-08 19:18:58 +00001017 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1018 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001019 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001020 pgoff_t page_offset;
1021 unsigned long pfn;
1022 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001023 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001024
1025 /* We don't use vmf->pgoff since that has the fake offset */
1026 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1027 PAGE_SHIFT;
1028
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001029 ret = i915_mutex_lock_interruptible(dev);
1030 if (ret)
1031 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001032
Chris Wilsondb53a302011-02-03 11:57:46 +00001033 trace_i915_gem_object_fault(obj, page_offset, true, write);
1034
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001035 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001036 if (!obj->map_and_fenceable) {
1037 ret = i915_gem_object_unbind(obj);
1038 if (ret)
1039 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001040 }
Chris Wilson05394f32010-11-08 19:18:58 +00001041 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001042 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001043 if (ret)
1044 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001045
Eric Anholte92d03b2011-06-14 16:43:09 -07001046 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1047 if (ret)
1048 goto unlock;
1049 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001050
Daniel Vetter74898d72012-02-15 23:50:22 +01001051 if (!obj->has_global_gtt_mapping)
1052 i915_gem_gtt_bind_object(obj, obj->cache_level);
1053
Chris Wilsond9e86c02010-11-10 16:40:20 +00001054 if (obj->tiling_mode == I915_TILING_NONE)
1055 ret = i915_gem_object_put_fence(obj);
1056 else
Chris Wilsonce453d82011-02-21 14:43:56 +00001057 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001058 if (ret)
1059 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001060
Chris Wilson05394f32010-11-08 19:18:58 +00001061 if (i915_gem_object_is_inactive(obj))
1062 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001063
Chris Wilson6299f992010-11-24 12:23:44 +00001064 obj->fault_mappable = true;
1065
Chris Wilson05394f32010-11-08 19:18:58 +00001066 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001067 page_offset;
1068
1069 /* Finally, remap it using the new GTT offset */
1070 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001071unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001072 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001073out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001074 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001075 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001076 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001077 /* Give the error handler a chance to run and move the
1078 * objects off the GPU active list. Next time we service the
1079 * fault, we should be able to transition the page into the
1080 * GTT without touching the GPU (and so avoid further
1081 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1082 * with coherency, just lost writes.
1083 */
Chris Wilson045e7692010-11-07 09:18:22 +00001084 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001085 case 0:
1086 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001087 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001088 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001089 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001090 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001091 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001092 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001093 }
1094}
1095
1096/**
Chris Wilson901782b2009-07-10 08:18:50 +01001097 * i915_gem_release_mmap - remove physical page mappings
1098 * @obj: obj in question
1099 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001100 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001101 * relinquish ownership of the pages back to the system.
1102 *
1103 * It is vital that we remove the page mapping if we have mapped a tiled
1104 * object through the GTT and then lose the fence register due to
1105 * resource pressure. Similarly if the object has been moved out of the
1106 * aperture, than pages mapped into userspace must be revoked. Removing the
1107 * mapping will then trigger a page fault on the next user access, allowing
1108 * fixup by i915_gem_fault().
1109 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001110void
Chris Wilson05394f32010-11-08 19:18:58 +00001111i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001112{
Chris Wilson6299f992010-11-24 12:23:44 +00001113 if (!obj->fault_mappable)
1114 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001115
Chris Wilsonf6e47882011-03-20 21:09:12 +00001116 if (obj->base.dev->dev_mapping)
1117 unmap_mapping_range(obj->base.dev->dev_mapping,
1118 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1119 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001120
Chris Wilson6299f992010-11-24 12:23:44 +00001121 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001122}
1123
Chris Wilson92b88ae2010-11-09 11:47:32 +00001124static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001125i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001126{
Chris Wilsone28f8712011-07-18 13:11:49 -07001127 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001128
1129 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001130 tiling_mode == I915_TILING_NONE)
1131 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001132
1133 /* Previous chips need a power-of-two fence region when tiling */
1134 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001135 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001136 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001137 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001138
Chris Wilsone28f8712011-07-18 13:11:49 -07001139 while (gtt_size < size)
1140 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001141
Chris Wilsone28f8712011-07-18 13:11:49 -07001142 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001143}
1144
Jesse Barnesde151cf2008-11-12 10:03:55 -08001145/**
1146 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1147 * @obj: object to check
1148 *
1149 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001150 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001151 */
1152static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001153i915_gem_get_gtt_alignment(struct drm_device *dev,
1154 uint32_t size,
1155 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001156{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001157 /*
1158 * Minimum alignment is 4k (GTT page size), but might be greater
1159 * if a fence register is needed for the object.
1160 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001161 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001162 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001163 return 4096;
1164
1165 /*
1166 * Previous chips need to be aligned to the size of the smallest
1167 * fence register that can contain the object.
1168 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001169 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001170}
1171
Daniel Vetter5e783302010-11-14 22:32:36 +01001172/**
1173 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1174 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001175 * @dev: the device
1176 * @size: size of the object
1177 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001178 *
1179 * Return the required GTT alignment for an object, only taking into account
1180 * unfenced tiled surface requirements.
1181 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001182uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001183i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1184 uint32_t size,
1185 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001186{
Daniel Vetter5e783302010-11-14 22:32:36 +01001187 /*
1188 * Minimum alignment is 4k (GTT page size) for sane hw.
1189 */
1190 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001191 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001192 return 4096;
1193
Chris Wilsone28f8712011-07-18 13:11:49 -07001194 /* Previous hardware however needs to be aligned to a power-of-two
1195 * tile height. The simplest method for determining this is to reuse
1196 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001197 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001198 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001199}
1200
Jesse Barnesde151cf2008-11-12 10:03:55 -08001201int
Dave Airlieff72145b2011-02-07 12:16:14 +10001202i915_gem_mmap_gtt(struct drm_file *file,
1203 struct drm_device *dev,
1204 uint32_t handle,
1205 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001206{
Chris Wilsonda761a62010-10-27 17:37:08 +01001207 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001208 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001209 int ret;
1210
1211 if (!(dev->driver->driver_features & DRIVER_GEM))
1212 return -ENODEV;
1213
Chris Wilson76c1dec2010-09-25 11:22:51 +01001214 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001215 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001216 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001217
Dave Airlieff72145b2011-02-07 12:16:14 +10001218 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001219 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001220 ret = -ENOENT;
1221 goto unlock;
1222 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001223
Chris Wilson05394f32010-11-08 19:18:58 +00001224 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001225 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001226 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001227 }
1228
Chris Wilson05394f32010-11-08 19:18:58 +00001229 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001230 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001231 ret = -EINVAL;
1232 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001233 }
1234
Chris Wilson05394f32010-11-08 19:18:58 +00001235 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001236 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001237 if (ret)
1238 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001239 }
1240
Dave Airlieff72145b2011-02-07 12:16:14 +10001241 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001242
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001243out:
Chris Wilson05394f32010-11-08 19:18:58 +00001244 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001245unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001246 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001247 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001248}
1249
Dave Airlieff72145b2011-02-07 12:16:14 +10001250/**
1251 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1252 * @dev: DRM device
1253 * @data: GTT mapping ioctl data
1254 * @file: GEM object info
1255 *
1256 * Simply returns the fake offset to userspace so it can mmap it.
1257 * The mmap call will end up in drm_gem_mmap(), which will set things
1258 * up so we can get faults in the handler above.
1259 *
1260 * The fault handler will take care of binding the object into the GTT
1261 * (since it may have been evicted to make room for something), allocating
1262 * a fence register, and mapping the appropriate aperture address into
1263 * userspace.
1264 */
1265int
1266i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1267 struct drm_file *file)
1268{
1269 struct drm_i915_gem_mmap_gtt *args = data;
1270
1271 if (!(dev->driver->driver_features & DRIVER_GEM))
1272 return -ENODEV;
1273
1274 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1275}
1276
1277
Chris Wilsone5281cc2010-10-28 13:45:36 +01001278static int
Chris Wilson05394f32010-11-08 19:18:58 +00001279i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001280 gfp_t gfpmask)
1281{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001282 int page_count, i;
1283 struct address_space *mapping;
1284 struct inode *inode;
1285 struct page *page;
1286
1287 /* Get the list of pages out of our struct file. They'll be pinned
1288 * at this point until we release them.
1289 */
Chris Wilson05394f32010-11-08 19:18:58 +00001290 page_count = obj->base.size / PAGE_SIZE;
1291 BUG_ON(obj->pages != NULL);
1292 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1293 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001294 return -ENOMEM;
1295
Chris Wilson05394f32010-11-08 19:18:58 +00001296 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001297 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001298 gfpmask |= mapping_gfp_mask(mapping);
1299
Chris Wilsone5281cc2010-10-28 13:45:36 +01001300 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001301 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001302 if (IS_ERR(page))
1303 goto err_pages;
1304
Chris Wilson05394f32010-11-08 19:18:58 +00001305 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001306 }
1307
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001308 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001309 i915_gem_object_do_bit_17_swizzle(obj);
1310
1311 return 0;
1312
1313err_pages:
1314 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001315 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001316
Chris Wilson05394f32010-11-08 19:18:58 +00001317 drm_free_large(obj->pages);
1318 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001319 return PTR_ERR(page);
1320}
1321
Chris Wilson5cdf5882010-09-27 15:51:07 +01001322static void
Chris Wilson05394f32010-11-08 19:18:58 +00001323i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001324{
Chris Wilson05394f32010-11-08 19:18:58 +00001325 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001326 int i;
1327
Chris Wilson05394f32010-11-08 19:18:58 +00001328 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001329
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001330 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001331 i915_gem_object_save_bit_17_swizzle(obj);
1332
Chris Wilson05394f32010-11-08 19:18:58 +00001333 if (obj->madv == I915_MADV_DONTNEED)
1334 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001335
1336 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001337 if (obj->dirty)
1338 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001339
Chris Wilson05394f32010-11-08 19:18:58 +00001340 if (obj->madv == I915_MADV_WILLNEED)
1341 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001342
Chris Wilson05394f32010-11-08 19:18:58 +00001343 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001344 }
Chris Wilson05394f32010-11-08 19:18:58 +00001345 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001346
Chris Wilson05394f32010-11-08 19:18:58 +00001347 drm_free_large(obj->pages);
1348 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001349}
1350
Chris Wilson54cf91d2010-11-25 18:00:26 +00001351void
Chris Wilson05394f32010-11-08 19:18:58 +00001352i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001353 struct intel_ring_buffer *ring,
1354 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001355{
Chris Wilson05394f32010-11-08 19:18:58 +00001356 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001357 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001358
Zou Nan hai852835f2010-05-21 09:08:56 +08001359 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001360 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001361
1362 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001363 if (!obj->active) {
1364 drm_gem_object_reference(&obj->base);
1365 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001366 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001367
Eric Anholt673a3942008-07-30 12:06:12 -07001368 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001369 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1370 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001371
Chris Wilson05394f32010-11-08 19:18:58 +00001372 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001373 if (obj->fenced_gpu_access) {
1374 struct drm_i915_fence_reg *reg;
1375
1376 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1377
1378 obj->last_fenced_seqno = seqno;
1379 obj->last_fenced_ring = ring;
1380
1381 reg = &dev_priv->fence_regs[obj->fence_reg];
1382 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1383 }
1384}
1385
1386static void
1387i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1388{
1389 list_del_init(&obj->ring_list);
1390 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001391}
1392
Eric Anholtce44b0e2008-11-06 16:00:31 -08001393static void
Chris Wilson05394f32010-11-08 19:18:58 +00001394i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001395{
Chris Wilson05394f32010-11-08 19:18:58 +00001396 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001397 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001398
Chris Wilson05394f32010-11-08 19:18:58 +00001399 BUG_ON(!obj->active);
1400 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001401
1402 i915_gem_object_move_off_active(obj);
1403}
1404
1405static void
1406i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1407{
1408 struct drm_device *dev = obj->base.dev;
1409 struct drm_i915_private *dev_priv = dev->dev_private;
1410
1411 if (obj->pin_count != 0)
1412 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1413 else
1414 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1415
1416 BUG_ON(!list_empty(&obj->gpu_write_list));
1417 BUG_ON(!obj->active);
1418 obj->ring = NULL;
1419
1420 i915_gem_object_move_off_active(obj);
1421 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001422
1423 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001424 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001425 drm_gem_object_unreference(&obj->base);
1426
1427 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001428}
Eric Anholt673a3942008-07-30 12:06:12 -07001429
Chris Wilson963b4832009-09-20 23:03:54 +01001430/* Immediately discard the backing storage */
1431static void
Chris Wilson05394f32010-11-08 19:18:58 +00001432i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001433{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001434 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001435
Chris Wilsonae9fed62010-08-07 11:01:30 +01001436 /* Our goal here is to return as much of the memory as
1437 * is possible back to the system as we are called from OOM.
1438 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001439 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001440 */
Chris Wilson05394f32010-11-08 19:18:58 +00001441 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001442 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001443
Chris Wilsona14917e2012-02-24 21:13:38 +00001444 if (obj->base.map_list.map)
1445 drm_gem_free_mmap_offset(&obj->base);
1446
Chris Wilson05394f32010-11-08 19:18:58 +00001447 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001448}
1449
1450static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001451i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001452{
Chris Wilson05394f32010-11-08 19:18:58 +00001453 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001454}
1455
Eric Anholt673a3942008-07-30 12:06:12 -07001456static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001457i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1458 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001459{
Chris Wilson05394f32010-11-08 19:18:58 +00001460 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001461
Chris Wilson05394f32010-11-08 19:18:58 +00001462 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001463 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001464 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001465 if (obj->base.write_domain & flush_domains) {
1466 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001467
Chris Wilson05394f32010-11-08 19:18:58 +00001468 obj->base.write_domain = 0;
1469 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001470 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001471 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001472
Daniel Vetter63560392010-02-19 11:51:59 +01001473 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001474 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001475 old_write_domain);
1476 }
1477 }
1478}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001479
Daniel Vetter53d227f2012-01-25 16:32:49 +01001480static u32
1481i915_gem_get_seqno(struct drm_device *dev)
1482{
1483 drm_i915_private_t *dev_priv = dev->dev_private;
1484 u32 seqno = dev_priv->next_seqno;
1485
1486 /* reserve 0 for non-seqno */
1487 if (++dev_priv->next_seqno == 0)
1488 dev_priv->next_seqno = 1;
1489
1490 return seqno;
1491}
1492
1493u32
1494i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1495{
1496 if (ring->outstanding_lazy_request == 0)
1497 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1498
1499 return ring->outstanding_lazy_request;
1500}
1501
Chris Wilson3cce4692010-10-27 16:11:02 +01001502int
Chris Wilsondb53a302011-02-03 11:57:46 +00001503i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001504 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001505 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001506{
Chris Wilsondb53a302011-02-03 11:57:46 +00001507 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001508 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001509 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001510 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001511 int ret;
1512
1513 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001514 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001515
Chris Wilsona71d8d92012-02-15 11:25:36 +00001516 /* Record the position of the start of the request so that
1517 * should we detect the updated seqno part-way through the
1518 * GPU processing the request, we never over-estimate the
1519 * position of the head.
1520 */
1521 request_ring_position = intel_ring_get_tail(ring);
1522
Chris Wilson3cce4692010-10-27 16:11:02 +01001523 ret = ring->add_request(ring, &seqno);
1524 if (ret)
1525 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001526
Chris Wilsondb53a302011-02-03 11:57:46 +00001527 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001528
1529 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001530 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001531 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001532 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001533 was_empty = list_empty(&ring->request_list);
1534 list_add_tail(&request->list, &ring->request_list);
1535
Chris Wilsondb53a302011-02-03 11:57:46 +00001536 if (file) {
1537 struct drm_i915_file_private *file_priv = file->driver_priv;
1538
Chris Wilson1c255952010-09-26 11:03:27 +01001539 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001540 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001541 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001542 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001543 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001544 }
Eric Anholt673a3942008-07-30 12:06:12 -07001545
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001546 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001547
Ben Gamarif65d9422009-09-14 17:48:44 -04001548 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001549 if (i915_enable_hangcheck) {
1550 mod_timer(&dev_priv->hangcheck_timer,
1551 jiffies +
1552 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1553 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001554 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001555 queue_delayed_work(dev_priv->wq,
1556 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001557 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001558 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001559}
1560
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001561static inline void
1562i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001563{
Chris Wilson1c255952010-09-26 11:03:27 +01001564 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001565
Chris Wilson1c255952010-09-26 11:03:27 +01001566 if (!file_priv)
1567 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001568
Chris Wilson1c255952010-09-26 11:03:27 +01001569 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001570 if (request->file_priv) {
1571 list_del(&request->client_list);
1572 request->file_priv = NULL;
1573 }
Chris Wilson1c255952010-09-26 11:03:27 +01001574 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001575}
1576
Chris Wilsondfaae392010-09-22 10:31:52 +01001577static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1578 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001579{
Chris Wilsondfaae392010-09-22 10:31:52 +01001580 while (!list_empty(&ring->request_list)) {
1581 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001582
Chris Wilsondfaae392010-09-22 10:31:52 +01001583 request = list_first_entry(&ring->request_list,
1584 struct drm_i915_gem_request,
1585 list);
1586
1587 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001588 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001589 kfree(request);
1590 }
1591
1592 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001593 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001594
Chris Wilson05394f32010-11-08 19:18:58 +00001595 obj = list_first_entry(&ring->active_list,
1596 struct drm_i915_gem_object,
1597 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001598
Chris Wilson05394f32010-11-08 19:18:58 +00001599 obj->base.write_domain = 0;
1600 list_del_init(&obj->gpu_write_list);
1601 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001602 }
Eric Anholt673a3942008-07-30 12:06:12 -07001603}
1604
Chris Wilson312817a2010-11-22 11:50:11 +00001605static void i915_gem_reset_fences(struct drm_device *dev)
1606{
1607 struct drm_i915_private *dev_priv = dev->dev_private;
1608 int i;
1609
Daniel Vetter4b9de732011-10-09 21:52:02 +02001610 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001611 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001612 struct drm_i915_gem_object *obj = reg->obj;
1613
1614 if (!obj)
1615 continue;
1616
1617 if (obj->tiling_mode)
1618 i915_gem_release_mmap(obj);
1619
Chris Wilsond9e86c02010-11-10 16:40:20 +00001620 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1621 reg->obj->fenced_gpu_access = false;
1622 reg->obj->last_fenced_seqno = 0;
1623 reg->obj->last_fenced_ring = NULL;
1624 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001625 }
1626}
1627
Chris Wilson069efc12010-09-30 16:53:18 +01001628void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001629{
Chris Wilsondfaae392010-09-22 10:31:52 +01001630 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001631 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001632 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001633
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001634 for (i = 0; i < I915_NUM_RINGS; i++)
1635 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001636
1637 /* Remove anything from the flushing lists. The GPU cache is likely
1638 * to be lost on reset along with the data, so simply move the
1639 * lost bo to the inactive list.
1640 */
1641 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001642 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001643 struct drm_i915_gem_object,
1644 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001645
Chris Wilson05394f32010-11-08 19:18:58 +00001646 obj->base.write_domain = 0;
1647 list_del_init(&obj->gpu_write_list);
1648 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001649 }
Chris Wilson9375e442010-09-19 12:21:28 +01001650
Chris Wilsondfaae392010-09-22 10:31:52 +01001651 /* Move everything out of the GPU domains to ensure we do any
1652 * necessary invalidation upon reuse.
1653 */
Chris Wilson05394f32010-11-08 19:18:58 +00001654 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001655 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001656 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001657 {
Chris Wilson05394f32010-11-08 19:18:58 +00001658 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001659 }
Chris Wilson069efc12010-09-30 16:53:18 +01001660
1661 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001662 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001663}
1664
1665/**
1666 * This function clears the request list as sequence numbers are passed.
1667 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001668void
Chris Wilsondb53a302011-02-03 11:57:46 +00001669i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001670{
Eric Anholt673a3942008-07-30 12:06:12 -07001671 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001672 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001673
Chris Wilsondb53a302011-02-03 11:57:46 +00001674 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001675 return;
1676
Chris Wilsondb53a302011-02-03 11:57:46 +00001677 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001678
Chris Wilson78501ea2010-10-27 12:18:21 +01001679 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001680
Chris Wilson076e2c02011-01-21 10:07:18 +00001681 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001682 if (seqno >= ring->sync_seqno[i])
1683 ring->sync_seqno[i] = 0;
1684
Zou Nan hai852835f2010-05-21 09:08:56 +08001685 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001686 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001687
Zou Nan hai852835f2010-05-21 09:08:56 +08001688 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001689 struct drm_i915_gem_request,
1690 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001691
Chris Wilsondfaae392010-09-22 10:31:52 +01001692 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001693 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001694
Chris Wilsondb53a302011-02-03 11:57:46 +00001695 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001696 /* We know the GPU must have read the request to have
1697 * sent us the seqno + interrupt, so use the position
1698 * of tail of the request to update the last known position
1699 * of the GPU head.
1700 */
1701 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001702
1703 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001704 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001705 kfree(request);
1706 }
1707
1708 /* Move any buffers on the active list that are no longer referenced
1709 * by the ringbuffer to the flushing/inactive lists as appropriate.
1710 */
1711 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001712 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001713
Akshay Joshi0206e352011-08-16 15:34:10 -04001714 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001715 struct drm_i915_gem_object,
1716 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001717
Chris Wilson05394f32010-11-08 19:18:58 +00001718 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001719 break;
1720
Chris Wilson05394f32010-11-08 19:18:58 +00001721 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001722 i915_gem_object_move_to_flushing(obj);
1723 else
1724 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001725 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001726
Chris Wilsondb53a302011-02-03 11:57:46 +00001727 if (unlikely(ring->trace_irq_seqno &&
1728 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001729 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001730 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001731 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001732
Chris Wilsondb53a302011-02-03 11:57:46 +00001733 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001734}
1735
1736void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001737i915_gem_retire_requests(struct drm_device *dev)
1738{
1739 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001740 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001741
Chris Wilsonbe726152010-07-23 23:18:50 +01001742 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001743 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001744
1745 /* We must be careful that during unbind() we do not
1746 * accidentally infinitely recurse into retire requests.
1747 * Currently:
1748 * retire -> free -> unbind -> wait -> retire_ring
1749 */
Chris Wilson05394f32010-11-08 19:18:58 +00001750 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001751 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001752 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001753 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001754 }
1755
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001756 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001757 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001758}
1759
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001760static void
Eric Anholt673a3942008-07-30 12:06:12 -07001761i915_gem_retire_work_handler(struct work_struct *work)
1762{
1763 drm_i915_private_t *dev_priv;
1764 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001765 bool idle;
1766 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001767
1768 dev_priv = container_of(work, drm_i915_private_t,
1769 mm.retire_work.work);
1770 dev = dev_priv->dev;
1771
Chris Wilson891b48c2010-09-29 12:26:37 +01001772 /* Come back later if the device is busy... */
1773 if (!mutex_trylock(&dev->struct_mutex)) {
1774 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1775 return;
1776 }
1777
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001778 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001779
Chris Wilson0a587052011-01-09 21:05:44 +00001780 /* Send a periodic flush down the ring so we don't hold onto GEM
1781 * objects indefinitely.
1782 */
1783 idle = true;
1784 for (i = 0; i < I915_NUM_RINGS; i++) {
1785 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1786
1787 if (!list_empty(&ring->gpu_write_list)) {
1788 struct drm_i915_gem_request *request;
1789 int ret;
1790
Chris Wilsondb53a302011-02-03 11:57:46 +00001791 ret = i915_gem_flush_ring(ring,
1792 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001793 request = kzalloc(sizeof(*request), GFP_KERNEL);
1794 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001795 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001796 kfree(request);
1797 }
1798
1799 idle &= list_empty(&ring->request_list);
1800 }
1801
1802 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001803 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001804
Eric Anholt673a3942008-07-30 12:06:12 -07001805 mutex_unlock(&dev->struct_mutex);
1806}
1807
Chris Wilsondb53a302011-02-03 11:57:46 +00001808/**
1809 * Waits for a sequence number to be signaled, and cleans up the
1810 * request and object lists appropriately for that event.
1811 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001812int
Chris Wilsondb53a302011-02-03 11:57:46 +00001813i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001814 uint32_t seqno,
1815 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001816{
Chris Wilsondb53a302011-02-03 11:57:46 +00001817 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001818 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001819 int ret = 0;
1820
1821 BUG_ON(seqno == 0);
1822
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001823 if (atomic_read(&dev_priv->mm.wedged)) {
1824 struct completion *x = &dev_priv->error_completion;
1825 bool recovery_complete;
1826 unsigned long flags;
1827
1828 /* Give the error handler a chance to run. */
1829 spin_lock_irqsave(&x->wait.lock, flags);
1830 recovery_complete = x->done > 0;
1831 spin_unlock_irqrestore(&x->wait.lock, flags);
1832
1833 return recovery_complete ? -EIO : -EAGAIN;
1834 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001835
Chris Wilson5d97eb62010-11-10 20:40:02 +00001836 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001837 struct drm_i915_gem_request *request;
1838
1839 request = kzalloc(sizeof(*request), GFP_KERNEL);
1840 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001841 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001842
Chris Wilsondb53a302011-02-03 11:57:46 +00001843 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001844 if (ret) {
1845 kfree(request);
1846 return ret;
1847 }
1848
1849 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001850 }
1851
Chris Wilson78501ea2010-10-27 12:18:21 +01001852 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001853 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001854 ier = I915_READ(DEIER) | I915_READ(GTIER);
1855 else
1856 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001857 if (!ier) {
1858 DRM_ERROR("something (likely vbetool) disabled "
1859 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001860 ring->dev->driver->irq_preinstall(ring->dev);
1861 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001862 }
1863
Chris Wilsondb53a302011-02-03 11:57:46 +00001864 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001865
Chris Wilsonb2223492010-10-27 15:27:33 +01001866 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001867 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001868 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001869 ret = wait_event_interruptible(ring->irq_queue,
1870 i915_seqno_passed(ring->get_seqno(ring), seqno)
1871 || atomic_read(&dev_priv->mm.wedged));
1872 else
1873 wait_event(ring->irq_queue,
1874 i915_seqno_passed(ring->get_seqno(ring), seqno)
1875 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001876
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001877 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001878 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1879 seqno) ||
1880 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001881 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001882 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001883
Chris Wilsondb53a302011-02-03 11:57:46 +00001884 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001885 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001886 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001887 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001888
Eric Anholt673a3942008-07-30 12:06:12 -07001889 /* Directly dispatch request retiring. While we have the work queue
1890 * to handle this, the waiter on a request often wants an associated
1891 * buffer to have made it to the inactive list, and we would need
1892 * a separate wait queue to handle that.
1893 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001894 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001895 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001896
1897 return ret;
1898}
1899
Daniel Vetter48764bf2009-09-15 22:57:32 +02001900/**
Eric Anholt673a3942008-07-30 12:06:12 -07001901 * Ensures that all rendering to the object has completed and the object is
1902 * safe to unbind from the GTT or access from the CPU.
1903 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001904int
Chris Wilsonce453d82011-02-21 14:43:56 +00001905i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001906{
Eric Anholt673a3942008-07-30 12:06:12 -07001907 int ret;
1908
Eric Anholte47c68e2008-11-14 13:35:19 -08001909 /* This function only exists to support waiting for existing rendering,
1910 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001911 */
Chris Wilson05394f32010-11-08 19:18:58 +00001912 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001913
1914 /* If there is rendering queued on the buffer being evicted, wait for
1915 * it.
1916 */
Chris Wilson05394f32010-11-08 19:18:58 +00001917 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001918 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1919 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001920 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001921 return ret;
1922 }
1923
1924 return 0;
1925}
1926
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001927static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
1928{
1929 u32 old_write_domain, old_read_domains;
1930
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001931 /* Act a barrier for all accesses through the GTT */
1932 mb();
1933
1934 /* Force a pagefault for domain tracking on next user access */
1935 i915_gem_release_mmap(obj);
1936
Keith Packardb97c3d92011-06-24 21:02:59 -07001937 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
1938 return;
1939
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001940 old_read_domains = obj->base.read_domains;
1941 old_write_domain = obj->base.write_domain;
1942
1943 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
1944 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
1945
1946 trace_i915_gem_object_change_domain(obj,
1947 old_read_domains,
1948 old_write_domain);
1949}
1950
Eric Anholt673a3942008-07-30 12:06:12 -07001951/**
1952 * Unbinds an object from the GTT aperture.
1953 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001954int
Chris Wilson05394f32010-11-08 19:18:58 +00001955i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001956{
Daniel Vetter7bddb012012-02-09 17:15:47 +01001957 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001958 int ret = 0;
1959
Chris Wilson05394f32010-11-08 19:18:58 +00001960 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001961 return 0;
1962
Chris Wilson05394f32010-11-08 19:18:58 +00001963 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07001964 DRM_ERROR("Attempting to unbind pinned buffer\n");
1965 return -EINVAL;
1966 }
1967
Chris Wilsona8198ee2011-04-13 22:04:09 +01001968 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01001969 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07001970 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01001971 /* Continue on if we fail due to EIO, the GPU is hung so we
1972 * should be safe and we need to cleanup or else we might
1973 * cause memory corruption through use-after-free.
1974 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01001975
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001976 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01001977
1978 /* Move the object to the CPU domain to ensure that
1979 * any possible CPU writes while it's not in the GTT
1980 * are flushed when we go to remap it.
1981 */
1982 if (ret == 0)
1983 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1984 if (ret == -ERESTARTSYS)
1985 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01001986 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01001987 /* In the event of a disaster, abandon all caches and
1988 * hope for the best.
1989 */
Chris Wilson812ed4922010-09-30 15:08:57 +01001990 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001991 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01001992 }
Eric Anholt673a3942008-07-30 12:06:12 -07001993
Daniel Vetter96b47b62009-12-15 17:50:00 +01001994 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00001995 ret = i915_gem_object_put_fence(obj);
1996 if (ret == -ERESTARTSYS)
1997 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01001998
Chris Wilsondb53a302011-02-03 11:57:46 +00001999 trace_i915_gem_object_unbind(obj);
2000
Daniel Vetter74898d72012-02-15 23:50:22 +01002001 if (obj->has_global_gtt_mapping)
2002 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002003 if (obj->has_aliasing_ppgtt_mapping) {
2004 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2005 obj->has_aliasing_ppgtt_mapping = 0;
2006 }
Daniel Vetter74163902012-02-15 23:50:21 +01002007 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002008
Chris Wilsone5281cc2010-10-28 13:45:36 +01002009 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002010
Chris Wilson6299f992010-11-24 12:23:44 +00002011 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002012 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002013 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002014 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002015
Chris Wilson05394f32010-11-08 19:18:58 +00002016 drm_mm_put_block(obj->gtt_space);
2017 obj->gtt_space = NULL;
2018 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002019
Chris Wilson05394f32010-11-08 19:18:58 +00002020 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002021 i915_gem_object_truncate(obj);
2022
Chris Wilson8dc17752010-07-23 23:18:51 +01002023 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002024}
2025
Chris Wilson88241782011-01-07 17:09:48 +00002026int
Chris Wilsondb53a302011-02-03 11:57:46 +00002027i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002028 uint32_t invalidate_domains,
2029 uint32_t flush_domains)
2030{
Chris Wilson88241782011-01-07 17:09:48 +00002031 int ret;
2032
Chris Wilson36d527d2011-03-19 22:26:49 +00002033 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2034 return 0;
2035
Chris Wilsondb53a302011-02-03 11:57:46 +00002036 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2037
Chris Wilson88241782011-01-07 17:09:48 +00002038 ret = ring->flush(ring, invalidate_domains, flush_domains);
2039 if (ret)
2040 return ret;
2041
Chris Wilson36d527d2011-03-19 22:26:49 +00002042 if (flush_domains & I915_GEM_GPU_DOMAINS)
2043 i915_gem_process_flushing_list(ring, flush_domains);
2044
Chris Wilson88241782011-01-07 17:09:48 +00002045 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002046}
2047
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002048static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002049{
Chris Wilson88241782011-01-07 17:09:48 +00002050 int ret;
2051
Chris Wilson395b70b2010-10-28 21:28:46 +01002052 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002053 return 0;
2054
Chris Wilson88241782011-01-07 17:09:48 +00002055 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002056 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002057 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002058 if (ret)
2059 return ret;
2060 }
2061
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002062 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2063 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002064}
2065
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002066int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002067{
2068 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002069 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002070
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002071 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002072 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002073 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002074 if (ret)
2075 return ret;
2076 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002077
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002078 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002079}
2080
Daniel Vetterc6642782010-11-12 13:46:18 +00002081static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2082 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002083{
Chris Wilson05394f32010-11-08 19:18:58 +00002084 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002085 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002086 u32 size = obj->gtt_space->size;
2087 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002088 uint64_t val;
2089
Chris Wilson05394f32010-11-08 19:18:58 +00002090 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002091 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002092 val |= obj->gtt_offset & 0xfffff000;
2093 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002094 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2095
Chris Wilson05394f32010-11-08 19:18:58 +00002096 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002097 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2098 val |= I965_FENCE_REG_VALID;
2099
Daniel Vetterc6642782010-11-12 13:46:18 +00002100 if (pipelined) {
2101 int ret = intel_ring_begin(pipelined, 6);
2102 if (ret)
2103 return ret;
2104
2105 intel_ring_emit(pipelined, MI_NOOP);
2106 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2107 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2108 intel_ring_emit(pipelined, (u32)val);
2109 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2110 intel_ring_emit(pipelined, (u32)(val >> 32));
2111 intel_ring_advance(pipelined);
2112 } else
2113 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2114
2115 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002116}
2117
Daniel Vetterc6642782010-11-12 13:46:18 +00002118static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2119 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002120{
Chris Wilson05394f32010-11-08 19:18:58 +00002121 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002122 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002123 u32 size = obj->gtt_space->size;
2124 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002125 uint64_t val;
2126
Chris Wilson05394f32010-11-08 19:18:58 +00002127 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002128 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002129 val |= obj->gtt_offset & 0xfffff000;
2130 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2131 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002132 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2133 val |= I965_FENCE_REG_VALID;
2134
Daniel Vetterc6642782010-11-12 13:46:18 +00002135 if (pipelined) {
2136 int ret = intel_ring_begin(pipelined, 6);
2137 if (ret)
2138 return ret;
2139
2140 intel_ring_emit(pipelined, MI_NOOP);
2141 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2142 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2143 intel_ring_emit(pipelined, (u32)val);
2144 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2145 intel_ring_emit(pipelined, (u32)(val >> 32));
2146 intel_ring_advance(pipelined);
2147 } else
2148 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2149
2150 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002151}
2152
Daniel Vetterc6642782010-11-12 13:46:18 +00002153static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2154 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002155{
Chris Wilson05394f32010-11-08 19:18:58 +00002156 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002157 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002158 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002159 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002160 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002161
Daniel Vetterc6642782010-11-12 13:46:18 +00002162 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2163 (size & -size) != size ||
2164 (obj->gtt_offset & (size - 1)),
2165 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2166 obj->gtt_offset, obj->map_and_fenceable, size))
2167 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002168
Daniel Vetterc6642782010-11-12 13:46:18 +00002169 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002170 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002171 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002172 tile_width = 512;
2173
2174 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002175 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002176 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002177
Chris Wilson05394f32010-11-08 19:18:58 +00002178 val = obj->gtt_offset;
2179 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002180 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002181 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002182 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2183 val |= I830_FENCE_REG_VALID;
2184
Chris Wilson05394f32010-11-08 19:18:58 +00002185 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002186 if (fence_reg < 8)
2187 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002188 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002189 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002190
2191 if (pipelined) {
2192 int ret = intel_ring_begin(pipelined, 4);
2193 if (ret)
2194 return ret;
2195
2196 intel_ring_emit(pipelined, MI_NOOP);
2197 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2198 intel_ring_emit(pipelined, fence_reg);
2199 intel_ring_emit(pipelined, val);
2200 intel_ring_advance(pipelined);
2201 } else
2202 I915_WRITE(fence_reg, val);
2203
2204 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002205}
2206
Daniel Vetterc6642782010-11-12 13:46:18 +00002207static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2208 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002209{
Chris Wilson05394f32010-11-08 19:18:58 +00002210 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002211 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002212 u32 size = obj->gtt_space->size;
2213 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002214 uint32_t val;
2215 uint32_t pitch_val;
2216
Daniel Vetterc6642782010-11-12 13:46:18 +00002217 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2218 (size & -size) != size ||
2219 (obj->gtt_offset & (size - 1)),
2220 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2221 obj->gtt_offset, size))
2222 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002223
Chris Wilson05394f32010-11-08 19:18:58 +00002224 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002225 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002226
Chris Wilson05394f32010-11-08 19:18:58 +00002227 val = obj->gtt_offset;
2228 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002229 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002230 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002231 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2232 val |= I830_FENCE_REG_VALID;
2233
Daniel Vetterc6642782010-11-12 13:46:18 +00002234 if (pipelined) {
2235 int ret = intel_ring_begin(pipelined, 4);
2236 if (ret)
2237 return ret;
2238
2239 intel_ring_emit(pipelined, MI_NOOP);
2240 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2241 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2242 intel_ring_emit(pipelined, val);
2243 intel_ring_advance(pipelined);
2244 } else
2245 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2246
2247 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002248}
2249
Chris Wilsond9e86c02010-11-10 16:40:20 +00002250static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2251{
2252 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2253}
2254
2255static int
2256i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002257 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002258{
2259 int ret;
2260
2261 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002262 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002263 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002264 0, obj->base.write_domain);
2265 if (ret)
2266 return ret;
2267 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002268
2269 obj->fenced_gpu_access = false;
2270 }
2271
2272 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2273 if (!ring_passed_seqno(obj->last_fenced_ring,
2274 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002275 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002276 obj->last_fenced_seqno,
2277 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002278 if (ret)
2279 return ret;
2280 }
2281
2282 obj->last_fenced_seqno = 0;
2283 obj->last_fenced_ring = NULL;
2284 }
2285
Chris Wilson63256ec2011-01-04 18:42:07 +00002286 /* Ensure that all CPU reads are completed before installing a fence
2287 * and all writes before removing the fence.
2288 */
2289 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2290 mb();
2291
Chris Wilsond9e86c02010-11-10 16:40:20 +00002292 return 0;
2293}
2294
2295int
2296i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2297{
2298 int ret;
2299
2300 if (obj->tiling_mode)
2301 i915_gem_release_mmap(obj);
2302
Chris Wilsonce453d82011-02-21 14:43:56 +00002303 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002304 if (ret)
2305 return ret;
2306
2307 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2308 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002309
2310 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002311 i915_gem_clear_fence_reg(obj->base.dev,
2312 &dev_priv->fence_regs[obj->fence_reg]);
2313
2314 obj->fence_reg = I915_FENCE_REG_NONE;
2315 }
2316
2317 return 0;
2318}
2319
2320static struct drm_i915_fence_reg *
2321i915_find_fence_reg(struct drm_device *dev,
2322 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002323{
Daniel Vetterae3db242010-02-19 11:51:58 +01002324 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002325 struct drm_i915_fence_reg *reg, *first, *avail;
2326 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002327
2328 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002329 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002330 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2331 reg = &dev_priv->fence_regs[i];
2332 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002333 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002334
Chris Wilson1690e1e2011-12-14 13:57:08 +01002335 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002336 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002337 }
2338
Chris Wilsond9e86c02010-11-10 16:40:20 +00002339 if (avail == NULL)
2340 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002341
2342 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002343 avail = first = NULL;
2344 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002345 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002346 continue;
2347
Chris Wilsond9e86c02010-11-10 16:40:20 +00002348 if (first == NULL)
2349 first = reg;
2350
2351 if (!pipelined ||
2352 !reg->obj->last_fenced_ring ||
2353 reg->obj->last_fenced_ring == pipelined) {
2354 avail = reg;
2355 break;
2356 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002357 }
2358
Chris Wilsond9e86c02010-11-10 16:40:20 +00002359 if (avail == NULL)
2360 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002361
Chris Wilsona00b10c2010-09-24 21:15:47 +01002362 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002363}
2364
Jesse Barnesde151cf2008-11-12 10:03:55 -08002365/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002366 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002367 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002368 * @pipelined: ring on which to queue the change, or NULL for CPU access
2369 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002370 *
2371 * When mapping objects through the GTT, userspace wants to be able to write
2372 * to them without having to worry about swizzling if the object is tiled.
2373 *
2374 * This function walks the fence regs looking for a free one for @obj,
2375 * stealing one if it can't find any.
2376 *
2377 * It then sets up the reg based on the object's properties: address, pitch
2378 * and tiling format.
2379 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002380int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002381i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002382 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002383{
Chris Wilson05394f32010-11-08 19:18:58 +00002384 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002385 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002386 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002387 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002388
Chris Wilson6bda10d2010-12-05 21:04:18 +00002389 /* XXX disable pipelining. There are bugs. Shocking. */
2390 pipelined = NULL;
2391
Chris Wilsond9e86c02010-11-10 16:40:20 +00002392 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002393 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2394 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002395 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002396
Chris Wilson29c5a582011-03-17 15:23:22 +00002397 if (obj->tiling_changed) {
2398 ret = i915_gem_object_flush_fence(obj, pipelined);
2399 if (ret)
2400 return ret;
2401
2402 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2403 pipelined = NULL;
2404
2405 if (pipelined) {
2406 reg->setup_seqno =
2407 i915_gem_next_request_seqno(pipelined);
2408 obj->last_fenced_seqno = reg->setup_seqno;
2409 obj->last_fenced_ring = pipelined;
2410 }
2411
2412 goto update;
2413 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002414
2415 if (!pipelined) {
2416 if (reg->setup_seqno) {
2417 if (!ring_passed_seqno(obj->last_fenced_ring,
2418 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002419 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002420 reg->setup_seqno,
2421 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002422 if (ret)
2423 return ret;
2424 }
2425
2426 reg->setup_seqno = 0;
2427 }
2428 } else if (obj->last_fenced_ring &&
2429 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002430 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002431 if (ret)
2432 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002433 }
2434
Eric Anholta09ba7f2009-08-29 12:49:51 -07002435 return 0;
2436 }
2437
Chris Wilsond9e86c02010-11-10 16:40:20 +00002438 reg = i915_find_fence_reg(dev, pipelined);
2439 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002440 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002441
Chris Wilsonce453d82011-02-21 14:43:56 +00002442 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002443 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002444 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002445
Chris Wilsond9e86c02010-11-10 16:40:20 +00002446 if (reg->obj) {
2447 struct drm_i915_gem_object *old = reg->obj;
2448
2449 drm_gem_object_reference(&old->base);
2450
2451 if (old->tiling_mode)
2452 i915_gem_release_mmap(old);
2453
Chris Wilsonce453d82011-02-21 14:43:56 +00002454 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002455 if (ret) {
2456 drm_gem_object_unreference(&old->base);
2457 return ret;
2458 }
2459
2460 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2461 pipelined = NULL;
2462
2463 old->fence_reg = I915_FENCE_REG_NONE;
2464 old->last_fenced_ring = pipelined;
2465 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002466 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002467
2468 drm_gem_object_unreference(&old->base);
2469 } else if (obj->last_fenced_seqno == 0)
2470 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002471
Jesse Barnesde151cf2008-11-12 10:03:55 -08002472 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002473 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2474 obj->fence_reg = reg - dev_priv->fence_regs;
2475 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002476
Chris Wilsond9e86c02010-11-10 16:40:20 +00002477 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002478 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002479 obj->last_fenced_seqno = reg->setup_seqno;
2480
2481update:
2482 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002483 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002484 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002485 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002486 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002487 break;
2488 case 5:
2489 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002490 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002491 break;
2492 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002493 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002494 break;
2495 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002496 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002497 break;
2498 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002499
Daniel Vetterc6642782010-11-12 13:46:18 +00002500 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002501}
2502
2503/**
2504 * i915_gem_clear_fence_reg - clear out fence register info
2505 * @obj: object to clear
2506 *
2507 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002508 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002509 */
2510static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002511i915_gem_clear_fence_reg(struct drm_device *dev,
2512 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002513{
Jesse Barnes79e53942008-11-07 14:24:08 -08002514 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002515 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002516
Chris Wilsone259bef2010-09-17 00:32:02 +01002517 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002518 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002519 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002520 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002521 break;
2522 case 5:
2523 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002524 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002525 break;
2526 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002527 if (fence_reg >= 8)
2528 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002529 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002530 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002531 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002532
2533 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002534 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002535 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002536
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002537 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002538 reg->obj = NULL;
2539 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002540 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002541}
2542
2543/**
Eric Anholt673a3942008-07-30 12:06:12 -07002544 * Finds free space in the GTT aperture and binds the object there.
2545 */
2546static int
Chris Wilson05394f32010-11-08 19:18:58 +00002547i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002548 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002549 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002550{
Chris Wilson05394f32010-11-08 19:18:58 +00002551 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002552 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002553 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002554 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002555 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002556 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002557 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002558
Chris Wilson05394f32010-11-08 19:18:58 +00002559 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002560 DRM_ERROR("Attempting to bind a purgeable object\n");
2561 return -EINVAL;
2562 }
2563
Chris Wilsone28f8712011-07-18 13:11:49 -07002564 fence_size = i915_gem_get_gtt_size(dev,
2565 obj->base.size,
2566 obj->tiling_mode);
2567 fence_alignment = i915_gem_get_gtt_alignment(dev,
2568 obj->base.size,
2569 obj->tiling_mode);
2570 unfenced_alignment =
2571 i915_gem_get_unfenced_gtt_alignment(dev,
2572 obj->base.size,
2573 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002574
Eric Anholt673a3942008-07-30 12:06:12 -07002575 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002576 alignment = map_and_fenceable ? fence_alignment :
2577 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002578 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002579 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2580 return -EINVAL;
2581 }
2582
Chris Wilson05394f32010-11-08 19:18:58 +00002583 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002584
Chris Wilson654fc602010-05-27 13:18:21 +01002585 /* If the object is bigger than the entire aperture, reject it early
2586 * before evicting everything in a vain attempt to find space.
2587 */
Chris Wilson05394f32010-11-08 19:18:58 +00002588 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002589 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002590 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2591 return -E2BIG;
2592 }
2593
Eric Anholt673a3942008-07-30 12:06:12 -07002594 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002595 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002596 free_space =
2597 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002598 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002599 dev_priv->mm.gtt_mappable_end,
2600 0);
2601 else
2602 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002603 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002604
2605 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002606 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002607 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002608 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002609 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002610 dev_priv->mm.gtt_mappable_end,
2611 0);
2612 else
Chris Wilson05394f32010-11-08 19:18:58 +00002613 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002614 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002615 }
Chris Wilson05394f32010-11-08 19:18:58 +00002616 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002617 /* If the gtt is empty and we're still having trouble
2618 * fitting our object in, we're out of memory.
2619 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002620 ret = i915_gem_evict_something(dev, size, alignment,
2621 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002622 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002623 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002624
Eric Anholt673a3942008-07-30 12:06:12 -07002625 goto search_free;
2626 }
2627
Chris Wilsone5281cc2010-10-28 13:45:36 +01002628 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002629 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002630 drm_mm_put_block(obj->gtt_space);
2631 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002632
2633 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002634 /* first try to reclaim some memory by clearing the GTT */
2635 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002636 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002637 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002638 if (gfpmask) {
2639 gfpmask = 0;
2640 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002641 }
2642
Chris Wilson809b6332011-01-10 17:33:15 +00002643 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002644 }
2645
2646 goto search_free;
2647 }
2648
Eric Anholt673a3942008-07-30 12:06:12 -07002649 return ret;
2650 }
2651
Daniel Vetter74163902012-02-15 23:50:21 +01002652 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002653 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002654 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002655 drm_mm_put_block(obj->gtt_space);
2656 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002657
Chris Wilson809b6332011-01-10 17:33:15 +00002658 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002659 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002660
2661 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002662 }
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002663
2664 if (!dev_priv->mm.aliasing_ppgtt)
2665 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002666
Chris Wilson6299f992010-11-24 12:23:44 +00002667 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002668 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002669
Eric Anholt673a3942008-07-30 12:06:12 -07002670 /* Assert that the object is not currently in any GPU domain. As it
2671 * wasn't in the GTT, there shouldn't be any way it could have been in
2672 * a GPU cache
2673 */
Chris Wilson05394f32010-11-08 19:18:58 +00002674 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2675 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002676
Chris Wilson6299f992010-11-24 12:23:44 +00002677 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002678
Daniel Vetter75e9e912010-11-04 17:11:09 +01002679 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002680 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002681 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002682
Daniel Vetter75e9e912010-11-04 17:11:09 +01002683 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002684 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002685
Chris Wilson05394f32010-11-08 19:18:58 +00002686 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002687
Chris Wilsondb53a302011-02-03 11:57:46 +00002688 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002689 return 0;
2690}
2691
2692void
Chris Wilson05394f32010-11-08 19:18:58 +00002693i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002694{
Eric Anholt673a3942008-07-30 12:06:12 -07002695 /* If we don't have a page list set up, then we're not pinned
2696 * to GPU, and we can ignore the cache flush because it'll happen
2697 * again at bind time.
2698 */
Chris Wilson05394f32010-11-08 19:18:58 +00002699 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002700 return;
2701
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002702 /* If the GPU is snooping the contents of the CPU cache,
2703 * we do not need to manually clear the CPU cache lines. However,
2704 * the caches are only snooped when the render cache is
2705 * flushed/invalidated. As we always have to emit invalidations
2706 * and flushes when moving into and out of the RENDER domain, correct
2707 * snooping behaviour occurs naturally as the result of our domain
2708 * tracking.
2709 */
2710 if (obj->cache_level != I915_CACHE_NONE)
2711 return;
2712
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002713 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002714
Chris Wilson05394f32010-11-08 19:18:58 +00002715 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002716}
2717
Eric Anholte47c68e2008-11-14 13:35:19 -08002718/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002719static int
Chris Wilson3619df02010-11-28 15:37:17 +00002720i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002721{
Chris Wilson05394f32010-11-08 19:18:58 +00002722 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002723 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002724
2725 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002726 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002727}
2728
2729/** Flushes the GTT write domain for the object if it's dirty. */
2730static void
Chris Wilson05394f32010-11-08 19:18:58 +00002731i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002732{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002733 uint32_t old_write_domain;
2734
Chris Wilson05394f32010-11-08 19:18:58 +00002735 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002736 return;
2737
Chris Wilson63256ec2011-01-04 18:42:07 +00002738 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002739 * to it immediately go to main memory as far as we know, so there's
2740 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002741 *
2742 * However, we do have to enforce the order so that all writes through
2743 * the GTT land before any writes to the device, such as updates to
2744 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002745 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002746 wmb();
2747
Chris Wilson05394f32010-11-08 19:18:58 +00002748 old_write_domain = obj->base.write_domain;
2749 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002750
2751 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002752 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002753 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002754}
2755
2756/** Flushes the CPU write domain for the object if it's dirty. */
2757static void
Chris Wilson05394f32010-11-08 19:18:58 +00002758i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002759{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002760 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002761
Chris Wilson05394f32010-11-08 19:18:58 +00002762 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002763 return;
2764
2765 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002766 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002767 old_write_domain = obj->base.write_domain;
2768 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002769
2770 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002771 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002772 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002773}
2774
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002775/**
2776 * Moves a single object to the GTT read, and possibly write domain.
2777 *
2778 * This function returns when the move is complete, including waiting on
2779 * flushes to occur.
2780 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002781int
Chris Wilson20217462010-11-23 15:26:33 +00002782i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002783{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002784 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002785 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002786
Eric Anholt02354392008-11-26 13:58:13 -08002787 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002788 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002789 return -EINVAL;
2790
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002791 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2792 return 0;
2793
Chris Wilson88241782011-01-07 17:09:48 +00002794 ret = i915_gem_object_flush_gpu_write_domain(obj);
2795 if (ret)
2796 return ret;
2797
Chris Wilson87ca9c82010-12-02 09:42:56 +00002798 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002799 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002800 if (ret)
2801 return ret;
2802 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002803
Chris Wilson72133422010-09-13 23:56:38 +01002804 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002805
Chris Wilson05394f32010-11-08 19:18:58 +00002806 old_write_domain = obj->base.write_domain;
2807 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002808
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002809 /* It should now be out of any other write domains, and we can update
2810 * the domain values for our changes.
2811 */
Chris Wilson05394f32010-11-08 19:18:58 +00002812 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2813 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002814 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002815 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2816 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2817 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002818 }
2819
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002820 trace_i915_gem_object_change_domain(obj,
2821 old_read_domains,
2822 old_write_domain);
2823
Eric Anholte47c68e2008-11-14 13:35:19 -08002824 return 0;
2825}
2826
Chris Wilsone4ffd172011-04-04 09:44:39 +01002827int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2828 enum i915_cache_level cache_level)
2829{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002830 struct drm_device *dev = obj->base.dev;
2831 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002832 int ret;
2833
2834 if (obj->cache_level == cache_level)
2835 return 0;
2836
2837 if (obj->pin_count) {
2838 DRM_DEBUG("can not change the cache level of pinned objects\n");
2839 return -EBUSY;
2840 }
2841
2842 if (obj->gtt_space) {
2843 ret = i915_gem_object_finish_gpu(obj);
2844 if (ret)
2845 return ret;
2846
2847 i915_gem_object_finish_gtt(obj);
2848
2849 /* Before SandyBridge, you could not use tiling or fence
2850 * registers with snooped memory, so relinquish any fences
2851 * currently pointing to our region in the aperture.
2852 */
2853 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2854 ret = i915_gem_object_put_fence(obj);
2855 if (ret)
2856 return ret;
2857 }
2858
Daniel Vetter74898d72012-02-15 23:50:22 +01002859 if (obj->has_global_gtt_mapping)
2860 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002861 if (obj->has_aliasing_ppgtt_mapping)
2862 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2863 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002864 }
2865
2866 if (cache_level == I915_CACHE_NONE) {
2867 u32 old_read_domains, old_write_domain;
2868
2869 /* If we're coming from LLC cached, then we haven't
2870 * actually been tracking whether the data is in the
2871 * CPU cache or not, since we only allow one bit set
2872 * in obj->write_domain and have been skipping the clflushes.
2873 * Just set it to the CPU cache for now.
2874 */
2875 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2876 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2877
2878 old_read_domains = obj->base.read_domains;
2879 old_write_domain = obj->base.write_domain;
2880
2881 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2882 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2883
2884 trace_i915_gem_object_change_domain(obj,
2885 old_read_domains,
2886 old_write_domain);
2887 }
2888
2889 obj->cache_level = cache_level;
2890 return 0;
2891}
2892
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002893/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002894 * Prepare buffer for display plane (scanout, cursors, etc).
2895 * Can be called from an uninterruptible phase (modesetting) and allows
2896 * any flushes to be pipelined (for pageflips).
2897 *
2898 * For the display plane, we want to be in the GTT but out of any write
2899 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
2900 * ability to pipeline the waits, pinning and any additional subtleties
2901 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002902 */
2903int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002904i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2905 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002906 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002907{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002908 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002909 int ret;
2910
Chris Wilson88241782011-01-07 17:09:48 +00002911 ret = i915_gem_object_flush_gpu_write_domain(obj);
2912 if (ret)
2913 return ret;
2914
Chris Wilson0be73282010-12-06 14:36:27 +00002915 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002916 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07002917 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002918 return ret;
2919 }
2920
Eric Anholta7ef0642011-03-29 16:59:54 -07002921 /* The display engine is not coherent with the LLC cache on gen6. As
2922 * a result, we make sure that the pinning that is about to occur is
2923 * done with uncached PTEs. This is lowest common denominator for all
2924 * chipsets.
2925 *
2926 * However for gen6+, we could do better by using the GFDT bit instead
2927 * of uncaching, which would allow us to flush all the LLC-cached data
2928 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2929 */
2930 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2931 if (ret)
2932 return ret;
2933
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002934 /* As the user may map the buffer once pinned in the display plane
2935 * (e.g. libkms for the bootup splash), we have to ensure that we
2936 * always use map_and_fenceable for all scanout buffers.
2937 */
2938 ret = i915_gem_object_pin(obj, alignment, true);
2939 if (ret)
2940 return ret;
2941
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002942 i915_gem_object_flush_cpu_write_domain(obj);
2943
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002944 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002945 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002946
2947 /* It should now be out of any other write domains, and we can update
2948 * the domain values for our changes.
2949 */
2950 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002951 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002952
2953 trace_i915_gem_object_change_domain(obj,
2954 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002955 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002956
2957 return 0;
2958}
2959
Chris Wilson85345512010-11-13 09:49:11 +00002960int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002961i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002962{
Chris Wilson88241782011-01-07 17:09:48 +00002963 int ret;
2964
Chris Wilsona8198ee2011-04-13 22:04:09 +01002965 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002966 return 0;
2967
Chris Wilson88241782011-01-07 17:09:48 +00002968 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002969 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002970 if (ret)
2971 return ret;
2972 }
Chris Wilson85345512010-11-13 09:49:11 +00002973
Chris Wilsonc501ae72011-12-14 13:57:23 +01002974 ret = i915_gem_object_wait_rendering(obj);
2975 if (ret)
2976 return ret;
2977
Chris Wilsona8198ee2011-04-13 22:04:09 +01002978 /* Ensure that we invalidate the GPU's caches and TLBs. */
2979 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002980 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002981}
2982
Eric Anholte47c68e2008-11-14 13:35:19 -08002983/**
2984 * Moves a single object to the CPU read, and possibly write domain.
2985 *
2986 * This function returns when the move is complete, including waiting on
2987 * flushes to occur.
2988 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002989int
Chris Wilson919926a2010-11-12 13:42:53 +00002990i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002991{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002992 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002993 int ret;
2994
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002995 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2996 return 0;
2997
Chris Wilson88241782011-01-07 17:09:48 +00002998 ret = i915_gem_object_flush_gpu_write_domain(obj);
2999 if (ret)
3000 return ret;
3001
Chris Wilsonce453d82011-02-21 14:43:56 +00003002 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01003003 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08003004 return ret;
3005
3006 i915_gem_object_flush_gtt_write_domain(obj);
3007
Chris Wilson05394f32010-11-08 19:18:58 +00003008 old_write_domain = obj->base.write_domain;
3009 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003010
Eric Anholte47c68e2008-11-14 13:35:19 -08003011 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003012 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003013 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003014
Chris Wilson05394f32010-11-08 19:18:58 +00003015 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003016 }
3017
3018 /* It should now be out of any other write domains, and we can update
3019 * the domain values for our changes.
3020 */
Chris Wilson05394f32010-11-08 19:18:58 +00003021 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003022
3023 /* If we're writing through the CPU, then the GPU read domains will
3024 * need to be invalidated at next use.
3025 */
3026 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003027 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3028 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003029 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003030
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003031 trace_i915_gem_object_change_domain(obj,
3032 old_read_domains,
3033 old_write_domain);
3034
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003035 return 0;
3036}
3037
Eric Anholt673a3942008-07-30 12:06:12 -07003038/* Throttle our rendering by waiting until the ring has completed our requests
3039 * emitted over 20 msec ago.
3040 *
Eric Anholtb9624422009-06-03 07:27:35 +00003041 * Note that if we were to use the current jiffies each time around the loop,
3042 * we wouldn't escape the function with any frames outstanding if the time to
3043 * render a frame was over 20ms.
3044 *
Eric Anholt673a3942008-07-30 12:06:12 -07003045 * This should get us reasonable parallelism between CPU and GPU but also
3046 * relatively low latency when blocking on a particular request to finish.
3047 */
3048static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003049i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003050{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003051 struct drm_i915_private *dev_priv = dev->dev_private;
3052 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003053 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003054 struct drm_i915_gem_request *request;
3055 struct intel_ring_buffer *ring = NULL;
3056 u32 seqno = 0;
3057 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003058
Chris Wilsone110e8d2011-01-26 15:39:14 +00003059 if (atomic_read(&dev_priv->mm.wedged))
3060 return -EIO;
3061
Chris Wilson1c255952010-09-26 11:03:27 +01003062 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003063 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003064 if (time_after_eq(request->emitted_jiffies, recent_enough))
3065 break;
3066
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003067 ring = request->ring;
3068 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003069 }
Chris Wilson1c255952010-09-26 11:03:27 +01003070 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003071
3072 if (seqno == 0)
3073 return 0;
3074
3075 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003076 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003077 /* And wait for the seqno passing without holding any locks and
3078 * causing extra latency for others. This is safe as the irq
3079 * generation is designed to be run atomically and so is
3080 * lockless.
3081 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003082 if (ring->irq_get(ring)) {
3083 ret = wait_event_interruptible(ring->irq_queue,
3084 i915_seqno_passed(ring->get_seqno(ring), seqno)
3085 || atomic_read(&dev_priv->mm.wedged));
3086 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003087
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003088 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3089 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003090 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3091 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003092 atomic_read(&dev_priv->mm.wedged), 3000)) {
3093 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003094 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003095 }
3096
3097 if (ret == 0)
3098 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003099
Eric Anholt673a3942008-07-30 12:06:12 -07003100 return ret;
3101}
3102
Eric Anholt673a3942008-07-30 12:06:12 -07003103int
Chris Wilson05394f32010-11-08 19:18:58 +00003104i915_gem_object_pin(struct drm_i915_gem_object *obj,
3105 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003106 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003107{
Chris Wilson05394f32010-11-08 19:18:58 +00003108 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003109 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003110 int ret;
3111
Chris Wilson05394f32010-11-08 19:18:58 +00003112 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003113 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003114
Chris Wilson05394f32010-11-08 19:18:58 +00003115 if (obj->gtt_space != NULL) {
3116 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3117 (map_and_fenceable && !obj->map_and_fenceable)) {
3118 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003119 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003120 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3121 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003122 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003123 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003124 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003125 ret = i915_gem_object_unbind(obj);
3126 if (ret)
3127 return ret;
3128 }
3129 }
3130
Chris Wilson05394f32010-11-08 19:18:58 +00003131 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003132 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003133 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003134 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003135 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003136 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003137
Daniel Vetter74898d72012-02-15 23:50:22 +01003138 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3139 i915_gem_gtt_bind_object(obj, obj->cache_level);
3140
Chris Wilson05394f32010-11-08 19:18:58 +00003141 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003142 if (!obj->active)
3143 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003144 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003145 }
Chris Wilson6299f992010-11-24 12:23:44 +00003146 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003147
Chris Wilson23bc5982010-09-29 16:10:57 +01003148 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003149 return 0;
3150}
3151
3152void
Chris Wilson05394f32010-11-08 19:18:58 +00003153i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003154{
Chris Wilson05394f32010-11-08 19:18:58 +00003155 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003156 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003157
Chris Wilson23bc5982010-09-29 16:10:57 +01003158 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003159 BUG_ON(obj->pin_count == 0);
3160 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003161
Chris Wilson05394f32010-11-08 19:18:58 +00003162 if (--obj->pin_count == 0) {
3163 if (!obj->active)
3164 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003165 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003166 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003167 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003168 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003169}
3170
3171int
3172i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003173 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003174{
3175 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003176 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003177 int ret;
3178
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003179 ret = i915_mutex_lock_interruptible(dev);
3180 if (ret)
3181 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003182
Chris Wilson05394f32010-11-08 19:18:58 +00003183 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003184 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003185 ret = -ENOENT;
3186 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003187 }
Eric Anholt673a3942008-07-30 12:06:12 -07003188
Chris Wilson05394f32010-11-08 19:18:58 +00003189 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003190 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003191 ret = -EINVAL;
3192 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003193 }
3194
Chris Wilson05394f32010-11-08 19:18:58 +00003195 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003196 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3197 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003198 ret = -EINVAL;
3199 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003200 }
3201
Chris Wilson05394f32010-11-08 19:18:58 +00003202 obj->user_pin_count++;
3203 obj->pin_filp = file;
3204 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003205 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003206 if (ret)
3207 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003208 }
3209
3210 /* XXX - flush the CPU caches for pinned objects
3211 * as the X server doesn't manage domains yet
3212 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003213 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003214 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003215out:
Chris Wilson05394f32010-11-08 19:18:58 +00003216 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003217unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003218 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003219 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003220}
3221
3222int
3223i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003224 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003225{
3226 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003227 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003228 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003229
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003230 ret = i915_mutex_lock_interruptible(dev);
3231 if (ret)
3232 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003233
Chris Wilson05394f32010-11-08 19:18:58 +00003234 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003235 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003236 ret = -ENOENT;
3237 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003238 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003239
Chris Wilson05394f32010-11-08 19:18:58 +00003240 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003241 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3242 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003243 ret = -EINVAL;
3244 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003245 }
Chris Wilson05394f32010-11-08 19:18:58 +00003246 obj->user_pin_count--;
3247 if (obj->user_pin_count == 0) {
3248 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003249 i915_gem_object_unpin(obj);
3250 }
Eric Anholt673a3942008-07-30 12:06:12 -07003251
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003252out:
Chris Wilson05394f32010-11-08 19:18:58 +00003253 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003254unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003255 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003256 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003257}
3258
3259int
3260i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003261 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003262{
3263 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003264 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003265 int ret;
3266
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003267 ret = i915_mutex_lock_interruptible(dev);
3268 if (ret)
3269 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003270
Chris Wilson05394f32010-11-08 19:18:58 +00003271 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003272 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003273 ret = -ENOENT;
3274 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003275 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003276
Chris Wilson0be555b2010-08-04 15:36:30 +01003277 /* Count all active objects as busy, even if they are currently not used
3278 * by the gpu. Users of this interface expect objects to eventually
3279 * become non-busy without any further actions, therefore emit any
3280 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003281 */
Chris Wilson05394f32010-11-08 19:18:58 +00003282 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003283 if (args->busy) {
3284 /* Unconditionally flush objects, even when the gpu still uses this
3285 * object. Userspace calling this function indicates that it wants to
3286 * use this buffer rather sooner than later, so issuing the required
3287 * flush earlier is beneficial.
3288 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003289 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003290 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003291 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003292 } else if (obj->ring->outstanding_lazy_request ==
3293 obj->last_rendering_seqno) {
3294 struct drm_i915_gem_request *request;
3295
Chris Wilson7a194872010-12-07 10:38:40 +00003296 /* This ring is not being cleared by active usage,
3297 * so emit a request to do so.
3298 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003299 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003300 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003301 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003302 if (ret)
3303 kfree(request);
3304 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003305 ret = -ENOMEM;
3306 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003307
3308 /* Update the active list for the hardware's current position.
3309 * Otherwise this only updates on a delayed timer or when irqs
3310 * are actually unmasked, and our working set ends up being
3311 * larger than required.
3312 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003313 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003314
Chris Wilson05394f32010-11-08 19:18:58 +00003315 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003316 }
Eric Anholt673a3942008-07-30 12:06:12 -07003317
Chris Wilson05394f32010-11-08 19:18:58 +00003318 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003319unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003320 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003321 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003322}
3323
3324int
3325i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3326 struct drm_file *file_priv)
3327{
Akshay Joshi0206e352011-08-16 15:34:10 -04003328 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003329}
3330
Chris Wilson3ef94da2009-09-14 16:50:29 +01003331int
3332i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3333 struct drm_file *file_priv)
3334{
3335 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003336 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003337 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003338
3339 switch (args->madv) {
3340 case I915_MADV_DONTNEED:
3341 case I915_MADV_WILLNEED:
3342 break;
3343 default:
3344 return -EINVAL;
3345 }
3346
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003347 ret = i915_mutex_lock_interruptible(dev);
3348 if (ret)
3349 return ret;
3350
Chris Wilson05394f32010-11-08 19:18:58 +00003351 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003352 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003353 ret = -ENOENT;
3354 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003355 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003356
Chris Wilson05394f32010-11-08 19:18:58 +00003357 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003358 ret = -EINVAL;
3359 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003360 }
3361
Chris Wilson05394f32010-11-08 19:18:58 +00003362 if (obj->madv != __I915_MADV_PURGED)
3363 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003364
Chris Wilson2d7ef392009-09-20 23:13:10 +01003365 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003366 if (i915_gem_object_is_purgeable(obj) &&
3367 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003368 i915_gem_object_truncate(obj);
3369
Chris Wilson05394f32010-11-08 19:18:58 +00003370 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003371
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003372out:
Chris Wilson05394f32010-11-08 19:18:58 +00003373 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003374unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003375 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003376 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003377}
3378
Chris Wilson05394f32010-11-08 19:18:58 +00003379struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3380 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003381{
Chris Wilson73aa8082010-09-30 11:46:12 +01003382 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003383 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003384 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003385
3386 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3387 if (obj == NULL)
3388 return NULL;
3389
3390 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3391 kfree(obj);
3392 return NULL;
3393 }
3394
Hugh Dickins5949eac2011-06-27 16:18:18 -07003395 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3396 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3397
Chris Wilson73aa8082010-09-30 11:46:12 +01003398 i915_gem_info_add_obj(dev_priv, size);
3399
Daniel Vetterc397b902010-04-09 19:05:07 +00003400 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3401 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3402
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003403 if (HAS_LLC(dev)) {
3404 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003405 * cache) for about a 10% performance improvement
3406 * compared to uncached. Graphics requests other than
3407 * display scanout are coherent with the CPU in
3408 * accessing this cache. This means in this mode we
3409 * don't need to clflush on the CPU side, and on the
3410 * GPU side we only need to flush internal caches to
3411 * get data visible to the CPU.
3412 *
3413 * However, we maintain the display planes as UC, and so
3414 * need to rebind when first used as such.
3415 */
3416 obj->cache_level = I915_CACHE_LLC;
3417 } else
3418 obj->cache_level = I915_CACHE_NONE;
3419
Daniel Vetter62b8b212010-04-09 19:05:08 +00003420 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003421 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003422 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003423 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003424 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003425 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003426 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003427 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003428 /* Avoid an unnecessary call to unbind on the first bind. */
3429 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003430
Chris Wilson05394f32010-11-08 19:18:58 +00003431 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003432}
3433
Eric Anholt673a3942008-07-30 12:06:12 -07003434int i915_gem_init_object(struct drm_gem_object *obj)
3435{
Daniel Vetterc397b902010-04-09 19:05:07 +00003436 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003437
Eric Anholt673a3942008-07-30 12:06:12 -07003438 return 0;
3439}
3440
Chris Wilson05394f32010-11-08 19:18:58 +00003441static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003442{
Chris Wilson05394f32010-11-08 19:18:58 +00003443 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003444 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003445 int ret;
3446
3447 ret = i915_gem_object_unbind(obj);
3448 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003449 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003450 &dev_priv->mm.deferred_free_list);
3451 return;
3452 }
3453
Chris Wilson26e12f82011-03-20 11:20:19 +00003454 trace_i915_gem_object_destroy(obj);
3455
Chris Wilson05394f32010-11-08 19:18:58 +00003456 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003457 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003458
Chris Wilson05394f32010-11-08 19:18:58 +00003459 drm_gem_object_release(&obj->base);
3460 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003461
Chris Wilson05394f32010-11-08 19:18:58 +00003462 kfree(obj->bit_17);
3463 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003464}
3465
Chris Wilson05394f32010-11-08 19:18:58 +00003466void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003467{
Chris Wilson05394f32010-11-08 19:18:58 +00003468 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3469 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003470
Chris Wilson05394f32010-11-08 19:18:58 +00003471 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003472 i915_gem_object_unpin(obj);
3473
Chris Wilson05394f32010-11-08 19:18:58 +00003474 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003475 i915_gem_detach_phys_object(dev, obj);
3476
Chris Wilsonbe726152010-07-23 23:18:50 +01003477 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003478}
3479
Jesse Barnes5669fca2009-02-17 15:13:31 -08003480int
Eric Anholt673a3942008-07-30 12:06:12 -07003481i915_gem_idle(struct drm_device *dev)
3482{
3483 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003484 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003485
Keith Packard6dbe2772008-10-14 21:41:13 -07003486 mutex_lock(&dev->struct_mutex);
3487
Chris Wilson87acb0a2010-10-19 10:13:00 +01003488 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003489 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003490 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003491 }
Eric Anholt673a3942008-07-30 12:06:12 -07003492
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003493 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003494 if (ret) {
3495 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003496 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003497 }
Eric Anholt673a3942008-07-30 12:06:12 -07003498
Chris Wilson29105cc2010-01-07 10:39:13 +00003499 /* Under UMS, be paranoid and evict. */
3500 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003501 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003502 if (ret) {
3503 mutex_unlock(&dev->struct_mutex);
3504 return ret;
3505 }
3506 }
3507
Chris Wilson312817a2010-11-22 11:50:11 +00003508 i915_gem_reset_fences(dev);
3509
Chris Wilson29105cc2010-01-07 10:39:13 +00003510 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3511 * We need to replace this with a semaphore, or something.
3512 * And not confound mm.suspended!
3513 */
3514 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003515 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003516
3517 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003518 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003519
Keith Packard6dbe2772008-10-14 21:41:13 -07003520 mutex_unlock(&dev->struct_mutex);
3521
Chris Wilson29105cc2010-01-07 10:39:13 +00003522 /* Cancel the retire work handler, which should be idle now. */
3523 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3524
Eric Anholt673a3942008-07-30 12:06:12 -07003525 return 0;
3526}
3527
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003528void i915_gem_init_swizzling(struct drm_device *dev)
3529{
3530 drm_i915_private_t *dev_priv = dev->dev_private;
3531
Daniel Vetter11782b02012-01-31 16:47:55 +01003532 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003533 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3534 return;
3535
3536 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3537 DISP_TILE_SURFACE_SWIZZLING);
3538
Daniel Vetter11782b02012-01-31 16:47:55 +01003539 if (IS_GEN5(dev))
3540 return;
3541
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003542 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3543 if (IS_GEN6(dev))
3544 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3545 else
3546 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3547}
Daniel Vettere21af882012-02-09 20:53:27 +01003548
3549void i915_gem_init_ppgtt(struct drm_device *dev)
3550{
3551 drm_i915_private_t *dev_priv = dev->dev_private;
3552 uint32_t pd_offset;
3553 struct intel_ring_buffer *ring;
3554 int i;
3555
3556 if (!dev_priv->mm.aliasing_ppgtt)
3557 return;
3558
3559 pd_offset = dev_priv->mm.aliasing_ppgtt->pd_offset;
3560 pd_offset /= 64; /* in cachelines, */
3561 pd_offset <<= 16;
3562
3563 if (INTEL_INFO(dev)->gen == 6) {
3564 uint32_t ecochk = I915_READ(GAM_ECOCHK);
3565 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3566 ECOCHK_PPGTT_CACHE64B);
3567 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3568 } else if (INTEL_INFO(dev)->gen >= 7) {
3569 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3570 /* GFX_MODE is per-ring on gen7+ */
3571 }
3572
3573 for (i = 0; i < I915_NUM_RINGS; i++) {
3574 ring = &dev_priv->ring[i];
3575
3576 if (INTEL_INFO(dev)->gen >= 7)
3577 I915_WRITE(RING_MODE_GEN7(ring),
3578 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3579
3580 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3581 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3582 }
3583}
3584
Eric Anholt673a3942008-07-30 12:06:12 -07003585int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003586i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003587{
3588 drm_i915_private_t *dev_priv = dev->dev_private;
3589 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003590
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003591 i915_gem_init_swizzling(dev);
3592
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003593 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003594 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003595 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003596
3597 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003598 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003599 if (ret)
3600 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003601 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003602
Chris Wilson549f7362010-10-19 11:19:32 +01003603 if (HAS_BLT(dev)) {
3604 ret = intel_init_blt_ring_buffer(dev);
3605 if (ret)
3606 goto cleanup_bsd_ring;
3607 }
3608
Chris Wilson6f392d52010-08-07 11:01:22 +01003609 dev_priv->next_seqno = 1;
3610
Daniel Vettere21af882012-02-09 20:53:27 +01003611 i915_gem_init_ppgtt(dev);
3612
Chris Wilson68f95ba2010-05-27 13:18:22 +01003613 return 0;
3614
Chris Wilson549f7362010-10-19 11:19:32 +01003615cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003616 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003617cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003618 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003619 return ret;
3620}
3621
3622void
3623i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3624{
3625 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003626 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003627
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003628 for (i = 0; i < I915_NUM_RINGS; i++)
3629 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003630}
3631
3632int
Eric Anholt673a3942008-07-30 12:06:12 -07003633i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3634 struct drm_file *file_priv)
3635{
3636 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003637 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003638
Jesse Barnes79e53942008-11-07 14:24:08 -08003639 if (drm_core_check_feature(dev, DRIVER_MODESET))
3640 return 0;
3641
Ben Gamariba1234d2009-09-14 17:48:47 -04003642 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003643 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003644 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003645 }
3646
Eric Anholt673a3942008-07-30 12:06:12 -07003647 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003648 dev_priv->mm.suspended = 0;
3649
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003650 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6ac2009-04-18 10:43:32 +08003651 if (ret != 0) {
3652 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003653 return ret;
Wu Fengguangd816f6ac2009-04-18 10:43:32 +08003654 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003655
Chris Wilson69dc4982010-10-19 10:36:51 +01003656 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003657 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3658 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003659 for (i = 0; i < I915_NUM_RINGS; i++) {
3660 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3661 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3662 }
Eric Anholt673a3942008-07-30 12:06:12 -07003663 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003664
Chris Wilson5f353082010-06-07 14:03:03 +01003665 ret = drm_irq_install(dev);
3666 if (ret)
3667 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003668
Eric Anholt673a3942008-07-30 12:06:12 -07003669 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003670
3671cleanup_ringbuffer:
3672 mutex_lock(&dev->struct_mutex);
3673 i915_gem_cleanup_ringbuffer(dev);
3674 dev_priv->mm.suspended = 1;
3675 mutex_unlock(&dev->struct_mutex);
3676
3677 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003678}
3679
3680int
3681i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3682 struct drm_file *file_priv)
3683{
Jesse Barnes79e53942008-11-07 14:24:08 -08003684 if (drm_core_check_feature(dev, DRIVER_MODESET))
3685 return 0;
3686
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003687 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003688 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003689}
3690
3691void
3692i915_gem_lastclose(struct drm_device *dev)
3693{
3694 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003695
Eric Anholte806b492009-01-22 09:56:58 -08003696 if (drm_core_check_feature(dev, DRIVER_MODESET))
3697 return;
3698
Keith Packard6dbe2772008-10-14 21:41:13 -07003699 ret = i915_gem_idle(dev);
3700 if (ret)
3701 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003702}
3703
Chris Wilson64193402010-10-24 12:38:05 +01003704static void
3705init_ring_lists(struct intel_ring_buffer *ring)
3706{
3707 INIT_LIST_HEAD(&ring->active_list);
3708 INIT_LIST_HEAD(&ring->request_list);
3709 INIT_LIST_HEAD(&ring->gpu_write_list);
3710}
3711
Eric Anholt673a3942008-07-30 12:06:12 -07003712void
3713i915_gem_load(struct drm_device *dev)
3714{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003715 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003716 drm_i915_private_t *dev_priv = dev->dev_private;
3717
Chris Wilson69dc4982010-10-19 10:36:51 +01003718 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003719 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3720 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003721 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003722 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003723 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003724 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003725 for (i = 0; i < I915_NUM_RINGS; i++)
3726 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003727 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003728 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003729 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3730 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003731 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003732
Dave Airlie94400122010-07-20 13:15:31 +10003733 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3734 if (IS_GEN3(dev)) {
3735 u32 tmp = I915_READ(MI_ARB_STATE);
3736 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3737 /* arb state is a masked write, so set bit + bit in mask */
3738 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3739 I915_WRITE(MI_ARB_STATE, tmp);
3740 }
3741 }
3742
Chris Wilson72bfa192010-12-19 11:42:05 +00003743 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3744
Jesse Barnesde151cf2008-11-12 10:03:55 -08003745 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003746 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3747 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003748
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003749 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003750 dev_priv->num_fence_regs = 16;
3751 else
3752 dev_priv->num_fence_regs = 8;
3753
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003754 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003755 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3756 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003757 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003758
Eric Anholt673a3942008-07-30 12:06:12 -07003759 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003760 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003761
Chris Wilsonce453d82011-02-21 14:43:56 +00003762 dev_priv->mm.interruptible = true;
3763
Chris Wilson17250b72010-10-28 12:51:39 +01003764 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3765 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3766 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003767}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003768
3769/*
3770 * Create a physically contiguous memory object for this object
3771 * e.g. for cursor + overlay regs
3772 */
Chris Wilson995b67622010-08-20 13:23:26 +01003773static int i915_gem_init_phys_object(struct drm_device *dev,
3774 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003775{
3776 drm_i915_private_t *dev_priv = dev->dev_private;
3777 struct drm_i915_gem_phys_object *phys_obj;
3778 int ret;
3779
3780 if (dev_priv->mm.phys_objs[id - 1] || !size)
3781 return 0;
3782
Eric Anholt9a298b22009-03-24 12:23:04 -07003783 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003784 if (!phys_obj)
3785 return -ENOMEM;
3786
3787 phys_obj->id = id;
3788
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003789 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003790 if (!phys_obj->handle) {
3791 ret = -ENOMEM;
3792 goto kfree_obj;
3793 }
3794#ifdef CONFIG_X86
3795 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3796#endif
3797
3798 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3799
3800 return 0;
3801kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003802 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003803 return ret;
3804}
3805
Chris Wilson995b67622010-08-20 13:23:26 +01003806static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003807{
3808 drm_i915_private_t *dev_priv = dev->dev_private;
3809 struct drm_i915_gem_phys_object *phys_obj;
3810
3811 if (!dev_priv->mm.phys_objs[id - 1])
3812 return;
3813
3814 phys_obj = dev_priv->mm.phys_objs[id - 1];
3815 if (phys_obj->cur_obj) {
3816 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3817 }
3818
3819#ifdef CONFIG_X86
3820 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3821#endif
3822 drm_pci_free(dev, phys_obj->handle);
3823 kfree(phys_obj);
3824 dev_priv->mm.phys_objs[id - 1] = NULL;
3825}
3826
3827void i915_gem_free_all_phys_object(struct drm_device *dev)
3828{
3829 int i;
3830
Dave Airlie260883c2009-01-22 17:58:49 +10003831 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003832 i915_gem_free_phys_object(dev, i);
3833}
3834
3835void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003836 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003837{
Chris Wilson05394f32010-11-08 19:18:58 +00003838 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003839 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003840 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003841 int page_count;
3842
Chris Wilson05394f32010-11-08 19:18:58 +00003843 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003844 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003845 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003846
Chris Wilson05394f32010-11-08 19:18:58 +00003847 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003848 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003849 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003850 if (!IS_ERR(page)) {
3851 char *dst = kmap_atomic(page);
3852 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3853 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003854
Chris Wilsone5281cc2010-10-28 13:45:36 +01003855 drm_clflush_pages(&page, 1);
3856
3857 set_page_dirty(page);
3858 mark_page_accessed(page);
3859 page_cache_release(page);
3860 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003861 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003862 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003863
Chris Wilson05394f32010-11-08 19:18:58 +00003864 obj->phys_obj->cur_obj = NULL;
3865 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003866}
3867
3868int
3869i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003870 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003871 int id,
3872 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003873{
Chris Wilson05394f32010-11-08 19:18:58 +00003874 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003875 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003876 int ret = 0;
3877 int page_count;
3878 int i;
3879
3880 if (id > I915_MAX_PHYS_OBJECT)
3881 return -EINVAL;
3882
Chris Wilson05394f32010-11-08 19:18:58 +00003883 if (obj->phys_obj) {
3884 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003885 return 0;
3886 i915_gem_detach_phys_object(dev, obj);
3887 }
3888
Dave Airlie71acb5e2008-12-30 20:31:46 +10003889 /* create a new object */
3890 if (!dev_priv->mm.phys_objs[id - 1]) {
3891 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003892 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003893 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003894 DRM_ERROR("failed to init phys object %d size: %zu\n",
3895 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003896 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003897 }
3898 }
3899
3900 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003901 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3902 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003903
Chris Wilson05394f32010-11-08 19:18:58 +00003904 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003905
3906 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003907 struct page *page;
3908 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003909
Hugh Dickins5949eac2011-06-27 16:18:18 -07003910 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003911 if (IS_ERR(page))
3912 return PTR_ERR(page);
3913
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003914 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003915 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003916 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003917 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003918
3919 mark_page_accessed(page);
3920 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003921 }
3922
3923 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003924}
3925
3926static int
Chris Wilson05394f32010-11-08 19:18:58 +00003927i915_gem_phys_pwrite(struct drm_device *dev,
3928 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003929 struct drm_i915_gem_pwrite *args,
3930 struct drm_file *file_priv)
3931{
Chris Wilson05394f32010-11-08 19:18:58 +00003932 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003933 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003934
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003935 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3936 unsigned long unwritten;
3937
3938 /* The physical object once assigned is fixed for the lifetime
3939 * of the obj, so we can safely drop the lock and continue
3940 * to access vaddr.
3941 */
3942 mutex_unlock(&dev->struct_mutex);
3943 unwritten = copy_from_user(vaddr, user_data, args->size);
3944 mutex_lock(&dev->struct_mutex);
3945 if (unwritten)
3946 return -EFAULT;
3947 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003948
Daniel Vetter40ce6572010-11-05 18:12:18 +01003949 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003950 return 0;
3951}
Eric Anholtb9624422009-06-03 07:27:35 +00003952
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003953void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003954{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003955 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003956
3957 /* Clean up our request list when the client is going away, so that
3958 * later retire_requests won't dereference our soon-to-be-gone
3959 * file_priv.
3960 */
Chris Wilson1c255952010-09-26 11:03:27 +01003961 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003962 while (!list_empty(&file_priv->mm.request_list)) {
3963 struct drm_i915_gem_request *request;
3964
3965 request = list_first_entry(&file_priv->mm.request_list,
3966 struct drm_i915_gem_request,
3967 client_list);
3968 list_del(&request->client_list);
3969 request->file_priv = NULL;
3970 }
Chris Wilson1c255952010-09-26 11:03:27 +01003971 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003972}
Chris Wilson31169712009-09-14 16:50:28 +01003973
Chris Wilson31169712009-09-14 16:50:28 +01003974static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003975i915_gpu_is_active(struct drm_device *dev)
3976{
3977 drm_i915_private_t *dev_priv = dev->dev_private;
3978 int lists_empty;
3979
Chris Wilson1637ef42010-04-20 17:10:35 +01003980 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003981 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003982
3983 return !lists_empty;
3984}
3985
3986static int
Ying Han1495f232011-05-24 17:12:27 -07003987i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01003988{
Chris Wilson17250b72010-10-28 12:51:39 +01003989 struct drm_i915_private *dev_priv =
3990 container_of(shrinker,
3991 struct drm_i915_private,
3992 mm.inactive_shrinker);
3993 struct drm_device *dev = dev_priv->dev;
3994 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07003995 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01003996 int cnt;
3997
3998 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01003999 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004000
4001 /* "fast-path" to count number of available objects */
4002 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004003 cnt = 0;
4004 list_for_each_entry(obj,
4005 &dev_priv->mm.inactive_list,
4006 mm_list)
4007 cnt++;
4008 mutex_unlock(&dev->struct_mutex);
4009 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004010 }
4011
Chris Wilson1637ef42010-04-20 17:10:35 +01004012rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004013 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004014 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004015
Chris Wilson17250b72010-10-28 12:51:39 +01004016 list_for_each_entry_safe(obj, next,
4017 &dev_priv->mm.inactive_list,
4018 mm_list) {
4019 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004020 if (i915_gem_object_unbind(obj) == 0 &&
4021 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004022 break;
Chris Wilson31169712009-09-14 16:50:28 +01004023 }
Chris Wilson31169712009-09-14 16:50:28 +01004024 }
4025
4026 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004027 cnt = 0;
4028 list_for_each_entry_safe(obj, next,
4029 &dev_priv->mm.inactive_list,
4030 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004031 if (nr_to_scan &&
4032 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004033 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004034 else
Chris Wilson17250b72010-10-28 12:51:39 +01004035 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004036 }
4037
Chris Wilson17250b72010-10-28 12:51:39 +01004038 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004039 /*
4040 * We are desperate for pages, so as a last resort, wait
4041 * for the GPU to finish and discard whatever we can.
4042 * This has a dramatic impact to reduce the number of
4043 * OOM-killer events whilst running the GPU aggressively.
4044 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004045 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004046 goto rescan;
4047 }
Chris Wilson17250b72010-10-28 12:51:39 +01004048 mutex_unlock(&dev->struct_mutex);
4049 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004050}