blob: 7f33e6af6ecbeb3fa413dd57c3a72baca6a4abeb [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 Vetter96d79b52012-03-25 19:47:36 +0200303 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200304 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200305 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700306
Daniel Vetter8461d222011-12-14 13:57:32 +0100307 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700308 remain = args->size;
309
Daniel Vetter8461d222011-12-14 13:57:32 +0100310 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700311
Daniel Vetter84897312012-03-25 19:47:31 +0200312 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
313 /* If we're not in the cpu read domain, set ourself into the gtt
314 * read domain and manually flush cachelines (if required). This
315 * optimizes for the case when the gpu will dirty the data
316 * anyway again before the next pread happens. */
317 if (obj->cache_level == I915_CACHE_NONE)
318 needs_clflush = 1;
319 ret = i915_gem_object_set_to_gtt_domain(obj, false);
320 if (ret)
321 return ret;
322 }
323
Eric Anholteb014592009-03-10 11:44:52 -0700324 offset = args->offset;
325
326 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100327 struct page *page;
Daniel Vetter8461d222011-12-14 13:57:32 +0100328 char *vaddr;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100329
Eric Anholteb014592009-03-10 11:44:52 -0700330 /* Operation in this page
331 *
Eric Anholteb014592009-03-10 11:44:52 -0700332 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700333 * page_length = bytes to copy for this page
334 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100335 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700336 page_length = remain;
337 if ((shmem_page_offset + page_length) > PAGE_SIZE)
338 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700339
Daniel Vetter692a5762012-03-25 19:47:34 +0200340 if (obj->pages) {
341 page = obj->pages[offset >> PAGE_SHIFT];
342 release_page = 0;
343 } else {
344 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
345 if (IS_ERR(page)) {
346 ret = PTR_ERR(page);
347 goto out;
348 }
349 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000350 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100351
Daniel Vetter8461d222011-12-14 13:57:32 +0100352 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
353 (page_to_phys(page) & (1 << 17)) != 0;
354
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200355 if (!page_do_bit17_swizzling) {
356 vaddr = kmap_atomic(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200357 if (needs_clflush)
358 drm_clflush_virt_range(vaddr + shmem_page_offset,
359 page_length);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200360 ret = __copy_to_user_inatomic(user_data,
361 vaddr + shmem_page_offset,
362 page_length);
363 kunmap_atomic(vaddr);
364 if (ret == 0)
365 goto next_page;
366 }
367
368 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200369 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200370 mutex_unlock(&dev->struct_mutex);
371
Daniel Vetter96d79b52012-03-25 19:47:36 +0200372 if (!prefaulted) {
373 ret = fault_in_pages_writeable(user_data, remain);
374 /* Userspace is tricking us, but we've already clobbered
375 * its pages with the prefault and promised to write the
376 * data up to the first fault. Hence ignore any errors
377 * and just continue. */
378 (void)ret;
379 prefaulted = 1;
380 }
381
Daniel Vetter8461d222011-12-14 13:57:32 +0100382 vaddr = kmap(page);
Daniel Vetter84897312012-03-25 19:47:31 +0200383 if (needs_clflush)
384 drm_clflush_virt_range(vaddr + shmem_page_offset,
385 page_length);
386
Daniel Vetter8461d222011-12-14 13:57:32 +0100387 if (page_do_bit17_swizzling)
388 ret = __copy_to_user_swizzled(user_data,
389 vaddr, shmem_page_offset,
390 page_length);
391 else
392 ret = __copy_to_user(user_data,
393 vaddr + shmem_page_offset,
394 page_length);
395 kunmap(page);
Eric Anholteb014592009-03-10 11:44:52 -0700396
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200397 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200398 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200399next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100400 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200401 if (release_page)
402 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100403
Daniel Vetter8461d222011-12-14 13:57:32 +0100404 if (ret) {
405 ret = -EFAULT;
406 goto out;
407 }
408
Eric Anholteb014592009-03-10 11:44:52 -0700409 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100410 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700411 offset += page_length;
412 }
413
Chris Wilson4f27b752010-10-14 15:26:45 +0100414out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200415 if (hit_slowpath) {
416 /* Fixup: Kill any reinstated backing storage pages */
417 if (obj->madv == __I915_MADV_PURGED)
418 i915_gem_object_truncate(obj);
419 }
Eric Anholteb014592009-03-10 11:44:52 -0700420
421 return ret;
422}
423
Eric Anholt673a3942008-07-30 12:06:12 -0700424/**
425 * Reads data from the object referenced by handle.
426 *
427 * On error, the contents of *data are undefined.
428 */
429int
430i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000431 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700432{
433 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000434 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100435 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700436
Chris Wilson51311d02010-11-17 09:10:42 +0000437 if (args->size == 0)
438 return 0;
439
440 if (!access_ok(VERIFY_WRITE,
441 (char __user *)(uintptr_t)args->data_ptr,
442 args->size))
443 return -EFAULT;
444
Chris Wilson4f27b752010-10-14 15:26:45 +0100445 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100446 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100447 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700448
Chris Wilson05394f32010-11-08 19:18:58 +0000449 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000450 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100451 ret = -ENOENT;
452 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100453 }
Eric Anholt673a3942008-07-30 12:06:12 -0700454
Chris Wilson7dcd2492010-09-26 20:21:44 +0100455 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000456 if (args->offset > obj->base.size ||
457 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100458 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100459 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100460 }
461
Chris Wilsondb53a302011-02-03 11:57:46 +0000462 trace_i915_gem_object_pread(obj, args->offset, args->size);
463
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200464 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700465
Chris Wilson35b62a82010-09-26 20:23:38 +0100466out:
Chris Wilson05394f32010-11-08 19:18:58 +0000467 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100468unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100469 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700470 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700471}
472
Keith Packard0839ccb2008-10-30 19:38:48 -0700473/* This is the fast write path which cannot handle
474 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700475 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700476
Keith Packard0839ccb2008-10-30 19:38:48 -0700477static inline int
478fast_user_write(struct io_mapping *mapping,
479 loff_t page_base, int page_offset,
480 char __user *user_data,
481 int length)
482{
483 char *vaddr_atomic;
484 unsigned long unwritten;
485
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700486 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700487 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
488 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700489 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100490 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700491}
492
Eric Anholt3de09aa2009-03-09 09:42:23 -0700493/**
494 * This is the fast pwrite path, where we copy the data directly from the
495 * user into the GTT, uncached.
496 */
Eric Anholt673a3942008-07-30 12:06:12 -0700497static int
Chris Wilson05394f32010-11-08 19:18:58 +0000498i915_gem_gtt_pwrite_fast(struct drm_device *dev,
499 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700500 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000501 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700502{
Keith Packard0839ccb2008-10-30 19:38:48 -0700503 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700504 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700505 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700506 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200507 int page_offset, page_length, ret;
508
509 ret = i915_gem_object_pin(obj, 0, true);
510 if (ret)
511 goto out;
512
513 ret = i915_gem_object_set_to_gtt_domain(obj, true);
514 if (ret)
515 goto out_unpin;
516
517 ret = i915_gem_object_put_fence(obj);
518 if (ret)
519 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700520
521 user_data = (char __user *) (uintptr_t) args->data_ptr;
522 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700523
Chris Wilson05394f32010-11-08 19:18:58 +0000524 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700525
526 while (remain > 0) {
527 /* Operation in this page
528 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700529 * page_base = page offset within aperture
530 * page_offset = offset within page
531 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700532 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100533 page_base = offset & PAGE_MASK;
534 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700535 page_length = remain;
536 if ((page_offset + remain) > PAGE_SIZE)
537 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700538
Keith Packard0839ccb2008-10-30 19:38:48 -0700539 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700540 * source page isn't available. Return the error and we'll
541 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700542 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100543 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200544 page_offset, user_data, page_length)) {
545 ret = -EFAULT;
546 goto out_unpin;
547 }
Eric Anholt673a3942008-07-30 12:06:12 -0700548
Keith Packard0839ccb2008-10-30 19:38:48 -0700549 remain -= page_length;
550 user_data += page_length;
551 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700552 }
Eric Anholt673a3942008-07-30 12:06:12 -0700553
Daniel Vetter935aaa62012-03-25 19:47:35 +0200554out_unpin:
555 i915_gem_object_unpin(obj);
556out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700557 return ret;
558}
559
Eric Anholt3043c602008-10-02 12:24:47 -0700560static int
Daniel Vettere244a442012-03-25 19:47:28 +0200561i915_gem_shmem_pwrite(struct drm_device *dev,
562 struct drm_i915_gem_object *obj,
563 struct drm_i915_gem_pwrite *args,
564 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700565{
Chris Wilson05394f32010-11-08 19:18:58 +0000566 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700567 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100568 loff_t offset;
569 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100570 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100571 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200572 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200573 int needs_clflush_after = 0;
574 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200575 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700576
Daniel Vetter8c599672011-12-14 13:57:31 +0100577 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700578 remain = args->size;
579
Daniel Vetter8c599672011-12-14 13:57:31 +0100580 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700581
Daniel Vetter58642882012-03-25 19:47:37 +0200582 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
583 /* If we're not in the cpu write domain, set ourself into the gtt
584 * write domain and manually flush cachelines (if required). This
585 * optimizes for the case when the gpu will use the data
586 * right away and we therefore have to clflush anyway. */
587 if (obj->cache_level == I915_CACHE_NONE)
588 needs_clflush_after = 1;
589 ret = i915_gem_object_set_to_gtt_domain(obj, true);
590 if (ret)
591 return ret;
592 }
593 /* Same trick applies for invalidate partially written cachelines before
594 * writing. */
595 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
596 && obj->cache_level == I915_CACHE_NONE)
597 needs_clflush_before = 1;
598
Eric Anholt40123c12009-03-09 13:42:30 -0700599 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000600 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700601
602 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100603 struct page *page;
Daniel Vetter8c599672011-12-14 13:57:31 +0100604 char *vaddr;
Daniel Vetter58642882012-03-25 19:47:37 +0200605 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100606
Eric Anholt40123c12009-03-09 13:42:30 -0700607 /* Operation in this page
608 *
Eric Anholt40123c12009-03-09 13:42:30 -0700609 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700610 * page_length = bytes to copy for this page
611 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100612 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700613
614 page_length = remain;
615 if ((shmem_page_offset + page_length) > PAGE_SIZE)
616 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700617
Daniel Vetter58642882012-03-25 19:47:37 +0200618 /* If we don't overwrite a cacheline completely we need to be
619 * careful to have up-to-date data by first clflushing. Don't
620 * overcomplicate things and flush the entire patch. */
621 partial_cacheline_write = needs_clflush_before &&
622 ((shmem_page_offset | page_length)
623 & (boot_cpu_data.x86_clflush_size - 1));
624
Daniel Vetter692a5762012-03-25 19:47:34 +0200625 if (obj->pages) {
626 page = obj->pages[offset >> PAGE_SHIFT];
627 release_page = 0;
628 } else {
629 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
630 if (IS_ERR(page)) {
631 ret = PTR_ERR(page);
632 goto out;
633 }
634 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100635 }
636
Daniel Vetter8c599672011-12-14 13:57:31 +0100637 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
638 (page_to_phys(page) & (1 << 17)) != 0;
639
Daniel Vettere244a442012-03-25 19:47:28 +0200640 if (!page_do_bit17_swizzling) {
641 vaddr = kmap_atomic(page);
Daniel Vetter58642882012-03-25 19:47:37 +0200642 if (partial_cacheline_write)
643 drm_clflush_virt_range(vaddr + shmem_page_offset,
644 page_length);
Daniel Vettere244a442012-03-25 19:47:28 +0200645 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
646 user_data,
647 page_length);
Daniel Vetter58642882012-03-25 19:47:37 +0200648 if (needs_clflush_after)
649 drm_clflush_virt_range(vaddr + shmem_page_offset,
650 page_length);
Daniel Vettere244a442012-03-25 19:47:28 +0200651 kunmap_atomic(vaddr);
652
653 if (ret == 0)
654 goto next_page;
655 }
656
657 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200658 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200659 mutex_unlock(&dev->struct_mutex);
660
Daniel Vetter8c599672011-12-14 13:57:31 +0100661 vaddr = kmap(page);
Daniel Vetter58642882012-03-25 19:47:37 +0200662 if (partial_cacheline_write)
663 drm_clflush_virt_range(vaddr + shmem_page_offset,
664 page_length);
Daniel Vetter8c599672011-12-14 13:57:31 +0100665 if (page_do_bit17_swizzling)
666 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
667 user_data,
668 page_length);
669 else
670 ret = __copy_from_user(vaddr + shmem_page_offset,
671 user_data,
672 page_length);
Daniel Vetter58642882012-03-25 19:47:37 +0200673 if (needs_clflush_after)
674 drm_clflush_virt_range(vaddr + shmem_page_offset,
675 page_length);
Daniel Vetter8c599672011-12-14 13:57:31 +0100676 kunmap(page);
Eric Anholt40123c12009-03-09 13:42:30 -0700677
Daniel Vettere244a442012-03-25 19:47:28 +0200678 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200679 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200680next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100681 set_page_dirty(page);
682 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200683 if (release_page)
684 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100685
Daniel Vetter8c599672011-12-14 13:57:31 +0100686 if (ret) {
687 ret = -EFAULT;
688 goto out;
689 }
690
Eric Anholt40123c12009-03-09 13:42:30 -0700691 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100692 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700693 offset += page_length;
694 }
695
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100696out:
Daniel Vettere244a442012-03-25 19:47:28 +0200697 if (hit_slowpath) {
698 /* Fixup: Kill any reinstated backing storage pages */
699 if (obj->madv == __I915_MADV_PURGED)
700 i915_gem_object_truncate(obj);
701 /* and flush dirty cachelines in case the object isn't in the cpu write
702 * domain anymore. */
703 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
704 i915_gem_clflush_object(obj);
705 intel_gtt_chipset_flush();
706 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100707 }
Eric Anholt40123c12009-03-09 13:42:30 -0700708
Daniel Vetter58642882012-03-25 19:47:37 +0200709 if (needs_clflush_after)
710 intel_gtt_chipset_flush();
711
Eric Anholt40123c12009-03-09 13:42:30 -0700712 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700713}
714
715/**
716 * Writes data to the object referenced by handle.
717 *
718 * On error, the contents of the buffer that were to be modified are undefined.
719 */
720int
721i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100722 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700723{
724 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000725 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000726 int ret;
727
728 if (args->size == 0)
729 return 0;
730
731 if (!access_ok(VERIFY_READ,
732 (char __user *)(uintptr_t)args->data_ptr,
733 args->size))
734 return -EFAULT;
735
736 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
737 args->size);
738 if (ret)
739 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700740
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100741 ret = i915_mutex_lock_interruptible(dev);
742 if (ret)
743 return ret;
744
Chris Wilson05394f32010-11-08 19:18:58 +0000745 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000746 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100747 ret = -ENOENT;
748 goto unlock;
749 }
Eric Anholt673a3942008-07-30 12:06:12 -0700750
Chris Wilson7dcd2492010-09-26 20:21:44 +0100751 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000752 if (args->offset > obj->base.size ||
753 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100754 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100755 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100756 }
757
Chris Wilsondb53a302011-02-03 11:57:46 +0000758 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
759
Daniel Vetter935aaa62012-03-25 19:47:35 +0200760 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700761 /* We can only do the GTT pwrite on untiled buffers, as otherwise
762 * it would end up going through the fenced access, and we'll get
763 * different detiling behavior between reading and writing.
764 * pread/pwrite currently are reading and writing from the CPU
765 * perspective, requiring manual detiling by the client.
766 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100767 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100768 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100769 goto out;
770 }
771
772 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200773 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200774 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100775 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100776 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200777 /* Note that the gtt paths might fail with non-page-backed user
778 * pointers (e.g. gtt mappings when moving data between
779 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700780 }
Eric Anholt673a3942008-07-30 12:06:12 -0700781
Daniel Vetter935aaa62012-03-25 19:47:35 +0200782 if (ret == -EFAULT)
783 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100784
Chris Wilson35b62a82010-09-26 20:23:38 +0100785out:
Chris Wilson05394f32010-11-08 19:18:58 +0000786 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100787unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100788 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700789 return ret;
790}
791
792/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800793 * Called when user space prepares to use an object with the CPU, either
794 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700795 */
796int
797i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000798 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700799{
800 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000801 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800802 uint32_t read_domains = args->read_domains;
803 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700804 int ret;
805
806 if (!(dev->driver->driver_features & DRIVER_GEM))
807 return -ENODEV;
808
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800809 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100810 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800811 return -EINVAL;
812
Chris Wilson21d509e2009-06-06 09:46:02 +0100813 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800814 return -EINVAL;
815
816 /* Having something in the write domain implies it's in the read
817 * domain, and only that read domain. Enforce that in the request.
818 */
819 if (write_domain != 0 && read_domains != write_domain)
820 return -EINVAL;
821
Chris Wilson76c1dec2010-09-25 11:22:51 +0100822 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100823 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100824 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700825
Chris Wilson05394f32010-11-08 19:18:58 +0000826 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000827 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100828 ret = -ENOENT;
829 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100830 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700831
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800832 if (read_domains & I915_GEM_DOMAIN_GTT) {
833 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800834
835 /* Silently promote "you're not bound, there was nothing to do"
836 * to success, since the client was just asking us to
837 * make sure everything was done.
838 */
839 if (ret == -EINVAL)
840 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800841 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800842 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800843 }
844
Chris Wilson05394f32010-11-08 19:18:58 +0000845 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100846unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700847 mutex_unlock(&dev->struct_mutex);
848 return ret;
849}
850
851/**
852 * Called when user space has done writes to this buffer
853 */
854int
855i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000856 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700857{
858 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000859 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700860 int ret = 0;
861
862 if (!(dev->driver->driver_features & DRIVER_GEM))
863 return -ENODEV;
864
Chris Wilson76c1dec2010-09-25 11:22:51 +0100865 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100866 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100867 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100868
Chris Wilson05394f32010-11-08 19:18:58 +0000869 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000870 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100871 ret = -ENOENT;
872 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700873 }
874
Eric Anholt673a3942008-07-30 12:06:12 -0700875 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000876 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800877 i915_gem_object_flush_cpu_write_domain(obj);
878
Chris Wilson05394f32010-11-08 19:18:58 +0000879 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100880unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700881 mutex_unlock(&dev->struct_mutex);
882 return ret;
883}
884
885/**
886 * Maps the contents of an object, returning the address it is mapped
887 * into.
888 *
889 * While the mapping holds a reference on the contents of the object, it doesn't
890 * imply a ref on the object itself.
891 */
892int
893i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000894 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700895{
896 struct drm_i915_gem_mmap *args = data;
897 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700898 unsigned long addr;
899
900 if (!(dev->driver->driver_features & DRIVER_GEM))
901 return -ENODEV;
902
Chris Wilson05394f32010-11-08 19:18:58 +0000903 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -0700904 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +0100905 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -0700906
Eric Anholt673a3942008-07-30 12:06:12 -0700907 down_write(&current->mm->mmap_sem);
908 addr = do_mmap(obj->filp, 0, args->size,
909 PROT_READ | PROT_WRITE, MAP_SHARED,
910 args->offset);
911 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +0000912 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700913 if (IS_ERR((void *)addr))
914 return addr;
915
916 args->addr_ptr = (uint64_t) addr;
917
918 return 0;
919}
920
Jesse Barnesde151cf2008-11-12 10:03:55 -0800921/**
922 * i915_gem_fault - fault a page into the GTT
923 * vma: VMA in question
924 * vmf: fault info
925 *
926 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
927 * from userspace. The fault handler takes care of binding the object to
928 * the GTT (if needed), allocating and programming a fence register (again,
929 * only if needed based on whether the old reg is still valid or the object
930 * is tiled) and inserting a new PTE into the faulting process.
931 *
932 * Note that the faulting process may involve evicting existing objects
933 * from the GTT and/or fence registers to make room. So performance may
934 * suffer if the GTT working set is large or there are few fence registers
935 * left.
936 */
937int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
938{
Chris Wilson05394f32010-11-08 19:18:58 +0000939 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
940 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100941 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -0800942 pgoff_t page_offset;
943 unsigned long pfn;
944 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -0800945 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -0800946
947 /* We don't use vmf->pgoff since that has the fake offset */
948 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
949 PAGE_SHIFT;
950
Chris Wilsond9bc7e92011-02-07 13:09:31 +0000951 ret = i915_mutex_lock_interruptible(dev);
952 if (ret)
953 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100954
Chris Wilsondb53a302011-02-03 11:57:46 +0000955 trace_i915_gem_object_fault(obj, page_offset, true, write);
956
Chris Wilsond9bc7e92011-02-07 13:09:31 +0000957 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +0000958 if (!obj->map_and_fenceable) {
959 ret = i915_gem_object_unbind(obj);
960 if (ret)
961 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100962 }
Chris Wilson05394f32010-11-08 19:18:58 +0000963 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +0100964 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +0100965 if (ret)
966 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -0800967
Eric Anholte92d03b2011-06-14 16:43:09 -0700968 ret = i915_gem_object_set_to_gtt_domain(obj, write);
969 if (ret)
970 goto unlock;
971 }
Chris Wilson4a684a42010-10-28 14:44:08 +0100972
Daniel Vetter74898d72012-02-15 23:50:22 +0100973 if (!obj->has_global_gtt_mapping)
974 i915_gem_gtt_bind_object(obj, obj->cache_level);
975
Chris Wilsond9e86c02010-11-10 16:40:20 +0000976 if (obj->tiling_mode == I915_TILING_NONE)
977 ret = i915_gem_object_put_fence(obj);
978 else
Chris Wilsonce453d82011-02-21 14:43:56 +0000979 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +0000980 if (ret)
981 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -0800982
Chris Wilson05394f32010-11-08 19:18:58 +0000983 if (i915_gem_object_is_inactive(obj))
984 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +0100985
Chris Wilson6299f992010-11-24 12:23:44 +0000986 obj->fault_mappable = true;
987
Chris Wilson05394f32010-11-08 19:18:58 +0000988 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -0800989 page_offset;
990
991 /* Finally, remap it using the new GTT offset */
992 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +0100993unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -0800994 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +0000995out:
Jesse Barnesde151cf2008-11-12 10:03:55 -0800996 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +0000997 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +0000998 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +0000999 /* Give the error handler a chance to run and move the
1000 * objects off the GPU active list. Next time we service the
1001 * fault, we should be able to transition the page into the
1002 * GTT without touching the GPU (and so avoid further
1003 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1004 * with coherency, just lost writes.
1005 */
Chris Wilson045e7692010-11-07 09:18:22 +00001006 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001007 case 0:
1008 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001009 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001010 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001011 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001012 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001013 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001014 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001015 }
1016}
1017
1018/**
Chris Wilson901782b2009-07-10 08:18:50 +01001019 * i915_gem_release_mmap - remove physical page mappings
1020 * @obj: obj in question
1021 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001022 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001023 * relinquish ownership of the pages back to the system.
1024 *
1025 * It is vital that we remove the page mapping if we have mapped a tiled
1026 * object through the GTT and then lose the fence register due to
1027 * resource pressure. Similarly if the object has been moved out of the
1028 * aperture, than pages mapped into userspace must be revoked. Removing the
1029 * mapping will then trigger a page fault on the next user access, allowing
1030 * fixup by i915_gem_fault().
1031 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001032void
Chris Wilson05394f32010-11-08 19:18:58 +00001033i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001034{
Chris Wilson6299f992010-11-24 12:23:44 +00001035 if (!obj->fault_mappable)
1036 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001037
Chris Wilsonf6e47882011-03-20 21:09:12 +00001038 if (obj->base.dev->dev_mapping)
1039 unmap_mapping_range(obj->base.dev->dev_mapping,
1040 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1041 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001042
Chris Wilson6299f992010-11-24 12:23:44 +00001043 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001044}
1045
Chris Wilson92b88ae2010-11-09 11:47:32 +00001046static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001047i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001048{
Chris Wilsone28f8712011-07-18 13:11:49 -07001049 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001050
1051 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001052 tiling_mode == I915_TILING_NONE)
1053 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001054
1055 /* Previous chips need a power-of-two fence region when tiling */
1056 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001057 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001058 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001059 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001060
Chris Wilsone28f8712011-07-18 13:11:49 -07001061 while (gtt_size < size)
1062 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001063
Chris Wilsone28f8712011-07-18 13:11:49 -07001064 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001065}
1066
Jesse Barnesde151cf2008-11-12 10:03:55 -08001067/**
1068 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1069 * @obj: object to check
1070 *
1071 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001072 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001073 */
1074static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001075i915_gem_get_gtt_alignment(struct drm_device *dev,
1076 uint32_t size,
1077 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001078{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001079 /*
1080 * Minimum alignment is 4k (GTT page size), but might be greater
1081 * if a fence register is needed for the object.
1082 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001083 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001084 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001085 return 4096;
1086
1087 /*
1088 * Previous chips need to be aligned to the size of the smallest
1089 * fence register that can contain the object.
1090 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001091 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001092}
1093
Daniel Vetter5e783302010-11-14 22:32:36 +01001094/**
1095 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1096 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001097 * @dev: the device
1098 * @size: size of the object
1099 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001100 *
1101 * Return the required GTT alignment for an object, only taking into account
1102 * unfenced tiled surface requirements.
1103 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001104uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001105i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1106 uint32_t size,
1107 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001108{
Daniel Vetter5e783302010-11-14 22:32:36 +01001109 /*
1110 * Minimum alignment is 4k (GTT page size) for sane hw.
1111 */
1112 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001113 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001114 return 4096;
1115
Chris Wilsone28f8712011-07-18 13:11:49 -07001116 /* Previous hardware however needs to be aligned to a power-of-two
1117 * tile height. The simplest method for determining this is to reuse
1118 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001119 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001120 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001121}
1122
Jesse Barnesde151cf2008-11-12 10:03:55 -08001123int
Dave Airlieff72145b2011-02-07 12:16:14 +10001124i915_gem_mmap_gtt(struct drm_file *file,
1125 struct drm_device *dev,
1126 uint32_t handle,
1127 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001128{
Chris Wilsonda761a62010-10-27 17:37:08 +01001129 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001130 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001131 int ret;
1132
1133 if (!(dev->driver->driver_features & DRIVER_GEM))
1134 return -ENODEV;
1135
Chris Wilson76c1dec2010-09-25 11:22:51 +01001136 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001137 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001138 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001139
Dave Airlieff72145b2011-02-07 12:16:14 +10001140 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001141 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001142 ret = -ENOENT;
1143 goto unlock;
1144 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001145
Chris Wilson05394f32010-11-08 19:18:58 +00001146 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001147 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001148 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001149 }
1150
Chris Wilson05394f32010-11-08 19:18:58 +00001151 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001152 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001153 ret = -EINVAL;
1154 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001155 }
1156
Chris Wilson05394f32010-11-08 19:18:58 +00001157 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001158 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001159 if (ret)
1160 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001161 }
1162
Dave Airlieff72145b2011-02-07 12:16:14 +10001163 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001164
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001165out:
Chris Wilson05394f32010-11-08 19:18:58 +00001166 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001167unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001168 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001169 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001170}
1171
Dave Airlieff72145b2011-02-07 12:16:14 +10001172/**
1173 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1174 * @dev: DRM device
1175 * @data: GTT mapping ioctl data
1176 * @file: GEM object info
1177 *
1178 * Simply returns the fake offset to userspace so it can mmap it.
1179 * The mmap call will end up in drm_gem_mmap(), which will set things
1180 * up so we can get faults in the handler above.
1181 *
1182 * The fault handler will take care of binding the object into the GTT
1183 * (since it may have been evicted to make room for something), allocating
1184 * a fence register, and mapping the appropriate aperture address into
1185 * userspace.
1186 */
1187int
1188i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1189 struct drm_file *file)
1190{
1191 struct drm_i915_gem_mmap_gtt *args = data;
1192
1193 if (!(dev->driver->driver_features & DRIVER_GEM))
1194 return -ENODEV;
1195
1196 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1197}
1198
1199
Chris Wilsone5281cc2010-10-28 13:45:36 +01001200static int
Chris Wilson05394f32010-11-08 19:18:58 +00001201i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001202 gfp_t gfpmask)
1203{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001204 int page_count, i;
1205 struct address_space *mapping;
1206 struct inode *inode;
1207 struct page *page;
1208
1209 /* Get the list of pages out of our struct file. They'll be pinned
1210 * at this point until we release them.
1211 */
Chris Wilson05394f32010-11-08 19:18:58 +00001212 page_count = obj->base.size / PAGE_SIZE;
1213 BUG_ON(obj->pages != NULL);
1214 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1215 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001216 return -ENOMEM;
1217
Chris Wilson05394f32010-11-08 19:18:58 +00001218 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001219 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001220 gfpmask |= mapping_gfp_mask(mapping);
1221
Chris Wilsone5281cc2010-10-28 13:45:36 +01001222 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001223 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001224 if (IS_ERR(page))
1225 goto err_pages;
1226
Chris Wilson05394f32010-11-08 19:18:58 +00001227 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001228 }
1229
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001230 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001231 i915_gem_object_do_bit_17_swizzle(obj);
1232
1233 return 0;
1234
1235err_pages:
1236 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001237 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001238
Chris Wilson05394f32010-11-08 19:18:58 +00001239 drm_free_large(obj->pages);
1240 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001241 return PTR_ERR(page);
1242}
1243
Chris Wilson5cdf5882010-09-27 15:51:07 +01001244static void
Chris Wilson05394f32010-11-08 19:18:58 +00001245i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001246{
Chris Wilson05394f32010-11-08 19:18:58 +00001247 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001248 int i;
1249
Chris Wilson05394f32010-11-08 19:18:58 +00001250 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001251
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001252 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001253 i915_gem_object_save_bit_17_swizzle(obj);
1254
Chris Wilson05394f32010-11-08 19:18:58 +00001255 if (obj->madv == I915_MADV_DONTNEED)
1256 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001257
1258 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001259 if (obj->dirty)
1260 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001261
Chris Wilson05394f32010-11-08 19:18:58 +00001262 if (obj->madv == I915_MADV_WILLNEED)
1263 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001264
Chris Wilson05394f32010-11-08 19:18:58 +00001265 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001266 }
Chris Wilson05394f32010-11-08 19:18:58 +00001267 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001268
Chris Wilson05394f32010-11-08 19:18:58 +00001269 drm_free_large(obj->pages);
1270 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001271}
1272
Chris Wilson54cf91d2010-11-25 18:00:26 +00001273void
Chris Wilson05394f32010-11-08 19:18:58 +00001274i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001275 struct intel_ring_buffer *ring,
1276 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001277{
Chris Wilson05394f32010-11-08 19:18:58 +00001278 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001279 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001280
Zou Nan hai852835f2010-05-21 09:08:56 +08001281 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001282 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001283
1284 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001285 if (!obj->active) {
1286 drm_gem_object_reference(&obj->base);
1287 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001288 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001289
Eric Anholt673a3942008-07-30 12:06:12 -07001290 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001291 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1292 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001293
Chris Wilson05394f32010-11-08 19:18:58 +00001294 obj->last_rendering_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001295 if (obj->fenced_gpu_access) {
1296 struct drm_i915_fence_reg *reg;
1297
1298 BUG_ON(obj->fence_reg == I915_FENCE_REG_NONE);
1299
1300 obj->last_fenced_seqno = seqno;
1301 obj->last_fenced_ring = ring;
1302
1303 reg = &dev_priv->fence_regs[obj->fence_reg];
1304 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
1305 }
1306}
1307
1308static void
1309i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1310{
1311 list_del_init(&obj->ring_list);
1312 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001313}
1314
Eric Anholtce44b0e2008-11-06 16:00:31 -08001315static void
Chris Wilson05394f32010-11-08 19:18:58 +00001316i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001317{
Chris Wilson05394f32010-11-08 19:18:58 +00001318 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001319 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001320
Chris Wilson05394f32010-11-08 19:18:58 +00001321 BUG_ON(!obj->active);
1322 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001323
1324 i915_gem_object_move_off_active(obj);
1325}
1326
1327static void
1328i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1329{
1330 struct drm_device *dev = obj->base.dev;
1331 struct drm_i915_private *dev_priv = dev->dev_private;
1332
1333 if (obj->pin_count != 0)
1334 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1335 else
1336 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1337
1338 BUG_ON(!list_empty(&obj->gpu_write_list));
1339 BUG_ON(!obj->active);
1340 obj->ring = NULL;
1341
1342 i915_gem_object_move_off_active(obj);
1343 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001344
1345 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001346 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001347 drm_gem_object_unreference(&obj->base);
1348
1349 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001350}
Eric Anholt673a3942008-07-30 12:06:12 -07001351
Chris Wilson963b4832009-09-20 23:03:54 +01001352/* Immediately discard the backing storage */
1353static void
Chris Wilson05394f32010-11-08 19:18:58 +00001354i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001355{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001356 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001357
Chris Wilsonae9fed62010-08-07 11:01:30 +01001358 /* Our goal here is to return as much of the memory as
1359 * is possible back to the system as we are called from OOM.
1360 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001361 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001362 */
Chris Wilson05394f32010-11-08 19:18:58 +00001363 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001364 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001365
Chris Wilsona14917e2012-02-24 21:13:38 +00001366 if (obj->base.map_list.map)
1367 drm_gem_free_mmap_offset(&obj->base);
1368
Chris Wilson05394f32010-11-08 19:18:58 +00001369 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001370}
1371
1372static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001373i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001374{
Chris Wilson05394f32010-11-08 19:18:58 +00001375 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001376}
1377
Eric Anholt673a3942008-07-30 12:06:12 -07001378static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001379i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1380 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001381{
Chris Wilson05394f32010-11-08 19:18:58 +00001382 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001383
Chris Wilson05394f32010-11-08 19:18:58 +00001384 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001385 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001386 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001387 if (obj->base.write_domain & flush_domains) {
1388 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001389
Chris Wilson05394f32010-11-08 19:18:58 +00001390 obj->base.write_domain = 0;
1391 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001392 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001393 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001394
Daniel Vetter63560392010-02-19 11:51:59 +01001395 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001396 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001397 old_write_domain);
1398 }
1399 }
1400}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001401
Daniel Vetter53d227f2012-01-25 16:32:49 +01001402static u32
1403i915_gem_get_seqno(struct drm_device *dev)
1404{
1405 drm_i915_private_t *dev_priv = dev->dev_private;
1406 u32 seqno = dev_priv->next_seqno;
1407
1408 /* reserve 0 for non-seqno */
1409 if (++dev_priv->next_seqno == 0)
1410 dev_priv->next_seqno = 1;
1411
1412 return seqno;
1413}
1414
1415u32
1416i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1417{
1418 if (ring->outstanding_lazy_request == 0)
1419 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1420
1421 return ring->outstanding_lazy_request;
1422}
1423
Chris Wilson3cce4692010-10-27 16:11:02 +01001424int
Chris Wilsondb53a302011-02-03 11:57:46 +00001425i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001426 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001427 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001428{
Chris Wilsondb53a302011-02-03 11:57:46 +00001429 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001430 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001431 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001432 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001433 int ret;
1434
1435 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001436 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001437
Chris Wilsona71d8d92012-02-15 11:25:36 +00001438 /* Record the position of the start of the request so that
1439 * should we detect the updated seqno part-way through the
1440 * GPU processing the request, we never over-estimate the
1441 * position of the head.
1442 */
1443 request_ring_position = intel_ring_get_tail(ring);
1444
Chris Wilson3cce4692010-10-27 16:11:02 +01001445 ret = ring->add_request(ring, &seqno);
1446 if (ret)
1447 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001448
Chris Wilsondb53a302011-02-03 11:57:46 +00001449 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001450
1451 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001452 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001453 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001454 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001455 was_empty = list_empty(&ring->request_list);
1456 list_add_tail(&request->list, &ring->request_list);
1457
Chris Wilsondb53a302011-02-03 11:57:46 +00001458 if (file) {
1459 struct drm_i915_file_private *file_priv = file->driver_priv;
1460
Chris Wilson1c255952010-09-26 11:03:27 +01001461 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001462 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001463 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001464 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001465 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001466 }
Eric Anholt673a3942008-07-30 12:06:12 -07001467
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001468 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001469
Ben Gamarif65d9422009-09-14 17:48:44 -04001470 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001471 if (i915_enable_hangcheck) {
1472 mod_timer(&dev_priv->hangcheck_timer,
1473 jiffies +
1474 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1475 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001476 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001477 queue_delayed_work(dev_priv->wq,
1478 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001479 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001480 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001481}
1482
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001483static inline void
1484i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001485{
Chris Wilson1c255952010-09-26 11:03:27 +01001486 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001487
Chris Wilson1c255952010-09-26 11:03:27 +01001488 if (!file_priv)
1489 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001490
Chris Wilson1c255952010-09-26 11:03:27 +01001491 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001492 if (request->file_priv) {
1493 list_del(&request->client_list);
1494 request->file_priv = NULL;
1495 }
Chris Wilson1c255952010-09-26 11:03:27 +01001496 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001497}
1498
Chris Wilsondfaae392010-09-22 10:31:52 +01001499static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1500 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001501{
Chris Wilsondfaae392010-09-22 10:31:52 +01001502 while (!list_empty(&ring->request_list)) {
1503 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001504
Chris Wilsondfaae392010-09-22 10:31:52 +01001505 request = list_first_entry(&ring->request_list,
1506 struct drm_i915_gem_request,
1507 list);
1508
1509 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001510 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001511 kfree(request);
1512 }
1513
1514 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001515 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001516
Chris Wilson05394f32010-11-08 19:18:58 +00001517 obj = list_first_entry(&ring->active_list,
1518 struct drm_i915_gem_object,
1519 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001520
Chris Wilson05394f32010-11-08 19:18:58 +00001521 obj->base.write_domain = 0;
1522 list_del_init(&obj->gpu_write_list);
1523 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001524 }
Eric Anholt673a3942008-07-30 12:06:12 -07001525}
1526
Chris Wilson312817a2010-11-22 11:50:11 +00001527static void i915_gem_reset_fences(struct drm_device *dev)
1528{
1529 struct drm_i915_private *dev_priv = dev->dev_private;
1530 int i;
1531
Daniel Vetter4b9de732011-10-09 21:52:02 +02001532 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001533 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001534 struct drm_i915_gem_object *obj = reg->obj;
1535
1536 if (!obj)
1537 continue;
1538
1539 if (obj->tiling_mode)
1540 i915_gem_release_mmap(obj);
1541
Chris Wilsond9e86c02010-11-10 16:40:20 +00001542 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1543 reg->obj->fenced_gpu_access = false;
1544 reg->obj->last_fenced_seqno = 0;
1545 reg->obj->last_fenced_ring = NULL;
1546 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001547 }
1548}
1549
Chris Wilson069efc12010-09-30 16:53:18 +01001550void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001551{
Chris Wilsondfaae392010-09-22 10:31:52 +01001552 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001553 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001554 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001555
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001556 for (i = 0; i < I915_NUM_RINGS; i++)
1557 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001558
1559 /* Remove anything from the flushing lists. The GPU cache is likely
1560 * to be lost on reset along with the data, so simply move the
1561 * lost bo to the inactive list.
1562 */
1563 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001564 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001565 struct drm_i915_gem_object,
1566 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001567
Chris Wilson05394f32010-11-08 19:18:58 +00001568 obj->base.write_domain = 0;
1569 list_del_init(&obj->gpu_write_list);
1570 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001571 }
Chris Wilson9375e442010-09-19 12:21:28 +01001572
Chris Wilsondfaae392010-09-22 10:31:52 +01001573 /* Move everything out of the GPU domains to ensure we do any
1574 * necessary invalidation upon reuse.
1575 */
Chris Wilson05394f32010-11-08 19:18:58 +00001576 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001577 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001578 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001579 {
Chris Wilson05394f32010-11-08 19:18:58 +00001580 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001581 }
Chris Wilson069efc12010-09-30 16:53:18 +01001582
1583 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001584 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001585}
1586
1587/**
1588 * This function clears the request list as sequence numbers are passed.
1589 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001590void
Chris Wilsondb53a302011-02-03 11:57:46 +00001591i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001592{
Eric Anholt673a3942008-07-30 12:06:12 -07001593 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001594 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001595
Chris Wilsondb53a302011-02-03 11:57:46 +00001596 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001597 return;
1598
Chris Wilsondb53a302011-02-03 11:57:46 +00001599 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001600
Chris Wilson78501ea2010-10-27 12:18:21 +01001601 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001602
Chris Wilson076e2c02011-01-21 10:07:18 +00001603 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001604 if (seqno >= ring->sync_seqno[i])
1605 ring->sync_seqno[i] = 0;
1606
Zou Nan hai852835f2010-05-21 09:08:56 +08001607 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001608 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001609
Zou Nan hai852835f2010-05-21 09:08:56 +08001610 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001611 struct drm_i915_gem_request,
1612 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001613
Chris Wilsondfaae392010-09-22 10:31:52 +01001614 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001615 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001616
Chris Wilsondb53a302011-02-03 11:57:46 +00001617 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001618 /* We know the GPU must have read the request to have
1619 * sent us the seqno + interrupt, so use the position
1620 * of tail of the request to update the last known position
1621 * of the GPU head.
1622 */
1623 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001624
1625 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001626 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001627 kfree(request);
1628 }
1629
1630 /* Move any buffers on the active list that are no longer referenced
1631 * by the ringbuffer to the flushing/inactive lists as appropriate.
1632 */
1633 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001634 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001635
Akshay Joshi0206e352011-08-16 15:34:10 -04001636 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001637 struct drm_i915_gem_object,
1638 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001639
Chris Wilson05394f32010-11-08 19:18:58 +00001640 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001641 break;
1642
Chris Wilson05394f32010-11-08 19:18:58 +00001643 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001644 i915_gem_object_move_to_flushing(obj);
1645 else
1646 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001647 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001648
Chris Wilsondb53a302011-02-03 11:57:46 +00001649 if (unlikely(ring->trace_irq_seqno &&
1650 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001651 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001652 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001653 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001654
Chris Wilsondb53a302011-02-03 11:57:46 +00001655 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001656}
1657
1658void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001659i915_gem_retire_requests(struct drm_device *dev)
1660{
1661 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001662 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001663
Chris Wilsonbe726152010-07-23 23:18:50 +01001664 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001665 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001666
1667 /* We must be careful that during unbind() we do not
1668 * accidentally infinitely recurse into retire requests.
1669 * Currently:
1670 * retire -> free -> unbind -> wait -> retire_ring
1671 */
Chris Wilson05394f32010-11-08 19:18:58 +00001672 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001673 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001674 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001675 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001676 }
1677
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001678 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001679 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001680}
1681
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001682static void
Eric Anholt673a3942008-07-30 12:06:12 -07001683i915_gem_retire_work_handler(struct work_struct *work)
1684{
1685 drm_i915_private_t *dev_priv;
1686 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001687 bool idle;
1688 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001689
1690 dev_priv = container_of(work, drm_i915_private_t,
1691 mm.retire_work.work);
1692 dev = dev_priv->dev;
1693
Chris Wilson891b48c2010-09-29 12:26:37 +01001694 /* Come back later if the device is busy... */
1695 if (!mutex_trylock(&dev->struct_mutex)) {
1696 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1697 return;
1698 }
1699
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001700 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001701
Chris Wilson0a587052011-01-09 21:05:44 +00001702 /* Send a periodic flush down the ring so we don't hold onto GEM
1703 * objects indefinitely.
1704 */
1705 idle = true;
1706 for (i = 0; i < I915_NUM_RINGS; i++) {
1707 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1708
1709 if (!list_empty(&ring->gpu_write_list)) {
1710 struct drm_i915_gem_request *request;
1711 int ret;
1712
Chris Wilsondb53a302011-02-03 11:57:46 +00001713 ret = i915_gem_flush_ring(ring,
1714 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001715 request = kzalloc(sizeof(*request), GFP_KERNEL);
1716 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001717 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001718 kfree(request);
1719 }
1720
1721 idle &= list_empty(&ring->request_list);
1722 }
1723
1724 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001725 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001726
Eric Anholt673a3942008-07-30 12:06:12 -07001727 mutex_unlock(&dev->struct_mutex);
1728}
1729
Chris Wilsondb53a302011-02-03 11:57:46 +00001730/**
1731 * Waits for a sequence number to be signaled, and cleans up the
1732 * request and object lists appropriately for that event.
1733 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001734int
Chris Wilsondb53a302011-02-03 11:57:46 +00001735i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001736 uint32_t seqno,
1737 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001738{
Chris Wilsondb53a302011-02-03 11:57:46 +00001739 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001740 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001741 int ret = 0;
1742
1743 BUG_ON(seqno == 0);
1744
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001745 if (atomic_read(&dev_priv->mm.wedged)) {
1746 struct completion *x = &dev_priv->error_completion;
1747 bool recovery_complete;
1748 unsigned long flags;
1749
1750 /* Give the error handler a chance to run. */
1751 spin_lock_irqsave(&x->wait.lock, flags);
1752 recovery_complete = x->done > 0;
1753 spin_unlock_irqrestore(&x->wait.lock, flags);
1754
1755 return recovery_complete ? -EIO : -EAGAIN;
1756 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001757
Chris Wilson5d97eb62010-11-10 20:40:02 +00001758 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001759 struct drm_i915_gem_request *request;
1760
1761 request = kzalloc(sizeof(*request), GFP_KERNEL);
1762 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001763 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001764
Chris Wilsondb53a302011-02-03 11:57:46 +00001765 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001766 if (ret) {
1767 kfree(request);
1768 return ret;
1769 }
1770
1771 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001772 }
1773
Chris Wilson78501ea2010-10-27 12:18:21 +01001774 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001775 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001776 ier = I915_READ(DEIER) | I915_READ(GTIER);
1777 else
1778 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001779 if (!ier) {
1780 DRM_ERROR("something (likely vbetool) disabled "
1781 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001782 ring->dev->driver->irq_preinstall(ring->dev);
1783 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001784 }
1785
Chris Wilsondb53a302011-02-03 11:57:46 +00001786 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001787
Chris Wilsonb2223492010-10-27 15:27:33 +01001788 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001789 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001790 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001791 ret = wait_event_interruptible(ring->irq_queue,
1792 i915_seqno_passed(ring->get_seqno(ring), seqno)
1793 || atomic_read(&dev_priv->mm.wedged));
1794 else
1795 wait_event(ring->irq_queue,
1796 i915_seqno_passed(ring->get_seqno(ring), seqno)
1797 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001798
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001799 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001800 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1801 seqno) ||
1802 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001803 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001804 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001805
Chris Wilsondb53a302011-02-03 11:57:46 +00001806 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001807 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001808 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001809 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001810
Eric Anholt673a3942008-07-30 12:06:12 -07001811 /* Directly dispatch request retiring. While we have the work queue
1812 * to handle this, the waiter on a request often wants an associated
1813 * buffer to have made it to the inactive list, and we would need
1814 * a separate wait queue to handle that.
1815 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001816 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001817 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001818
1819 return ret;
1820}
1821
Daniel Vetter48764bf2009-09-15 22:57:32 +02001822/**
Eric Anholt673a3942008-07-30 12:06:12 -07001823 * Ensures that all rendering to the object has completed and the object is
1824 * safe to unbind from the GTT or access from the CPU.
1825 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001826int
Chris Wilsonce453d82011-02-21 14:43:56 +00001827i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001828{
Eric Anholt673a3942008-07-30 12:06:12 -07001829 int ret;
1830
Eric Anholte47c68e2008-11-14 13:35:19 -08001831 /* This function only exists to support waiting for existing rendering,
1832 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001833 */
Chris Wilson05394f32010-11-08 19:18:58 +00001834 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001835
1836 /* If there is rendering queued on the buffer being evicted, wait for
1837 * it.
1838 */
Chris Wilson05394f32010-11-08 19:18:58 +00001839 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001840 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1841 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001842 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001843 return ret;
1844 }
1845
1846 return 0;
1847}
1848
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001849static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
1850{
1851 u32 old_write_domain, old_read_domains;
1852
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001853 /* Act a barrier for all accesses through the GTT */
1854 mb();
1855
1856 /* Force a pagefault for domain tracking on next user access */
1857 i915_gem_release_mmap(obj);
1858
Keith Packardb97c3d92011-06-24 21:02:59 -07001859 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
1860 return;
1861
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001862 old_read_domains = obj->base.read_domains;
1863 old_write_domain = obj->base.write_domain;
1864
1865 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
1866 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
1867
1868 trace_i915_gem_object_change_domain(obj,
1869 old_read_domains,
1870 old_write_domain);
1871}
1872
Eric Anholt673a3942008-07-30 12:06:12 -07001873/**
1874 * Unbinds an object from the GTT aperture.
1875 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08001876int
Chris Wilson05394f32010-11-08 19:18:58 +00001877i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001878{
Daniel Vetter7bddb012012-02-09 17:15:47 +01001879 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001880 int ret = 0;
1881
Chris Wilson05394f32010-11-08 19:18:58 +00001882 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001883 return 0;
1884
Chris Wilson05394f32010-11-08 19:18:58 +00001885 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07001886 DRM_ERROR("Attempting to unbind pinned buffer\n");
1887 return -EINVAL;
1888 }
1889
Chris Wilsona8198ee2011-04-13 22:04:09 +01001890 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01001891 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07001892 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01001893 /* Continue on if we fail due to EIO, the GPU is hung so we
1894 * should be safe and we need to cleanup or else we might
1895 * cause memory corruption through use-after-free.
1896 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01001897
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01001898 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01001899
1900 /* Move the object to the CPU domain to ensure that
1901 * any possible CPU writes while it's not in the GTT
1902 * are flushed when we go to remap it.
1903 */
1904 if (ret == 0)
1905 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1906 if (ret == -ERESTARTSYS)
1907 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01001908 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01001909 /* In the event of a disaster, abandon all caches and
1910 * hope for the best.
1911 */
Chris Wilson812ed4922010-09-30 15:08:57 +01001912 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001913 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01001914 }
Eric Anholt673a3942008-07-30 12:06:12 -07001915
Daniel Vetter96b47b62009-12-15 17:50:00 +01001916 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00001917 ret = i915_gem_object_put_fence(obj);
1918 if (ret == -ERESTARTSYS)
1919 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01001920
Chris Wilsondb53a302011-02-03 11:57:46 +00001921 trace_i915_gem_object_unbind(obj);
1922
Daniel Vetter74898d72012-02-15 23:50:22 +01001923 if (obj->has_global_gtt_mapping)
1924 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001925 if (obj->has_aliasing_ppgtt_mapping) {
1926 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
1927 obj->has_aliasing_ppgtt_mapping = 0;
1928 }
Daniel Vetter74163902012-02-15 23:50:21 +01001929 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01001930
Chris Wilsone5281cc2010-10-28 13:45:36 +01001931 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001932
Chris Wilson6299f992010-11-24 12:23:44 +00001933 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00001934 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01001935 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00001936 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07001937
Chris Wilson05394f32010-11-08 19:18:58 +00001938 drm_mm_put_block(obj->gtt_space);
1939 obj->gtt_space = NULL;
1940 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001941
Chris Wilson05394f32010-11-08 19:18:58 +00001942 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01001943 i915_gem_object_truncate(obj);
1944
Chris Wilson8dc17752010-07-23 23:18:51 +01001945 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001946}
1947
Chris Wilson88241782011-01-07 17:09:48 +00001948int
Chris Wilsondb53a302011-02-03 11:57:46 +00001949i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00001950 uint32_t invalidate_domains,
1951 uint32_t flush_domains)
1952{
Chris Wilson88241782011-01-07 17:09:48 +00001953 int ret;
1954
Chris Wilson36d527d2011-03-19 22:26:49 +00001955 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
1956 return 0;
1957
Chris Wilsondb53a302011-02-03 11:57:46 +00001958 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
1959
Chris Wilson88241782011-01-07 17:09:48 +00001960 ret = ring->flush(ring, invalidate_domains, flush_domains);
1961 if (ret)
1962 return ret;
1963
Chris Wilson36d527d2011-03-19 22:26:49 +00001964 if (flush_domains & I915_GEM_GPU_DOMAINS)
1965 i915_gem_process_flushing_list(ring, flush_domains);
1966
Chris Wilson88241782011-01-07 17:09:48 +00001967 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00001968}
1969
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001970static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01001971{
Chris Wilson88241782011-01-07 17:09:48 +00001972 int ret;
1973
Chris Wilson395b70b2010-10-28 21:28:46 +01001974 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01001975 return 0;
1976
Chris Wilson88241782011-01-07 17:09:48 +00001977 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001978 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00001979 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00001980 if (ret)
1981 return ret;
1982 }
1983
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001984 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
1985 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01001986}
1987
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001988int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01001989{
1990 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001991 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01001992
Daniel Vetter4df2faf2010-02-19 11:52:00 +01001993 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001994 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001995 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001996 if (ret)
1997 return ret;
1998 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08001999
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002000 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002001}
2002
Daniel Vetterc6642782010-11-12 13:46:18 +00002003static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2004 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002005{
Chris Wilson05394f32010-11-08 19:18:58 +00002006 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002007 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002008 u32 size = obj->gtt_space->size;
2009 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002010 uint64_t val;
2011
Chris Wilson05394f32010-11-08 19:18:58 +00002012 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002013 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002014 val |= obj->gtt_offset & 0xfffff000;
2015 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002016 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2017
Chris Wilson05394f32010-11-08 19:18:58 +00002018 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002019 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2020 val |= I965_FENCE_REG_VALID;
2021
Daniel Vetterc6642782010-11-12 13:46:18 +00002022 if (pipelined) {
2023 int ret = intel_ring_begin(pipelined, 6);
2024 if (ret)
2025 return ret;
2026
2027 intel_ring_emit(pipelined, MI_NOOP);
2028 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2029 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2030 intel_ring_emit(pipelined, (u32)val);
2031 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2032 intel_ring_emit(pipelined, (u32)(val >> 32));
2033 intel_ring_advance(pipelined);
2034 } else
2035 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2036
2037 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002038}
2039
Daniel Vetterc6642782010-11-12 13:46:18 +00002040static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2041 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002042{
Chris Wilson05394f32010-11-08 19:18:58 +00002043 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002044 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002045 u32 size = obj->gtt_space->size;
2046 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002047 uint64_t val;
2048
Chris Wilson05394f32010-11-08 19:18:58 +00002049 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002050 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002051 val |= obj->gtt_offset & 0xfffff000;
2052 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2053 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002054 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2055 val |= I965_FENCE_REG_VALID;
2056
Daniel Vetterc6642782010-11-12 13:46:18 +00002057 if (pipelined) {
2058 int ret = intel_ring_begin(pipelined, 6);
2059 if (ret)
2060 return ret;
2061
2062 intel_ring_emit(pipelined, MI_NOOP);
2063 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2064 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2065 intel_ring_emit(pipelined, (u32)val);
2066 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2067 intel_ring_emit(pipelined, (u32)(val >> 32));
2068 intel_ring_advance(pipelined);
2069 } else
2070 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2071
2072 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002073}
2074
Daniel Vetterc6642782010-11-12 13:46:18 +00002075static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2076 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002077{
Chris Wilson05394f32010-11-08 19:18:58 +00002078 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002079 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002080 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002081 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002082 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002083
Daniel Vetterc6642782010-11-12 13:46:18 +00002084 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2085 (size & -size) != size ||
2086 (obj->gtt_offset & (size - 1)),
2087 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2088 obj->gtt_offset, obj->map_and_fenceable, size))
2089 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002090
Daniel Vetterc6642782010-11-12 13:46:18 +00002091 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002092 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002093 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002094 tile_width = 512;
2095
2096 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002097 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002098 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002099
Chris Wilson05394f32010-11-08 19:18:58 +00002100 val = obj->gtt_offset;
2101 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002102 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002103 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002104 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2105 val |= I830_FENCE_REG_VALID;
2106
Chris Wilson05394f32010-11-08 19:18:58 +00002107 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002108 if (fence_reg < 8)
2109 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002110 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002111 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002112
2113 if (pipelined) {
2114 int ret = intel_ring_begin(pipelined, 4);
2115 if (ret)
2116 return ret;
2117
2118 intel_ring_emit(pipelined, MI_NOOP);
2119 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2120 intel_ring_emit(pipelined, fence_reg);
2121 intel_ring_emit(pipelined, val);
2122 intel_ring_advance(pipelined);
2123 } else
2124 I915_WRITE(fence_reg, val);
2125
2126 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002127}
2128
Daniel Vetterc6642782010-11-12 13:46:18 +00002129static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2130 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002131{
Chris Wilson05394f32010-11-08 19:18:58 +00002132 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002133 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002134 u32 size = obj->gtt_space->size;
2135 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002136 uint32_t val;
2137 uint32_t pitch_val;
2138
Daniel Vetterc6642782010-11-12 13:46:18 +00002139 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2140 (size & -size) != size ||
2141 (obj->gtt_offset & (size - 1)),
2142 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2143 obj->gtt_offset, size))
2144 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002145
Chris Wilson05394f32010-11-08 19:18:58 +00002146 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002147 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002148
Chris Wilson05394f32010-11-08 19:18:58 +00002149 val = obj->gtt_offset;
2150 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002151 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002152 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002153 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2154 val |= I830_FENCE_REG_VALID;
2155
Daniel Vetterc6642782010-11-12 13:46:18 +00002156 if (pipelined) {
2157 int ret = intel_ring_begin(pipelined, 4);
2158 if (ret)
2159 return ret;
2160
2161 intel_ring_emit(pipelined, MI_NOOP);
2162 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2163 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2164 intel_ring_emit(pipelined, val);
2165 intel_ring_advance(pipelined);
2166 } else
2167 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2168
2169 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002170}
2171
Chris Wilsond9e86c02010-11-10 16:40:20 +00002172static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2173{
2174 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2175}
2176
2177static int
2178i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002179 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002180{
2181 int ret;
2182
2183 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002184 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002185 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002186 0, obj->base.write_domain);
2187 if (ret)
2188 return ret;
2189 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002190
2191 obj->fenced_gpu_access = false;
2192 }
2193
2194 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2195 if (!ring_passed_seqno(obj->last_fenced_ring,
2196 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002197 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002198 obj->last_fenced_seqno,
2199 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002200 if (ret)
2201 return ret;
2202 }
2203
2204 obj->last_fenced_seqno = 0;
2205 obj->last_fenced_ring = NULL;
2206 }
2207
Chris Wilson63256ec2011-01-04 18:42:07 +00002208 /* Ensure that all CPU reads are completed before installing a fence
2209 * and all writes before removing the fence.
2210 */
2211 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2212 mb();
2213
Chris Wilsond9e86c02010-11-10 16:40:20 +00002214 return 0;
2215}
2216
2217int
2218i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2219{
2220 int ret;
2221
2222 if (obj->tiling_mode)
2223 i915_gem_release_mmap(obj);
2224
Chris Wilsonce453d82011-02-21 14:43:56 +00002225 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002226 if (ret)
2227 return ret;
2228
2229 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2230 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002231
2232 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002233 i915_gem_clear_fence_reg(obj->base.dev,
2234 &dev_priv->fence_regs[obj->fence_reg]);
2235
2236 obj->fence_reg = I915_FENCE_REG_NONE;
2237 }
2238
2239 return 0;
2240}
2241
2242static struct drm_i915_fence_reg *
2243i915_find_fence_reg(struct drm_device *dev,
2244 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002245{
Daniel Vetterae3db242010-02-19 11:51:58 +01002246 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002247 struct drm_i915_fence_reg *reg, *first, *avail;
2248 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002249
2250 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002251 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002252 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2253 reg = &dev_priv->fence_regs[i];
2254 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002255 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002256
Chris Wilson1690e1e2011-12-14 13:57:08 +01002257 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002258 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002259 }
2260
Chris Wilsond9e86c02010-11-10 16:40:20 +00002261 if (avail == NULL)
2262 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002263
2264 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002265 avail = first = NULL;
2266 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002267 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002268 continue;
2269
Chris Wilsond9e86c02010-11-10 16:40:20 +00002270 if (first == NULL)
2271 first = reg;
2272
2273 if (!pipelined ||
2274 !reg->obj->last_fenced_ring ||
2275 reg->obj->last_fenced_ring == pipelined) {
2276 avail = reg;
2277 break;
2278 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002279 }
2280
Chris Wilsond9e86c02010-11-10 16:40:20 +00002281 if (avail == NULL)
2282 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002283
Chris Wilsona00b10c2010-09-24 21:15:47 +01002284 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002285}
2286
Jesse Barnesde151cf2008-11-12 10:03:55 -08002287/**
Chris Wilsond9e86c02010-11-10 16:40:20 +00002288 * i915_gem_object_get_fence - set up a fence reg for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002289 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002290 * @pipelined: ring on which to queue the change, or NULL for CPU access
2291 * @interruptible: must we wait uninterruptibly for the register to retire?
Jesse Barnesde151cf2008-11-12 10:03:55 -08002292 *
2293 * When mapping objects through the GTT, userspace wants to be able to write
2294 * to them without having to worry about swizzling if the object is tiled.
2295 *
2296 * This function walks the fence regs looking for a free one for @obj,
2297 * stealing one if it can't find any.
2298 *
2299 * It then sets up the reg based on the object's properties: address, pitch
2300 * and tiling format.
2301 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002302int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002303i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002304 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002305{
Chris Wilson05394f32010-11-08 19:18:58 +00002306 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002307 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002308 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002309 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002310
Chris Wilson6bda10d2010-12-05 21:04:18 +00002311 /* XXX disable pipelining. There are bugs. Shocking. */
2312 pipelined = NULL;
2313
Chris Wilsond9e86c02010-11-10 16:40:20 +00002314 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002315 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2316 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002317 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002318
Chris Wilson29c5a582011-03-17 15:23:22 +00002319 if (obj->tiling_changed) {
2320 ret = i915_gem_object_flush_fence(obj, pipelined);
2321 if (ret)
2322 return ret;
2323
2324 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2325 pipelined = NULL;
2326
2327 if (pipelined) {
2328 reg->setup_seqno =
2329 i915_gem_next_request_seqno(pipelined);
2330 obj->last_fenced_seqno = reg->setup_seqno;
2331 obj->last_fenced_ring = pipelined;
2332 }
2333
2334 goto update;
2335 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002336
2337 if (!pipelined) {
2338 if (reg->setup_seqno) {
2339 if (!ring_passed_seqno(obj->last_fenced_ring,
2340 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002341 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002342 reg->setup_seqno,
2343 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002344 if (ret)
2345 return ret;
2346 }
2347
2348 reg->setup_seqno = 0;
2349 }
2350 } else if (obj->last_fenced_ring &&
2351 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002352 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002353 if (ret)
2354 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002355 }
2356
Eric Anholta09ba7f2009-08-29 12:49:51 -07002357 return 0;
2358 }
2359
Chris Wilsond9e86c02010-11-10 16:40:20 +00002360 reg = i915_find_fence_reg(dev, pipelined);
2361 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002362 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002363
Chris Wilsonce453d82011-02-21 14:43:56 +00002364 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002365 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002366 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002367
Chris Wilsond9e86c02010-11-10 16:40:20 +00002368 if (reg->obj) {
2369 struct drm_i915_gem_object *old = reg->obj;
2370
2371 drm_gem_object_reference(&old->base);
2372
2373 if (old->tiling_mode)
2374 i915_gem_release_mmap(old);
2375
Chris Wilsonce453d82011-02-21 14:43:56 +00002376 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002377 if (ret) {
2378 drm_gem_object_unreference(&old->base);
2379 return ret;
2380 }
2381
2382 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2383 pipelined = NULL;
2384
2385 old->fence_reg = I915_FENCE_REG_NONE;
2386 old->last_fenced_ring = pipelined;
2387 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002388 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002389
2390 drm_gem_object_unreference(&old->base);
2391 } else if (obj->last_fenced_seqno == 0)
2392 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002393
Jesse Barnesde151cf2008-11-12 10:03:55 -08002394 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002395 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2396 obj->fence_reg = reg - dev_priv->fence_regs;
2397 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002398
Chris Wilsond9e86c02010-11-10 16:40:20 +00002399 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002400 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002401 obj->last_fenced_seqno = reg->setup_seqno;
2402
2403update:
2404 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002405 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002406 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002407 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002408 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002409 break;
2410 case 5:
2411 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002412 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002413 break;
2414 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002415 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002416 break;
2417 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002418 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002419 break;
2420 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002421
Daniel Vetterc6642782010-11-12 13:46:18 +00002422 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002423}
2424
2425/**
2426 * i915_gem_clear_fence_reg - clear out fence register info
2427 * @obj: object to clear
2428 *
2429 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002430 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002431 */
2432static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002433i915_gem_clear_fence_reg(struct drm_device *dev,
2434 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002435{
Jesse Barnes79e53942008-11-07 14:24:08 -08002436 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002437 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002438
Chris Wilsone259bef2010-09-17 00:32:02 +01002439 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002440 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002441 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002442 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002443 break;
2444 case 5:
2445 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002446 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002447 break;
2448 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002449 if (fence_reg >= 8)
2450 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002451 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002452 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002453 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002454
2455 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002456 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002457 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002458
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002459 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002460 reg->obj = NULL;
2461 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002462 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002463}
2464
2465/**
Eric Anholt673a3942008-07-30 12:06:12 -07002466 * Finds free space in the GTT aperture and binds the object there.
2467 */
2468static int
Chris Wilson05394f32010-11-08 19:18:58 +00002469i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002470 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002471 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002472{
Chris Wilson05394f32010-11-08 19:18:58 +00002473 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002474 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002475 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002476 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002477 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002478 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002479 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002480
Chris Wilson05394f32010-11-08 19:18:58 +00002481 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002482 DRM_ERROR("Attempting to bind a purgeable object\n");
2483 return -EINVAL;
2484 }
2485
Chris Wilsone28f8712011-07-18 13:11:49 -07002486 fence_size = i915_gem_get_gtt_size(dev,
2487 obj->base.size,
2488 obj->tiling_mode);
2489 fence_alignment = i915_gem_get_gtt_alignment(dev,
2490 obj->base.size,
2491 obj->tiling_mode);
2492 unfenced_alignment =
2493 i915_gem_get_unfenced_gtt_alignment(dev,
2494 obj->base.size,
2495 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002496
Eric Anholt673a3942008-07-30 12:06:12 -07002497 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002498 alignment = map_and_fenceable ? fence_alignment :
2499 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002500 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002501 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2502 return -EINVAL;
2503 }
2504
Chris Wilson05394f32010-11-08 19:18:58 +00002505 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002506
Chris Wilson654fc602010-05-27 13:18:21 +01002507 /* If the object is bigger than the entire aperture, reject it early
2508 * before evicting everything in a vain attempt to find space.
2509 */
Chris Wilson05394f32010-11-08 19:18:58 +00002510 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002511 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002512 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2513 return -E2BIG;
2514 }
2515
Eric Anholt673a3942008-07-30 12:06:12 -07002516 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002517 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002518 free_space =
2519 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002520 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002521 dev_priv->mm.gtt_mappable_end,
2522 0);
2523 else
2524 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002525 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002526
2527 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002528 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002529 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002530 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002531 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002532 dev_priv->mm.gtt_mappable_end,
2533 0);
2534 else
Chris Wilson05394f32010-11-08 19:18:58 +00002535 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002536 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002537 }
Chris Wilson05394f32010-11-08 19:18:58 +00002538 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002539 /* If the gtt is empty and we're still having trouble
2540 * fitting our object in, we're out of memory.
2541 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002542 ret = i915_gem_evict_something(dev, size, alignment,
2543 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002544 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002545 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002546
Eric Anholt673a3942008-07-30 12:06:12 -07002547 goto search_free;
2548 }
2549
Chris Wilsone5281cc2010-10-28 13:45:36 +01002550 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002551 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002552 drm_mm_put_block(obj->gtt_space);
2553 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002554
2555 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002556 /* first try to reclaim some memory by clearing the GTT */
2557 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002558 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002559 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002560 if (gfpmask) {
2561 gfpmask = 0;
2562 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002563 }
2564
Chris Wilson809b6332011-01-10 17:33:15 +00002565 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002566 }
2567
2568 goto search_free;
2569 }
2570
Eric Anholt673a3942008-07-30 12:06:12 -07002571 return ret;
2572 }
2573
Daniel Vetter74163902012-02-15 23:50:21 +01002574 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002575 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002576 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002577 drm_mm_put_block(obj->gtt_space);
2578 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002579
Chris Wilson809b6332011-01-10 17:33:15 +00002580 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002581 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002582
2583 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002584 }
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002585
2586 if (!dev_priv->mm.aliasing_ppgtt)
2587 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002588
Chris Wilson6299f992010-11-24 12:23:44 +00002589 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002590 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002591
Eric Anholt673a3942008-07-30 12:06:12 -07002592 /* Assert that the object is not currently in any GPU domain. As it
2593 * wasn't in the GTT, there shouldn't be any way it could have been in
2594 * a GPU cache
2595 */
Chris Wilson05394f32010-11-08 19:18:58 +00002596 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2597 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002598
Chris Wilson6299f992010-11-24 12:23:44 +00002599 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002600
Daniel Vetter75e9e912010-11-04 17:11:09 +01002601 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002602 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002603 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002604
Daniel Vetter75e9e912010-11-04 17:11:09 +01002605 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002606 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002607
Chris Wilson05394f32010-11-08 19:18:58 +00002608 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002609
Chris Wilsondb53a302011-02-03 11:57:46 +00002610 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002611 return 0;
2612}
2613
2614void
Chris Wilson05394f32010-11-08 19:18:58 +00002615i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002616{
Eric Anholt673a3942008-07-30 12:06:12 -07002617 /* If we don't have a page list set up, then we're not pinned
2618 * to GPU, and we can ignore the cache flush because it'll happen
2619 * again at bind time.
2620 */
Chris Wilson05394f32010-11-08 19:18:58 +00002621 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002622 return;
2623
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002624 /* If the GPU is snooping the contents of the CPU cache,
2625 * we do not need to manually clear the CPU cache lines. However,
2626 * the caches are only snooped when the render cache is
2627 * flushed/invalidated. As we always have to emit invalidations
2628 * and flushes when moving into and out of the RENDER domain, correct
2629 * snooping behaviour occurs naturally as the result of our domain
2630 * tracking.
2631 */
2632 if (obj->cache_level != I915_CACHE_NONE)
2633 return;
2634
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002635 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002636
Chris Wilson05394f32010-11-08 19:18:58 +00002637 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002638}
2639
Eric Anholte47c68e2008-11-14 13:35:19 -08002640/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002641static int
Chris Wilson3619df02010-11-28 15:37:17 +00002642i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002643{
Chris Wilson05394f32010-11-08 19:18:58 +00002644 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002645 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002646
2647 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002648 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002649}
2650
2651/** Flushes the GTT write domain for the object if it's dirty. */
2652static void
Chris Wilson05394f32010-11-08 19:18:58 +00002653i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002654{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002655 uint32_t old_write_domain;
2656
Chris Wilson05394f32010-11-08 19:18:58 +00002657 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002658 return;
2659
Chris Wilson63256ec2011-01-04 18:42:07 +00002660 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002661 * to it immediately go to main memory as far as we know, so there's
2662 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002663 *
2664 * However, we do have to enforce the order so that all writes through
2665 * the GTT land before any writes to the device, such as updates to
2666 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002667 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002668 wmb();
2669
Chris Wilson05394f32010-11-08 19:18:58 +00002670 old_write_domain = obj->base.write_domain;
2671 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002672
2673 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002674 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002675 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002676}
2677
2678/** Flushes the CPU write domain for the object if it's dirty. */
2679static void
Chris Wilson05394f32010-11-08 19:18:58 +00002680i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002681{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002682 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002683
Chris Wilson05394f32010-11-08 19:18:58 +00002684 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002685 return;
2686
2687 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002688 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002689 old_write_domain = obj->base.write_domain;
2690 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002691
2692 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002693 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002694 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002695}
2696
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002697/**
2698 * Moves a single object to the GTT read, and possibly write domain.
2699 *
2700 * This function returns when the move is complete, including waiting on
2701 * flushes to occur.
2702 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002703int
Chris Wilson20217462010-11-23 15:26:33 +00002704i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002705{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002706 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002707 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002708
Eric Anholt02354392008-11-26 13:58:13 -08002709 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002710 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002711 return -EINVAL;
2712
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002713 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2714 return 0;
2715
Chris Wilson88241782011-01-07 17:09:48 +00002716 ret = i915_gem_object_flush_gpu_write_domain(obj);
2717 if (ret)
2718 return ret;
2719
Chris Wilson87ca9c82010-12-02 09:42:56 +00002720 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002721 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002722 if (ret)
2723 return ret;
2724 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002725
Chris Wilson72133422010-09-13 23:56:38 +01002726 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002727
Chris Wilson05394f32010-11-08 19:18:58 +00002728 old_write_domain = obj->base.write_domain;
2729 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002730
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002731 /* It should now be out of any other write domains, and we can update
2732 * the domain values for our changes.
2733 */
Chris Wilson05394f32010-11-08 19:18:58 +00002734 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2735 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002736 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002737 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2738 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2739 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002740 }
2741
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002742 trace_i915_gem_object_change_domain(obj,
2743 old_read_domains,
2744 old_write_domain);
2745
Eric Anholte47c68e2008-11-14 13:35:19 -08002746 return 0;
2747}
2748
Chris Wilsone4ffd172011-04-04 09:44:39 +01002749int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2750 enum i915_cache_level cache_level)
2751{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002752 struct drm_device *dev = obj->base.dev;
2753 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002754 int ret;
2755
2756 if (obj->cache_level == cache_level)
2757 return 0;
2758
2759 if (obj->pin_count) {
2760 DRM_DEBUG("can not change the cache level of pinned objects\n");
2761 return -EBUSY;
2762 }
2763
2764 if (obj->gtt_space) {
2765 ret = i915_gem_object_finish_gpu(obj);
2766 if (ret)
2767 return ret;
2768
2769 i915_gem_object_finish_gtt(obj);
2770
2771 /* Before SandyBridge, you could not use tiling or fence
2772 * registers with snooped memory, so relinquish any fences
2773 * currently pointing to our region in the aperture.
2774 */
2775 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2776 ret = i915_gem_object_put_fence(obj);
2777 if (ret)
2778 return ret;
2779 }
2780
Daniel Vetter74898d72012-02-15 23:50:22 +01002781 if (obj->has_global_gtt_mapping)
2782 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002783 if (obj->has_aliasing_ppgtt_mapping)
2784 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2785 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002786 }
2787
2788 if (cache_level == I915_CACHE_NONE) {
2789 u32 old_read_domains, old_write_domain;
2790
2791 /* If we're coming from LLC cached, then we haven't
2792 * actually been tracking whether the data is in the
2793 * CPU cache or not, since we only allow one bit set
2794 * in obj->write_domain and have been skipping the clflushes.
2795 * Just set it to the CPU cache for now.
2796 */
2797 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2798 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2799
2800 old_read_domains = obj->base.read_domains;
2801 old_write_domain = obj->base.write_domain;
2802
2803 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2804 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2805
2806 trace_i915_gem_object_change_domain(obj,
2807 old_read_domains,
2808 old_write_domain);
2809 }
2810
2811 obj->cache_level = cache_level;
2812 return 0;
2813}
2814
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002815/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002816 * Prepare buffer for display plane (scanout, cursors, etc).
2817 * Can be called from an uninterruptible phase (modesetting) and allows
2818 * any flushes to be pipelined (for pageflips).
2819 *
2820 * For the display plane, we want to be in the GTT but out of any write
2821 * domains. So in many ways this looks like set_to_gtt_domain() apart from the
2822 * ability to pipeline the waits, pinning and any additional subtleties
2823 * that may differentiate the display plane from ordinary buffers.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002824 */
2825int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002826i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2827 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002828 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002829{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002830 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002831 int ret;
2832
Chris Wilson88241782011-01-07 17:09:48 +00002833 ret = i915_gem_object_flush_gpu_write_domain(obj);
2834 if (ret)
2835 return ret;
2836
Chris Wilson0be73282010-12-06 14:36:27 +00002837 if (pipelined != obj->ring) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002838 ret = i915_gem_object_wait_rendering(obj);
Keith Packardf0b69ef2011-07-19 16:21:40 -07002839 if (ret == -ERESTARTSYS)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002840 return ret;
2841 }
2842
Eric Anholta7ef0642011-03-29 16:59:54 -07002843 /* The display engine is not coherent with the LLC cache on gen6. As
2844 * a result, we make sure that the pinning that is about to occur is
2845 * done with uncached PTEs. This is lowest common denominator for all
2846 * chipsets.
2847 *
2848 * However for gen6+, we could do better by using the GFDT bit instead
2849 * of uncaching, which would allow us to flush all the LLC-cached data
2850 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2851 */
2852 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2853 if (ret)
2854 return ret;
2855
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002856 /* As the user may map the buffer once pinned in the display plane
2857 * (e.g. libkms for the bootup splash), we have to ensure that we
2858 * always use map_and_fenceable for all scanout buffers.
2859 */
2860 ret = i915_gem_object_pin(obj, alignment, true);
2861 if (ret)
2862 return ret;
2863
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002864 i915_gem_object_flush_cpu_write_domain(obj);
2865
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002866 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002867 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002868
2869 /* It should now be out of any other write domains, and we can update
2870 * the domain values for our changes.
2871 */
2872 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002873 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002874
2875 trace_i915_gem_object_change_domain(obj,
2876 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002877 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002878
2879 return 0;
2880}
2881
Chris Wilson85345512010-11-13 09:49:11 +00002882int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002883i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002884{
Chris Wilson88241782011-01-07 17:09:48 +00002885 int ret;
2886
Chris Wilsona8198ee2011-04-13 22:04:09 +01002887 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002888 return 0;
2889
Chris Wilson88241782011-01-07 17:09:48 +00002890 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002891 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002892 if (ret)
2893 return ret;
2894 }
Chris Wilson85345512010-11-13 09:49:11 +00002895
Chris Wilsonc501ae72011-12-14 13:57:23 +01002896 ret = i915_gem_object_wait_rendering(obj);
2897 if (ret)
2898 return ret;
2899
Chris Wilsona8198ee2011-04-13 22:04:09 +01002900 /* Ensure that we invalidate the GPU's caches and TLBs. */
2901 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002902 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002903}
2904
Eric Anholte47c68e2008-11-14 13:35:19 -08002905/**
2906 * Moves a single object to the CPU read, and possibly write domain.
2907 *
2908 * This function returns when the move is complete, including waiting on
2909 * flushes to occur.
2910 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002911int
Chris Wilson919926a2010-11-12 13:42:53 +00002912i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002913{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002914 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002915 int ret;
2916
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002917 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2918 return 0;
2919
Chris Wilson88241782011-01-07 17:09:48 +00002920 ret = i915_gem_object_flush_gpu_write_domain(obj);
2921 if (ret)
2922 return ret;
2923
Chris Wilsonce453d82011-02-21 14:43:56 +00002924 ret = i915_gem_object_wait_rendering(obj);
Daniel Vetterde18a292010-11-27 22:30:41 +01002925 if (ret)
Eric Anholte47c68e2008-11-14 13:35:19 -08002926 return ret;
2927
2928 i915_gem_object_flush_gtt_write_domain(obj);
2929
Chris Wilson05394f32010-11-08 19:18:58 +00002930 old_write_domain = obj->base.write_domain;
2931 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002932
Eric Anholte47c68e2008-11-14 13:35:19 -08002933 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00002934 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002935 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002936
Chris Wilson05394f32010-11-08 19:18:58 +00002937 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002938 }
2939
2940 /* It should now be out of any other write domains, and we can update
2941 * the domain values for our changes.
2942 */
Chris Wilson05394f32010-11-08 19:18:58 +00002943 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08002944
2945 /* If we're writing through the CPU, then the GPU read domains will
2946 * need to be invalidated at next use.
2947 */
2948 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002949 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2950 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002951 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002952
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002953 trace_i915_gem_object_change_domain(obj,
2954 old_read_domains,
2955 old_write_domain);
2956
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002957 return 0;
2958}
2959
Eric Anholt673a3942008-07-30 12:06:12 -07002960/* Throttle our rendering by waiting until the ring has completed our requests
2961 * emitted over 20 msec ago.
2962 *
Eric Anholtb9624422009-06-03 07:27:35 +00002963 * Note that if we were to use the current jiffies each time around the loop,
2964 * we wouldn't escape the function with any frames outstanding if the time to
2965 * render a frame was over 20ms.
2966 *
Eric Anholt673a3942008-07-30 12:06:12 -07002967 * This should get us reasonable parallelism between CPU and GPU but also
2968 * relatively low latency when blocking on a particular request to finish.
2969 */
2970static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002971i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002972{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002973 struct drm_i915_private *dev_priv = dev->dev_private;
2974 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002975 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002976 struct drm_i915_gem_request *request;
2977 struct intel_ring_buffer *ring = NULL;
2978 u32 seqno = 0;
2979 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002980
Chris Wilsone110e8d2011-01-26 15:39:14 +00002981 if (atomic_read(&dev_priv->mm.wedged))
2982 return -EIO;
2983
Chris Wilson1c255952010-09-26 11:03:27 +01002984 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002985 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00002986 if (time_after_eq(request->emitted_jiffies, recent_enough))
2987 break;
2988
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002989 ring = request->ring;
2990 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00002991 }
Chris Wilson1c255952010-09-26 11:03:27 +01002992 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002993
2994 if (seqno == 0)
2995 return 0;
2996
2997 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01002998 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002999 /* And wait for the seqno passing without holding any locks and
3000 * causing extra latency for others. This is safe as the irq
3001 * generation is designed to be run atomically and so is
3002 * lockless.
3003 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003004 if (ring->irq_get(ring)) {
3005 ret = wait_event_interruptible(ring->irq_queue,
3006 i915_seqno_passed(ring->get_seqno(ring), seqno)
3007 || atomic_read(&dev_priv->mm.wedged));
3008 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003009
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003010 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3011 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003012 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3013 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003014 atomic_read(&dev_priv->mm.wedged), 3000)) {
3015 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003016 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003017 }
3018
3019 if (ret == 0)
3020 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003021
Eric Anholt673a3942008-07-30 12:06:12 -07003022 return ret;
3023}
3024
Eric Anholt673a3942008-07-30 12:06:12 -07003025int
Chris Wilson05394f32010-11-08 19:18:58 +00003026i915_gem_object_pin(struct drm_i915_gem_object *obj,
3027 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003028 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003029{
Chris Wilson05394f32010-11-08 19:18:58 +00003030 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003031 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003032 int ret;
3033
Chris Wilson05394f32010-11-08 19:18:58 +00003034 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003035 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003036
Chris Wilson05394f32010-11-08 19:18:58 +00003037 if (obj->gtt_space != NULL) {
3038 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3039 (map_and_fenceable && !obj->map_and_fenceable)) {
3040 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003041 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003042 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3043 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003044 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003045 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003046 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003047 ret = i915_gem_object_unbind(obj);
3048 if (ret)
3049 return ret;
3050 }
3051 }
3052
Chris Wilson05394f32010-11-08 19:18:58 +00003053 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003054 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003055 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003056 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003057 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003058 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003059
Daniel Vetter74898d72012-02-15 23:50:22 +01003060 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3061 i915_gem_gtt_bind_object(obj, obj->cache_level);
3062
Chris Wilson05394f32010-11-08 19:18:58 +00003063 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003064 if (!obj->active)
3065 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003066 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003067 }
Chris Wilson6299f992010-11-24 12:23:44 +00003068 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003069
Chris Wilson23bc5982010-09-29 16:10:57 +01003070 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003071 return 0;
3072}
3073
3074void
Chris Wilson05394f32010-11-08 19:18:58 +00003075i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003076{
Chris Wilson05394f32010-11-08 19:18:58 +00003077 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003078 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003079
Chris Wilson23bc5982010-09-29 16:10:57 +01003080 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003081 BUG_ON(obj->pin_count == 0);
3082 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003083
Chris Wilson05394f32010-11-08 19:18:58 +00003084 if (--obj->pin_count == 0) {
3085 if (!obj->active)
3086 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003087 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003088 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003089 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003090 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003091}
3092
3093int
3094i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003095 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003096{
3097 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003098 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003099 int ret;
3100
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003101 ret = i915_mutex_lock_interruptible(dev);
3102 if (ret)
3103 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003104
Chris Wilson05394f32010-11-08 19:18:58 +00003105 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003106 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003107 ret = -ENOENT;
3108 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003109 }
Eric Anholt673a3942008-07-30 12:06:12 -07003110
Chris Wilson05394f32010-11-08 19:18:58 +00003111 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003112 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003113 ret = -EINVAL;
3114 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003115 }
3116
Chris Wilson05394f32010-11-08 19:18:58 +00003117 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003118 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3119 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003120 ret = -EINVAL;
3121 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003122 }
3123
Chris Wilson05394f32010-11-08 19:18:58 +00003124 obj->user_pin_count++;
3125 obj->pin_filp = file;
3126 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003127 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003128 if (ret)
3129 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003130 }
3131
3132 /* XXX - flush the CPU caches for pinned objects
3133 * as the X server doesn't manage domains yet
3134 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003135 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003136 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003137out:
Chris Wilson05394f32010-11-08 19:18:58 +00003138 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003139unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003140 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003141 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003142}
3143
3144int
3145i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003146 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003147{
3148 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003149 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003150 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003151
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003152 ret = i915_mutex_lock_interruptible(dev);
3153 if (ret)
3154 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003155
Chris Wilson05394f32010-11-08 19:18:58 +00003156 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003157 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003158 ret = -ENOENT;
3159 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003160 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003161
Chris Wilson05394f32010-11-08 19:18:58 +00003162 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003163 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3164 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003165 ret = -EINVAL;
3166 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003167 }
Chris Wilson05394f32010-11-08 19:18:58 +00003168 obj->user_pin_count--;
3169 if (obj->user_pin_count == 0) {
3170 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003171 i915_gem_object_unpin(obj);
3172 }
Eric Anholt673a3942008-07-30 12:06:12 -07003173
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003174out:
Chris Wilson05394f32010-11-08 19:18:58 +00003175 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003176unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003177 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003178 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003179}
3180
3181int
3182i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003183 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003184{
3185 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003186 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003187 int ret;
3188
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003189 ret = i915_mutex_lock_interruptible(dev);
3190 if (ret)
3191 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003192
Chris Wilson05394f32010-11-08 19:18:58 +00003193 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003194 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003195 ret = -ENOENT;
3196 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003197 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003198
Chris Wilson0be555b2010-08-04 15:36:30 +01003199 /* Count all active objects as busy, even if they are currently not used
3200 * by the gpu. Users of this interface expect objects to eventually
3201 * become non-busy without any further actions, therefore emit any
3202 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003203 */
Chris Wilson05394f32010-11-08 19:18:58 +00003204 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003205 if (args->busy) {
3206 /* Unconditionally flush objects, even when the gpu still uses this
3207 * object. Userspace calling this function indicates that it wants to
3208 * use this buffer rather sooner than later, so issuing the required
3209 * flush earlier is beneficial.
3210 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003211 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003212 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003213 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003214 } else if (obj->ring->outstanding_lazy_request ==
3215 obj->last_rendering_seqno) {
3216 struct drm_i915_gem_request *request;
3217
Chris Wilson7a194872010-12-07 10:38:40 +00003218 /* This ring is not being cleared by active usage,
3219 * so emit a request to do so.
3220 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003221 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003222 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003223 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003224 if (ret)
3225 kfree(request);
3226 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003227 ret = -ENOMEM;
3228 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003229
3230 /* Update the active list for the hardware's current position.
3231 * Otherwise this only updates on a delayed timer or when irqs
3232 * are actually unmasked, and our working set ends up being
3233 * larger than required.
3234 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003235 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003236
Chris Wilson05394f32010-11-08 19:18:58 +00003237 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003238 }
Eric Anholt673a3942008-07-30 12:06:12 -07003239
Chris Wilson05394f32010-11-08 19:18:58 +00003240 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003241unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003242 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003243 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003244}
3245
3246int
3247i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3248 struct drm_file *file_priv)
3249{
Akshay Joshi0206e352011-08-16 15:34:10 -04003250 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003251}
3252
Chris Wilson3ef94da2009-09-14 16:50:29 +01003253int
3254i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3255 struct drm_file *file_priv)
3256{
3257 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003258 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003259 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003260
3261 switch (args->madv) {
3262 case I915_MADV_DONTNEED:
3263 case I915_MADV_WILLNEED:
3264 break;
3265 default:
3266 return -EINVAL;
3267 }
3268
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003269 ret = i915_mutex_lock_interruptible(dev);
3270 if (ret)
3271 return ret;
3272
Chris Wilson05394f32010-11-08 19:18:58 +00003273 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003274 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003275 ret = -ENOENT;
3276 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003277 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003278
Chris Wilson05394f32010-11-08 19:18:58 +00003279 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003280 ret = -EINVAL;
3281 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003282 }
3283
Chris Wilson05394f32010-11-08 19:18:58 +00003284 if (obj->madv != __I915_MADV_PURGED)
3285 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003286
Chris Wilson2d7ef392009-09-20 23:13:10 +01003287 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003288 if (i915_gem_object_is_purgeable(obj) &&
3289 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003290 i915_gem_object_truncate(obj);
3291
Chris Wilson05394f32010-11-08 19:18:58 +00003292 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003293
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003294out:
Chris Wilson05394f32010-11-08 19:18:58 +00003295 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003296unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003297 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003298 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003299}
3300
Chris Wilson05394f32010-11-08 19:18:58 +00003301struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3302 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003303{
Chris Wilson73aa8082010-09-30 11:46:12 +01003304 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003305 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003306 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003307
3308 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3309 if (obj == NULL)
3310 return NULL;
3311
3312 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3313 kfree(obj);
3314 return NULL;
3315 }
3316
Hugh Dickins5949eac2011-06-27 16:18:18 -07003317 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3318 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3319
Chris Wilson73aa8082010-09-30 11:46:12 +01003320 i915_gem_info_add_obj(dev_priv, size);
3321
Daniel Vetterc397b902010-04-09 19:05:07 +00003322 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3323 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3324
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003325 if (HAS_LLC(dev)) {
3326 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003327 * cache) for about a 10% performance improvement
3328 * compared to uncached. Graphics requests other than
3329 * display scanout are coherent with the CPU in
3330 * accessing this cache. This means in this mode we
3331 * don't need to clflush on the CPU side, and on the
3332 * GPU side we only need to flush internal caches to
3333 * get data visible to the CPU.
3334 *
3335 * However, we maintain the display planes as UC, and so
3336 * need to rebind when first used as such.
3337 */
3338 obj->cache_level = I915_CACHE_LLC;
3339 } else
3340 obj->cache_level = I915_CACHE_NONE;
3341
Daniel Vetter62b8b212010-04-09 19:05:08 +00003342 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003343 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003344 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003345 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003346 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003347 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003348 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003349 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003350 /* Avoid an unnecessary call to unbind on the first bind. */
3351 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003352
Chris Wilson05394f32010-11-08 19:18:58 +00003353 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003354}
3355
Eric Anholt673a3942008-07-30 12:06:12 -07003356int i915_gem_init_object(struct drm_gem_object *obj)
3357{
Daniel Vetterc397b902010-04-09 19:05:07 +00003358 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003359
Eric Anholt673a3942008-07-30 12:06:12 -07003360 return 0;
3361}
3362
Chris Wilson05394f32010-11-08 19:18:58 +00003363static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003364{
Chris Wilson05394f32010-11-08 19:18:58 +00003365 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003366 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003367 int ret;
3368
3369 ret = i915_gem_object_unbind(obj);
3370 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003371 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003372 &dev_priv->mm.deferred_free_list);
3373 return;
3374 }
3375
Chris Wilson26e12f82011-03-20 11:20:19 +00003376 trace_i915_gem_object_destroy(obj);
3377
Chris Wilson05394f32010-11-08 19:18:58 +00003378 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003379 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003380
Chris Wilson05394f32010-11-08 19:18:58 +00003381 drm_gem_object_release(&obj->base);
3382 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003383
Chris Wilson05394f32010-11-08 19:18:58 +00003384 kfree(obj->bit_17);
3385 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003386}
3387
Chris Wilson05394f32010-11-08 19:18:58 +00003388void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003389{
Chris Wilson05394f32010-11-08 19:18:58 +00003390 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3391 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003392
Chris Wilson05394f32010-11-08 19:18:58 +00003393 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003394 i915_gem_object_unpin(obj);
3395
Chris Wilson05394f32010-11-08 19:18:58 +00003396 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003397 i915_gem_detach_phys_object(dev, obj);
3398
Chris Wilsonbe726152010-07-23 23:18:50 +01003399 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003400}
3401
Jesse Barnes5669fca2009-02-17 15:13:31 -08003402int
Eric Anholt673a3942008-07-30 12:06:12 -07003403i915_gem_idle(struct drm_device *dev)
3404{
3405 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003406 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003407
Keith Packard6dbe2772008-10-14 21:41:13 -07003408 mutex_lock(&dev->struct_mutex);
3409
Chris Wilson87acb0a2010-10-19 10:13:00 +01003410 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003411 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003412 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003413 }
Eric Anholt673a3942008-07-30 12:06:12 -07003414
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003415 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003416 if (ret) {
3417 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003418 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003419 }
Eric Anholt673a3942008-07-30 12:06:12 -07003420
Chris Wilson29105cc2010-01-07 10:39:13 +00003421 /* Under UMS, be paranoid and evict. */
3422 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003423 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003424 if (ret) {
3425 mutex_unlock(&dev->struct_mutex);
3426 return ret;
3427 }
3428 }
3429
Chris Wilson312817a2010-11-22 11:50:11 +00003430 i915_gem_reset_fences(dev);
3431
Chris Wilson29105cc2010-01-07 10:39:13 +00003432 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3433 * We need to replace this with a semaphore, or something.
3434 * And not confound mm.suspended!
3435 */
3436 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003437 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003438
3439 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003440 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003441
Keith Packard6dbe2772008-10-14 21:41:13 -07003442 mutex_unlock(&dev->struct_mutex);
3443
Chris Wilson29105cc2010-01-07 10:39:13 +00003444 /* Cancel the retire work handler, which should be idle now. */
3445 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3446
Eric Anholt673a3942008-07-30 12:06:12 -07003447 return 0;
3448}
3449
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003450void i915_gem_init_swizzling(struct drm_device *dev)
3451{
3452 drm_i915_private_t *dev_priv = dev->dev_private;
3453
Daniel Vetter11782b02012-01-31 16:47:55 +01003454 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003455 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3456 return;
3457
3458 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3459 DISP_TILE_SURFACE_SWIZZLING);
3460
Daniel Vetter11782b02012-01-31 16:47:55 +01003461 if (IS_GEN5(dev))
3462 return;
3463
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003464 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3465 if (IS_GEN6(dev))
3466 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3467 else
3468 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3469}
Daniel Vettere21af882012-02-09 20:53:27 +01003470
3471void i915_gem_init_ppgtt(struct drm_device *dev)
3472{
3473 drm_i915_private_t *dev_priv = dev->dev_private;
3474 uint32_t pd_offset;
3475 struct intel_ring_buffer *ring;
3476 int i;
3477
3478 if (!dev_priv->mm.aliasing_ppgtt)
3479 return;
3480
3481 pd_offset = dev_priv->mm.aliasing_ppgtt->pd_offset;
3482 pd_offset /= 64; /* in cachelines, */
3483 pd_offset <<= 16;
3484
3485 if (INTEL_INFO(dev)->gen == 6) {
3486 uint32_t ecochk = I915_READ(GAM_ECOCHK);
3487 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3488 ECOCHK_PPGTT_CACHE64B);
3489 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3490 } else if (INTEL_INFO(dev)->gen >= 7) {
3491 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3492 /* GFX_MODE is per-ring on gen7+ */
3493 }
3494
3495 for (i = 0; i < I915_NUM_RINGS; i++) {
3496 ring = &dev_priv->ring[i];
3497
3498 if (INTEL_INFO(dev)->gen >= 7)
3499 I915_WRITE(RING_MODE_GEN7(ring),
3500 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3501
3502 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3503 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3504 }
3505}
3506
Eric Anholt673a3942008-07-30 12:06:12 -07003507int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003508i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003509{
3510 drm_i915_private_t *dev_priv = dev->dev_private;
3511 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003512
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003513 i915_gem_init_swizzling(dev);
3514
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003515 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003516 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003517 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003518
3519 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003520 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003521 if (ret)
3522 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003523 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003524
Chris Wilson549f7362010-10-19 11:19:32 +01003525 if (HAS_BLT(dev)) {
3526 ret = intel_init_blt_ring_buffer(dev);
3527 if (ret)
3528 goto cleanup_bsd_ring;
3529 }
3530
Chris Wilson6f392d52010-08-07 11:01:22 +01003531 dev_priv->next_seqno = 1;
3532
Daniel Vettere21af882012-02-09 20:53:27 +01003533 i915_gem_init_ppgtt(dev);
3534
Chris Wilson68f95ba2010-05-27 13:18:22 +01003535 return 0;
3536
Chris Wilson549f7362010-10-19 11:19:32 +01003537cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003538 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003539cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003540 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003541 return ret;
3542}
3543
3544void
3545i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3546{
3547 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003548 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003549
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003550 for (i = 0; i < I915_NUM_RINGS; i++)
3551 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003552}
3553
3554int
Eric Anholt673a3942008-07-30 12:06:12 -07003555i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3556 struct drm_file *file_priv)
3557{
3558 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003559 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003560
Jesse Barnes79e53942008-11-07 14:24:08 -08003561 if (drm_core_check_feature(dev, DRIVER_MODESET))
3562 return 0;
3563
Ben Gamariba1234d2009-09-14 17:48:47 -04003564 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003565 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003566 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003567 }
3568
Eric Anholt673a3942008-07-30 12:06:12 -07003569 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003570 dev_priv->mm.suspended = 0;
3571
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003572 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6ac2009-04-18 10:43:32 +08003573 if (ret != 0) {
3574 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003575 return ret;
Wu Fengguangd816f6ac2009-04-18 10:43:32 +08003576 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003577
Chris Wilson69dc4982010-10-19 10:36:51 +01003578 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003579 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3580 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003581 for (i = 0; i < I915_NUM_RINGS; i++) {
3582 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3583 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3584 }
Eric Anholt673a3942008-07-30 12:06:12 -07003585 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003586
Chris Wilson5f353082010-06-07 14:03:03 +01003587 ret = drm_irq_install(dev);
3588 if (ret)
3589 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003590
Eric Anholt673a3942008-07-30 12:06:12 -07003591 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003592
3593cleanup_ringbuffer:
3594 mutex_lock(&dev->struct_mutex);
3595 i915_gem_cleanup_ringbuffer(dev);
3596 dev_priv->mm.suspended = 1;
3597 mutex_unlock(&dev->struct_mutex);
3598
3599 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003600}
3601
3602int
3603i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3604 struct drm_file *file_priv)
3605{
Jesse Barnes79e53942008-11-07 14:24:08 -08003606 if (drm_core_check_feature(dev, DRIVER_MODESET))
3607 return 0;
3608
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003609 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003610 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003611}
3612
3613void
3614i915_gem_lastclose(struct drm_device *dev)
3615{
3616 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003617
Eric Anholte806b492009-01-22 09:56:58 -08003618 if (drm_core_check_feature(dev, DRIVER_MODESET))
3619 return;
3620
Keith Packard6dbe2772008-10-14 21:41:13 -07003621 ret = i915_gem_idle(dev);
3622 if (ret)
3623 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003624}
3625
Chris Wilson64193402010-10-24 12:38:05 +01003626static void
3627init_ring_lists(struct intel_ring_buffer *ring)
3628{
3629 INIT_LIST_HEAD(&ring->active_list);
3630 INIT_LIST_HEAD(&ring->request_list);
3631 INIT_LIST_HEAD(&ring->gpu_write_list);
3632}
3633
Eric Anholt673a3942008-07-30 12:06:12 -07003634void
3635i915_gem_load(struct drm_device *dev)
3636{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003637 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003638 drm_i915_private_t *dev_priv = dev->dev_private;
3639
Chris Wilson69dc4982010-10-19 10:36:51 +01003640 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003641 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3642 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003643 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003644 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003645 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003646 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003647 for (i = 0; i < I915_NUM_RINGS; i++)
3648 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003649 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003650 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003651 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3652 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003653 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003654
Dave Airlie94400122010-07-20 13:15:31 +10003655 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3656 if (IS_GEN3(dev)) {
3657 u32 tmp = I915_READ(MI_ARB_STATE);
3658 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3659 /* arb state is a masked write, so set bit + bit in mask */
3660 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3661 I915_WRITE(MI_ARB_STATE, tmp);
3662 }
3663 }
3664
Chris Wilson72bfa192010-12-19 11:42:05 +00003665 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3666
Jesse Barnesde151cf2008-11-12 10:03:55 -08003667 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003668 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3669 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003670
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003671 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003672 dev_priv->num_fence_regs = 16;
3673 else
3674 dev_priv->num_fence_regs = 8;
3675
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003676 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003677 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3678 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003679 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003680
Eric Anholt673a3942008-07-30 12:06:12 -07003681 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003682 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003683
Chris Wilsonce453d82011-02-21 14:43:56 +00003684 dev_priv->mm.interruptible = true;
3685
Chris Wilson17250b72010-10-28 12:51:39 +01003686 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3687 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3688 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003689}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003690
3691/*
3692 * Create a physically contiguous memory object for this object
3693 * e.g. for cursor + overlay regs
3694 */
Chris Wilson995b67622010-08-20 13:23:26 +01003695static int i915_gem_init_phys_object(struct drm_device *dev,
3696 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003697{
3698 drm_i915_private_t *dev_priv = dev->dev_private;
3699 struct drm_i915_gem_phys_object *phys_obj;
3700 int ret;
3701
3702 if (dev_priv->mm.phys_objs[id - 1] || !size)
3703 return 0;
3704
Eric Anholt9a298b22009-03-24 12:23:04 -07003705 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003706 if (!phys_obj)
3707 return -ENOMEM;
3708
3709 phys_obj->id = id;
3710
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003711 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003712 if (!phys_obj->handle) {
3713 ret = -ENOMEM;
3714 goto kfree_obj;
3715 }
3716#ifdef CONFIG_X86
3717 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3718#endif
3719
3720 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3721
3722 return 0;
3723kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003724 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003725 return ret;
3726}
3727
Chris Wilson995b67622010-08-20 13:23:26 +01003728static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003729{
3730 drm_i915_private_t *dev_priv = dev->dev_private;
3731 struct drm_i915_gem_phys_object *phys_obj;
3732
3733 if (!dev_priv->mm.phys_objs[id - 1])
3734 return;
3735
3736 phys_obj = dev_priv->mm.phys_objs[id - 1];
3737 if (phys_obj->cur_obj) {
3738 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3739 }
3740
3741#ifdef CONFIG_X86
3742 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3743#endif
3744 drm_pci_free(dev, phys_obj->handle);
3745 kfree(phys_obj);
3746 dev_priv->mm.phys_objs[id - 1] = NULL;
3747}
3748
3749void i915_gem_free_all_phys_object(struct drm_device *dev)
3750{
3751 int i;
3752
Dave Airlie260883c2009-01-22 17:58:49 +10003753 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003754 i915_gem_free_phys_object(dev, i);
3755}
3756
3757void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003758 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003759{
Chris Wilson05394f32010-11-08 19:18:58 +00003760 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003761 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003762 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003763 int page_count;
3764
Chris Wilson05394f32010-11-08 19:18:58 +00003765 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003766 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003767 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003768
Chris Wilson05394f32010-11-08 19:18:58 +00003769 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003770 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003771 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003772 if (!IS_ERR(page)) {
3773 char *dst = kmap_atomic(page);
3774 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3775 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003776
Chris Wilsone5281cc2010-10-28 13:45:36 +01003777 drm_clflush_pages(&page, 1);
3778
3779 set_page_dirty(page);
3780 mark_page_accessed(page);
3781 page_cache_release(page);
3782 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003783 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003784 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003785
Chris Wilson05394f32010-11-08 19:18:58 +00003786 obj->phys_obj->cur_obj = NULL;
3787 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003788}
3789
3790int
3791i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003792 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003793 int id,
3794 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003795{
Chris Wilson05394f32010-11-08 19:18:58 +00003796 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003797 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003798 int ret = 0;
3799 int page_count;
3800 int i;
3801
3802 if (id > I915_MAX_PHYS_OBJECT)
3803 return -EINVAL;
3804
Chris Wilson05394f32010-11-08 19:18:58 +00003805 if (obj->phys_obj) {
3806 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003807 return 0;
3808 i915_gem_detach_phys_object(dev, obj);
3809 }
3810
Dave Airlie71acb5e2008-12-30 20:31:46 +10003811 /* create a new object */
3812 if (!dev_priv->mm.phys_objs[id - 1]) {
3813 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003814 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003815 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003816 DRM_ERROR("failed to init phys object %d size: %zu\n",
3817 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003818 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003819 }
3820 }
3821
3822 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003823 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3824 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003825
Chris Wilson05394f32010-11-08 19:18:58 +00003826 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003827
3828 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003829 struct page *page;
3830 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003831
Hugh Dickins5949eac2011-06-27 16:18:18 -07003832 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003833 if (IS_ERR(page))
3834 return PTR_ERR(page);
3835
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003836 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003837 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003838 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003839 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003840
3841 mark_page_accessed(page);
3842 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003843 }
3844
3845 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003846}
3847
3848static int
Chris Wilson05394f32010-11-08 19:18:58 +00003849i915_gem_phys_pwrite(struct drm_device *dev,
3850 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003851 struct drm_i915_gem_pwrite *args,
3852 struct drm_file *file_priv)
3853{
Chris Wilson05394f32010-11-08 19:18:58 +00003854 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003855 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003856
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003857 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3858 unsigned long unwritten;
3859
3860 /* The physical object once assigned is fixed for the lifetime
3861 * of the obj, so we can safely drop the lock and continue
3862 * to access vaddr.
3863 */
3864 mutex_unlock(&dev->struct_mutex);
3865 unwritten = copy_from_user(vaddr, user_data, args->size);
3866 mutex_lock(&dev->struct_mutex);
3867 if (unwritten)
3868 return -EFAULT;
3869 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003870
Daniel Vetter40ce6572010-11-05 18:12:18 +01003871 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003872 return 0;
3873}
Eric Anholtb9624422009-06-03 07:27:35 +00003874
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003875void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003876{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003877 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003878
3879 /* Clean up our request list when the client is going away, so that
3880 * later retire_requests won't dereference our soon-to-be-gone
3881 * file_priv.
3882 */
Chris Wilson1c255952010-09-26 11:03:27 +01003883 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003884 while (!list_empty(&file_priv->mm.request_list)) {
3885 struct drm_i915_gem_request *request;
3886
3887 request = list_first_entry(&file_priv->mm.request_list,
3888 struct drm_i915_gem_request,
3889 client_list);
3890 list_del(&request->client_list);
3891 request->file_priv = NULL;
3892 }
Chris Wilson1c255952010-09-26 11:03:27 +01003893 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003894}
Chris Wilson31169712009-09-14 16:50:28 +01003895
Chris Wilson31169712009-09-14 16:50:28 +01003896static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003897i915_gpu_is_active(struct drm_device *dev)
3898{
3899 drm_i915_private_t *dev_priv = dev->dev_private;
3900 int lists_empty;
3901
Chris Wilson1637ef42010-04-20 17:10:35 +01003902 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003903 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003904
3905 return !lists_empty;
3906}
3907
3908static int
Ying Han1495f232011-05-24 17:12:27 -07003909i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01003910{
Chris Wilson17250b72010-10-28 12:51:39 +01003911 struct drm_i915_private *dev_priv =
3912 container_of(shrinker,
3913 struct drm_i915_private,
3914 mm.inactive_shrinker);
3915 struct drm_device *dev = dev_priv->dev;
3916 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07003917 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01003918 int cnt;
3919
3920 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01003921 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01003922
3923 /* "fast-path" to count number of available objects */
3924 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01003925 cnt = 0;
3926 list_for_each_entry(obj,
3927 &dev_priv->mm.inactive_list,
3928 mm_list)
3929 cnt++;
3930 mutex_unlock(&dev->struct_mutex);
3931 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01003932 }
3933
Chris Wilson1637ef42010-04-20 17:10:35 +01003934rescan:
Chris Wilson31169712009-09-14 16:50:28 +01003935 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01003936 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01003937
Chris Wilson17250b72010-10-28 12:51:39 +01003938 list_for_each_entry_safe(obj, next,
3939 &dev_priv->mm.inactive_list,
3940 mm_list) {
3941 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00003942 if (i915_gem_object_unbind(obj) == 0 &&
3943 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01003944 break;
Chris Wilson31169712009-09-14 16:50:28 +01003945 }
Chris Wilson31169712009-09-14 16:50:28 +01003946 }
3947
3948 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01003949 cnt = 0;
3950 list_for_each_entry_safe(obj, next,
3951 &dev_priv->mm.inactive_list,
3952 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00003953 if (nr_to_scan &&
3954 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01003955 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00003956 else
Chris Wilson17250b72010-10-28 12:51:39 +01003957 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01003958 }
3959
Chris Wilson17250b72010-10-28 12:51:39 +01003960 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01003961 /*
3962 * We are desperate for pages, so as a last resort, wait
3963 * for the GPU to finish and discard whatever we can.
3964 * This has a dramatic impact to reduce the number of
3965 * OOM-killer events whilst running the GPU aggressively.
3966 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003967 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01003968 goto rescan;
3969 }
Chris Wilson17250b72010-10-28 12:51:39 +01003970 mutex_unlock(&dev->struct_mutex);
3971 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01003972}