blob: 5a9d90f117d32f5699674c97ac16309fd02aab14 [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
Daniel Vetterf534bc02012-03-26 22:37:04 +0200132 /* GEM with user mode setting was never supported on ilk and later. */
133 if (INTEL_INFO(dev)->gen >= 5)
134 return -ENODEV;
135
Eric Anholt673a3942008-07-30 12:06:12 -0700136 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200137 i915_gem_init_global_gtt(dev, args->gtt_start,
138 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700139 mutex_unlock(&dev->struct_mutex);
140
Chris Wilson20217462010-11-23 15:26:33 +0000141 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700142}
143
Eric Anholt5a125c32008-10-22 21:40:13 -0700144int
145i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000146 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700147{
Chris Wilson73aa8082010-09-30 11:46:12 +0100148 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700149 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000150 struct drm_i915_gem_object *obj;
151 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700152
153 if (!(dev->driver->driver_features & DRIVER_GEM))
154 return -ENODEV;
155
Chris Wilson6299f992010-11-24 12:23:44 +0000156 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100157 mutex_lock(&dev->struct_mutex);
Chris Wilson6299f992010-11-24 12:23:44 +0000158 list_for_each_entry(obj, &dev_priv->mm.pinned_list, mm_list)
159 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100160 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700161
Chris Wilson6299f992010-11-24 12:23:44 +0000162 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400163 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000164
Eric Anholt5a125c32008-10-22 21:40:13 -0700165 return 0;
166}
167
Dave Airlieff72145b2011-02-07 12:16:14 +1000168static int
169i915_gem_create(struct drm_file *file,
170 struct drm_device *dev,
171 uint64_t size,
172 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700173{
Chris Wilson05394f32010-11-08 19:18:58 +0000174 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300175 int ret;
176 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700177
Dave Airlieff72145b2011-02-07 12:16:14 +1000178 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200179 if (size == 0)
180 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700181
182 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000183 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700184 if (obj == NULL)
185 return -ENOMEM;
186
Chris Wilson05394f32010-11-08 19:18:58 +0000187 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100188 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000189 drm_gem_object_release(&obj->base);
190 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100191 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700192 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100193 }
194
Chris Wilson202f2fe2010-10-14 13:20:40 +0100195 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000196 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100197 trace_i915_gem_object_create(obj);
198
Dave Airlieff72145b2011-02-07 12:16:14 +1000199 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700200 return 0;
201}
202
Dave Airlieff72145b2011-02-07 12:16:14 +1000203int
204i915_gem_dumb_create(struct drm_file *file,
205 struct drm_device *dev,
206 struct drm_mode_create_dumb *args)
207{
208 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000209 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000210 args->size = args->pitch * args->height;
211 return i915_gem_create(file, dev,
212 args->size, &args->handle);
213}
214
215int i915_gem_dumb_destroy(struct drm_file *file,
216 struct drm_device *dev,
217 uint32_t handle)
218{
219 return drm_gem_handle_delete(file, handle);
220}
221
222/**
223 * Creates a new mm object and returns a handle to it.
224 */
225int
226i915_gem_create_ioctl(struct drm_device *dev, void *data,
227 struct drm_file *file)
228{
229 struct drm_i915_gem_create *args = data;
230 return i915_gem_create(file, dev,
231 args->size, &args->handle);
232}
233
Chris Wilson05394f32010-11-08 19:18:58 +0000234static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700235{
Chris Wilson05394f32010-11-08 19:18:58 +0000236 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700237
238 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000239 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700240}
241
Daniel Vetter8c599672011-12-14 13:57:31 +0100242static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100243__copy_to_user_swizzled(char __user *cpu_vaddr,
244 const char *gpu_vaddr, int gpu_offset,
245 int length)
246{
247 int ret, cpu_offset = 0;
248
249 while (length > 0) {
250 int cacheline_end = ALIGN(gpu_offset + 1, 64);
251 int this_length = min(cacheline_end - gpu_offset, length);
252 int swizzled_gpu_offset = gpu_offset ^ 64;
253
254 ret = __copy_to_user(cpu_vaddr + cpu_offset,
255 gpu_vaddr + swizzled_gpu_offset,
256 this_length);
257 if (ret)
258 return ret + length;
259
260 cpu_offset += this_length;
261 gpu_offset += this_length;
262 length -= this_length;
263 }
264
265 return 0;
266}
267
268static inline int
Daniel Vetter8c599672011-12-14 13:57:31 +0100269__copy_from_user_swizzled(char __user *gpu_vaddr, int gpu_offset,
270 const char *cpu_vaddr,
271 int length)
272{
273 int ret, cpu_offset = 0;
274
275 while (length > 0) {
276 int cacheline_end = ALIGN(gpu_offset + 1, 64);
277 int this_length = min(cacheline_end - gpu_offset, length);
278 int swizzled_gpu_offset = gpu_offset ^ 64;
279
280 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
281 cpu_vaddr + cpu_offset,
282 this_length);
283 if (ret)
284 return ret + length;
285
286 cpu_offset += this_length;
287 gpu_offset += this_length;
288 length -= this_length;
289 }
290
291 return 0;
292}
293
Daniel Vetterd174bd62012-03-25 19:47:40 +0200294/* Per-page copy function for the shmem pread fastpath.
295 * Flushes invalid cachelines before reading the target if
296 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700297static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200298shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
299 char __user *user_data,
300 bool page_do_bit17_swizzling, bool needs_clflush)
301{
302 char *vaddr;
303 int ret;
304
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200305 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200306 return -EINVAL;
307
308 vaddr = kmap_atomic(page);
309 if (needs_clflush)
310 drm_clflush_virt_range(vaddr + shmem_page_offset,
311 page_length);
312 ret = __copy_to_user_inatomic(user_data,
313 vaddr + shmem_page_offset,
314 page_length);
315 kunmap_atomic(vaddr);
316
317 return ret;
318}
319
Daniel Vetter23c18c72012-03-25 19:47:42 +0200320static void
321shmem_clflush_swizzled_range(char *addr, unsigned long length,
322 bool swizzled)
323{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200324 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200325 unsigned long start = (unsigned long) addr;
326 unsigned long end = (unsigned long) addr + length;
327
328 /* For swizzling simply ensure that we always flush both
329 * channels. Lame, but simple and it works. Swizzled
330 * pwrite/pread is far from a hotpath - current userspace
331 * doesn't use it at all. */
332 start = round_down(start, 128);
333 end = round_up(end, 128);
334
335 drm_clflush_virt_range((void *)start, end - start);
336 } else {
337 drm_clflush_virt_range(addr, length);
338 }
339
340}
341
Daniel Vetterd174bd62012-03-25 19:47:40 +0200342/* Only difference to the fast-path function is that this can handle bit17
343 * and uses non-atomic copy and kmap functions. */
344static int
345shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
346 char __user *user_data,
347 bool page_do_bit17_swizzling, bool needs_clflush)
348{
349 char *vaddr;
350 int ret;
351
352 vaddr = kmap(page);
353 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200354 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
355 page_length,
356 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200357
358 if (page_do_bit17_swizzling)
359 ret = __copy_to_user_swizzled(user_data,
360 vaddr, shmem_page_offset,
361 page_length);
362 else
363 ret = __copy_to_user(user_data,
364 vaddr + shmem_page_offset,
365 page_length);
366 kunmap(page);
367
368 return ret;
369}
370
Eric Anholteb014592009-03-10 11:44:52 -0700371static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200372i915_gem_shmem_pread(struct drm_device *dev,
373 struct drm_i915_gem_object *obj,
374 struct drm_i915_gem_pread *args,
375 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700376{
Chris Wilson05394f32010-11-08 19:18:58 +0000377 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100378 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700379 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100380 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100381 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100382 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200383 int hit_slowpath = 0;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200384 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200385 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200386 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700387
Daniel Vetter8461d222011-12-14 13:57:32 +0100388 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700389 remain = args->size;
390
Daniel Vetter8461d222011-12-14 13:57:32 +0100391 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700392
Daniel Vetter84897312012-03-25 19:47:31 +0200393 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
394 /* If we're not in the cpu read domain, set ourself into the gtt
395 * read domain and manually flush cachelines (if required). This
396 * optimizes for the case when the gpu will dirty the data
397 * anyway again before the next pread happens. */
398 if (obj->cache_level == I915_CACHE_NONE)
399 needs_clflush = 1;
400 ret = i915_gem_object_set_to_gtt_domain(obj, false);
401 if (ret)
402 return ret;
403 }
Eric Anholteb014592009-03-10 11:44:52 -0700404
Eric Anholteb014592009-03-10 11:44:52 -0700405 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100406
Eric Anholteb014592009-03-10 11:44:52 -0700407 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100408 struct page *page;
409
Eric Anholteb014592009-03-10 11:44:52 -0700410 /* Operation in this page
411 *
Eric Anholteb014592009-03-10 11:44:52 -0700412 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700413 * page_length = bytes to copy for this page
414 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100415 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700416 page_length = remain;
417 if ((shmem_page_offset + page_length) > PAGE_SIZE)
418 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700419
Daniel Vetter692a5762012-03-25 19:47:34 +0200420 if (obj->pages) {
421 page = obj->pages[offset >> PAGE_SHIFT];
422 release_page = 0;
423 } else {
424 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
425 if (IS_ERR(page)) {
426 ret = PTR_ERR(page);
427 goto out;
428 }
429 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000430 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100431
Daniel Vetter8461d222011-12-14 13:57:32 +0100432 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
433 (page_to_phys(page) & (1 << 17)) != 0;
434
Daniel Vetterd174bd62012-03-25 19:47:40 +0200435 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
436 user_data, page_do_bit17_swizzling,
437 needs_clflush);
438 if (ret == 0)
439 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700440
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200441 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200442 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200443 mutex_unlock(&dev->struct_mutex);
444
Daniel Vetter96d79b52012-03-25 19:47:36 +0200445 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200446 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200447 /* Userspace is tricking us, but we've already clobbered
448 * its pages with the prefault and promised to write the
449 * data up to the first fault. Hence ignore any errors
450 * and just continue. */
451 (void)ret;
452 prefaulted = 1;
453 }
454
Daniel Vetterd174bd62012-03-25 19:47:40 +0200455 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
456 user_data, page_do_bit17_swizzling,
457 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700458
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200459 mutex_lock(&dev->struct_mutex);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100460 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200461next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100462 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200463 if (release_page)
464 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100465
Daniel Vetter8461d222011-12-14 13:57:32 +0100466 if (ret) {
467 ret = -EFAULT;
468 goto out;
469 }
470
Eric Anholteb014592009-03-10 11:44:52 -0700471 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100472 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700473 offset += page_length;
474 }
475
Chris Wilson4f27b752010-10-14 15:26:45 +0100476out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200477 if (hit_slowpath) {
478 /* Fixup: Kill any reinstated backing storage pages */
479 if (obj->madv == __I915_MADV_PURGED)
480 i915_gem_object_truncate(obj);
481 }
Eric Anholteb014592009-03-10 11:44:52 -0700482
483 return ret;
484}
485
Eric Anholt673a3942008-07-30 12:06:12 -0700486/**
487 * Reads data from the object referenced by handle.
488 *
489 * On error, the contents of *data are undefined.
490 */
491int
492i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000493 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700494{
495 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000496 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100497 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700498
Chris Wilson51311d02010-11-17 09:10:42 +0000499 if (args->size == 0)
500 return 0;
501
502 if (!access_ok(VERIFY_WRITE,
503 (char __user *)(uintptr_t)args->data_ptr,
504 args->size))
505 return -EFAULT;
506
Chris Wilson4f27b752010-10-14 15:26:45 +0100507 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100508 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100509 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700510
Chris Wilson05394f32010-11-08 19:18:58 +0000511 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000512 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100513 ret = -ENOENT;
514 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100515 }
Eric Anholt673a3942008-07-30 12:06:12 -0700516
Chris Wilson7dcd2492010-09-26 20:21:44 +0100517 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000518 if (args->offset > obj->base.size ||
519 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100520 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100521 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100522 }
523
Chris Wilsondb53a302011-02-03 11:57:46 +0000524 trace_i915_gem_object_pread(obj, args->offset, args->size);
525
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200526 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700527
Chris Wilson35b62a82010-09-26 20:23:38 +0100528out:
Chris Wilson05394f32010-11-08 19:18:58 +0000529 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100530unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100531 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700532 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700533}
534
Keith Packard0839ccb2008-10-30 19:38:48 -0700535/* This is the fast write path which cannot handle
536 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700537 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700538
Keith Packard0839ccb2008-10-30 19:38:48 -0700539static inline int
540fast_user_write(struct io_mapping *mapping,
541 loff_t page_base, int page_offset,
542 char __user *user_data,
543 int length)
544{
545 char *vaddr_atomic;
546 unsigned long unwritten;
547
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700548 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700549 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
550 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700551 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100552 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700553}
554
Eric Anholt3de09aa2009-03-09 09:42:23 -0700555/**
556 * This is the fast pwrite path, where we copy the data directly from the
557 * user into the GTT, uncached.
558 */
Eric Anholt673a3942008-07-30 12:06:12 -0700559static int
Chris Wilson05394f32010-11-08 19:18:58 +0000560i915_gem_gtt_pwrite_fast(struct drm_device *dev,
561 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700562 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000563 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700564{
Keith Packard0839ccb2008-10-30 19:38:48 -0700565 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700566 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700567 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700568 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200569 int page_offset, page_length, ret;
570
571 ret = i915_gem_object_pin(obj, 0, true);
572 if (ret)
573 goto out;
574
575 ret = i915_gem_object_set_to_gtt_domain(obj, true);
576 if (ret)
577 goto out_unpin;
578
579 ret = i915_gem_object_put_fence(obj);
580 if (ret)
581 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700582
583 user_data = (char __user *) (uintptr_t) args->data_ptr;
584 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700585
Chris Wilson05394f32010-11-08 19:18:58 +0000586 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700587
588 while (remain > 0) {
589 /* Operation in this page
590 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700591 * page_base = page offset within aperture
592 * page_offset = offset within page
593 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700594 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100595 page_base = offset & PAGE_MASK;
596 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700597 page_length = remain;
598 if ((page_offset + remain) > PAGE_SIZE)
599 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700600
Keith Packard0839ccb2008-10-30 19:38:48 -0700601 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700602 * source page isn't available. Return the error and we'll
603 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700604 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100605 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200606 page_offset, user_data, page_length)) {
607 ret = -EFAULT;
608 goto out_unpin;
609 }
Eric Anholt673a3942008-07-30 12:06:12 -0700610
Keith Packard0839ccb2008-10-30 19:38:48 -0700611 remain -= page_length;
612 user_data += page_length;
613 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700614 }
Eric Anholt673a3942008-07-30 12:06:12 -0700615
Daniel Vetter935aaa62012-03-25 19:47:35 +0200616out_unpin:
617 i915_gem_object_unpin(obj);
618out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700619 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700620}
621
Daniel Vetterd174bd62012-03-25 19:47:40 +0200622/* Per-page copy function for the shmem pwrite fastpath.
623 * Flushes invalid cachelines before writing to the target if
624 * needs_clflush_before is set and flushes out any written cachelines after
625 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700626static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200627shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
628 char __user *user_data,
629 bool page_do_bit17_swizzling,
630 bool needs_clflush_before,
631 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700632{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200633 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700634 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700635
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200636 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200637 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700638
Daniel Vetterd174bd62012-03-25 19:47:40 +0200639 vaddr = kmap_atomic(page);
640 if (needs_clflush_before)
641 drm_clflush_virt_range(vaddr + shmem_page_offset,
642 page_length);
643 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
644 user_data,
645 page_length);
646 if (needs_clflush_after)
647 drm_clflush_virt_range(vaddr + shmem_page_offset,
648 page_length);
649 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700650
651 return ret;
652}
653
Daniel Vetterd174bd62012-03-25 19:47:40 +0200654/* Only difference to the fast-path function is that this can handle bit17
655 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700656static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200657shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
658 char __user *user_data,
659 bool page_do_bit17_swizzling,
660 bool needs_clflush_before,
661 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700662{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200663 char *vaddr;
664 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700665
Daniel Vetterd174bd62012-03-25 19:47:40 +0200666 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200667 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200668 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
669 page_length,
670 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200671 if (page_do_bit17_swizzling)
672 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100673 user_data,
674 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200675 else
676 ret = __copy_from_user(vaddr + shmem_page_offset,
677 user_data,
678 page_length);
679 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200680 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
681 page_length,
682 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200683 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100684
Daniel Vetterd174bd62012-03-25 19:47:40 +0200685 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700686}
687
Eric Anholt40123c12009-03-09 13:42:30 -0700688static int
Daniel Vettere244a442012-03-25 19:47:28 +0200689i915_gem_shmem_pwrite(struct drm_device *dev,
690 struct drm_i915_gem_object *obj,
691 struct drm_i915_gem_pwrite *args,
692 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700693{
Chris Wilson05394f32010-11-08 19:18:58 +0000694 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700695 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100696 loff_t offset;
697 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100698 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100699 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200700 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200701 int needs_clflush_after = 0;
702 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200703 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700704
Daniel Vetter8c599672011-12-14 13:57:31 +0100705 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700706 remain = args->size;
707
Daniel Vetter8c599672011-12-14 13:57:31 +0100708 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700709
Daniel Vetter58642882012-03-25 19:47:37 +0200710 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
711 /* If we're not in the cpu write domain, set ourself into the gtt
712 * write domain and manually flush cachelines (if required). This
713 * optimizes for the case when the gpu will use the data
714 * right away and we therefore have to clflush anyway. */
715 if (obj->cache_level == I915_CACHE_NONE)
716 needs_clflush_after = 1;
717 ret = i915_gem_object_set_to_gtt_domain(obj, true);
718 if (ret)
719 return ret;
720 }
721 /* Same trick applies for invalidate partially written cachelines before
722 * writing. */
723 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
724 && obj->cache_level == I915_CACHE_NONE)
725 needs_clflush_before = 1;
726
Eric Anholt40123c12009-03-09 13:42:30 -0700727 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000728 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700729
730 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100731 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200732 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100733
Eric Anholt40123c12009-03-09 13:42:30 -0700734 /* Operation in this page
735 *
Eric Anholt40123c12009-03-09 13:42:30 -0700736 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700737 * page_length = bytes to copy for this page
738 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100739 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700740
741 page_length = remain;
742 if ((shmem_page_offset + page_length) > PAGE_SIZE)
743 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700744
Daniel Vetter58642882012-03-25 19:47:37 +0200745 /* If we don't overwrite a cacheline completely we need to be
746 * careful to have up-to-date data by first clflushing. Don't
747 * overcomplicate things and flush the entire patch. */
748 partial_cacheline_write = needs_clflush_before &&
749 ((shmem_page_offset | page_length)
750 & (boot_cpu_data.x86_clflush_size - 1));
751
Daniel Vetter692a5762012-03-25 19:47:34 +0200752 if (obj->pages) {
753 page = obj->pages[offset >> PAGE_SHIFT];
754 release_page = 0;
755 } else {
756 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
757 if (IS_ERR(page)) {
758 ret = PTR_ERR(page);
759 goto out;
760 }
761 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100762 }
763
Daniel Vetter8c599672011-12-14 13:57:31 +0100764 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
765 (page_to_phys(page) & (1 << 17)) != 0;
766
Daniel Vetterd174bd62012-03-25 19:47:40 +0200767 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
768 user_data, page_do_bit17_swizzling,
769 partial_cacheline_write,
770 needs_clflush_after);
771 if (ret == 0)
772 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700773
Daniel Vettere244a442012-03-25 19:47:28 +0200774 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200775 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200776 mutex_unlock(&dev->struct_mutex);
777
Daniel Vetterd174bd62012-03-25 19:47:40 +0200778 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
779 user_data, page_do_bit17_swizzling,
780 partial_cacheline_write,
781 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700782
Daniel Vettere244a442012-03-25 19:47:28 +0200783 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200784 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200785next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100786 set_page_dirty(page);
787 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200788 if (release_page)
789 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100790
Daniel Vetter8c599672011-12-14 13:57:31 +0100791 if (ret) {
792 ret = -EFAULT;
793 goto out;
794 }
795
Eric Anholt40123c12009-03-09 13:42:30 -0700796 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100797 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700798 offset += page_length;
799 }
800
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100801out:
Daniel Vettere244a442012-03-25 19:47:28 +0200802 if (hit_slowpath) {
803 /* Fixup: Kill any reinstated backing storage pages */
804 if (obj->madv == __I915_MADV_PURGED)
805 i915_gem_object_truncate(obj);
806 /* and flush dirty cachelines in case the object isn't in the cpu write
807 * domain anymore. */
808 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
809 i915_gem_clflush_object(obj);
810 intel_gtt_chipset_flush();
811 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100812 }
Eric Anholt40123c12009-03-09 13:42:30 -0700813
Daniel Vetter58642882012-03-25 19:47:37 +0200814 if (needs_clflush_after)
815 intel_gtt_chipset_flush();
816
Eric Anholt40123c12009-03-09 13:42:30 -0700817 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700818}
819
820/**
821 * Writes data to the object referenced by handle.
822 *
823 * On error, the contents of the buffer that were to be modified are undefined.
824 */
825int
826i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100827 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700828{
829 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000830 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000831 int ret;
832
833 if (args->size == 0)
834 return 0;
835
836 if (!access_ok(VERIFY_READ,
837 (char __user *)(uintptr_t)args->data_ptr,
838 args->size))
839 return -EFAULT;
840
Daniel Vetterf56f8212012-03-25 19:47:41 +0200841 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
842 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000843 if (ret)
844 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700845
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100846 ret = i915_mutex_lock_interruptible(dev);
847 if (ret)
848 return ret;
849
Chris Wilson05394f32010-11-08 19:18:58 +0000850 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000851 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100852 ret = -ENOENT;
853 goto unlock;
854 }
Eric Anholt673a3942008-07-30 12:06:12 -0700855
Chris Wilson7dcd2492010-09-26 20:21:44 +0100856 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000857 if (args->offset > obj->base.size ||
858 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100859 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100860 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100861 }
862
Chris Wilsondb53a302011-02-03 11:57:46 +0000863 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
864
Daniel Vetter935aaa62012-03-25 19:47:35 +0200865 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700866 /* We can only do the GTT pwrite on untiled buffers, as otherwise
867 * it would end up going through the fenced access, and we'll get
868 * different detiling behavior between reading and writing.
869 * pread/pwrite currently are reading and writing from the CPU
870 * perspective, requiring manual detiling by the client.
871 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100872 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100873 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100874 goto out;
875 }
876
877 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200878 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200879 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200880 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100881 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100882 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200883 /* Note that the gtt paths might fail with non-page-backed user
884 * pointers (e.g. gtt mappings when moving data between
885 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700886 }
Eric Anholt673a3942008-07-30 12:06:12 -0700887
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100888 if (ret == -EFAULT)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200889 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100890
Chris Wilson35b62a82010-09-26 20:23:38 +0100891out:
Chris Wilson05394f32010-11-08 19:18:58 +0000892 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100893unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100894 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700895 return ret;
896}
897
898/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800899 * Called when user space prepares to use an object with the CPU, either
900 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700901 */
902int
903i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000904 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700905{
906 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000907 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800908 uint32_t read_domains = args->read_domains;
909 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700910 int ret;
911
912 if (!(dev->driver->driver_features & DRIVER_GEM))
913 return -ENODEV;
914
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800915 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100916 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800917 return -EINVAL;
918
Chris Wilson21d509e2009-06-06 09:46:02 +0100919 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800920 return -EINVAL;
921
922 /* Having something in the write domain implies it's in the read
923 * domain, and only that read domain. Enforce that in the request.
924 */
925 if (write_domain != 0 && read_domains != write_domain)
926 return -EINVAL;
927
Chris Wilson76c1dec2010-09-25 11:22:51 +0100928 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100929 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100930 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700931
Chris Wilson05394f32010-11-08 19:18:58 +0000932 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000933 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100934 ret = -ENOENT;
935 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100936 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700937
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800938 if (read_domains & I915_GEM_DOMAIN_GTT) {
939 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800940
941 /* Silently promote "you're not bound, there was nothing to do"
942 * to success, since the client was just asking us to
943 * make sure everything was done.
944 */
945 if (ret == -EINVAL)
946 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800947 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800948 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800949 }
950
Chris Wilson05394f32010-11-08 19:18:58 +0000951 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100952unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700953 mutex_unlock(&dev->struct_mutex);
954 return ret;
955}
956
957/**
958 * Called when user space has done writes to this buffer
959 */
960int
961i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000962 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700963{
964 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000965 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700966 int ret = 0;
967
968 if (!(dev->driver->driver_features & DRIVER_GEM))
969 return -ENODEV;
970
Chris Wilson76c1dec2010-09-25 11:22:51 +0100971 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100972 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100973 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100974
Chris Wilson05394f32010-11-08 19:18:58 +0000975 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000976 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100977 ret = -ENOENT;
978 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700979 }
980
Eric Anholt673a3942008-07-30 12:06:12 -0700981 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000982 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800983 i915_gem_object_flush_cpu_write_domain(obj);
984
Chris Wilson05394f32010-11-08 19:18:58 +0000985 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100986unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700987 mutex_unlock(&dev->struct_mutex);
988 return ret;
989}
990
991/**
992 * Maps the contents of an object, returning the address it is mapped
993 * into.
994 *
995 * While the mapping holds a reference on the contents of the object, it doesn't
996 * imply a ref on the object itself.
997 */
998int
999i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001000 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001001{
1002 struct drm_i915_gem_mmap *args = data;
1003 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001004 unsigned long addr;
1005
1006 if (!(dev->driver->driver_features & DRIVER_GEM))
1007 return -ENODEV;
1008
Chris Wilson05394f32010-11-08 19:18:58 +00001009 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001010 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001011 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001012
Eric Anholt673a3942008-07-30 12:06:12 -07001013 down_write(&current->mm->mmap_sem);
1014 addr = do_mmap(obj->filp, 0, args->size,
1015 PROT_READ | PROT_WRITE, MAP_SHARED,
1016 args->offset);
1017 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001018 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001019 if (IS_ERR((void *)addr))
1020 return addr;
1021
1022 args->addr_ptr = (uint64_t) addr;
1023
1024 return 0;
1025}
1026
Jesse Barnesde151cf2008-11-12 10:03:55 -08001027/**
1028 * i915_gem_fault - fault a page into the GTT
1029 * vma: VMA in question
1030 * vmf: fault info
1031 *
1032 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1033 * from userspace. The fault handler takes care of binding the object to
1034 * the GTT (if needed), allocating and programming a fence register (again,
1035 * only if needed based on whether the old reg is still valid or the object
1036 * is tiled) and inserting a new PTE into the faulting process.
1037 *
1038 * Note that the faulting process may involve evicting existing objects
1039 * from the GTT and/or fence registers to make room. So performance may
1040 * suffer if the GTT working set is large or there are few fence registers
1041 * left.
1042 */
1043int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1044{
Chris Wilson05394f32010-11-08 19:18:58 +00001045 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1046 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001047 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001048 pgoff_t page_offset;
1049 unsigned long pfn;
1050 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001051 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001052
1053 /* We don't use vmf->pgoff since that has the fake offset */
1054 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1055 PAGE_SHIFT;
1056
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001057 ret = i915_mutex_lock_interruptible(dev);
1058 if (ret)
1059 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001060
Chris Wilsondb53a302011-02-03 11:57:46 +00001061 trace_i915_gem_object_fault(obj, page_offset, true, write);
1062
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001063 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001064 if (!obj->map_and_fenceable) {
1065 ret = i915_gem_object_unbind(obj);
1066 if (ret)
1067 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001068 }
Chris Wilson05394f32010-11-08 19:18:58 +00001069 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001070 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001071 if (ret)
1072 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001073
Eric Anholte92d03b2011-06-14 16:43:09 -07001074 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1075 if (ret)
1076 goto unlock;
1077 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001078
Daniel Vetter74898d72012-02-15 23:50:22 +01001079 if (!obj->has_global_gtt_mapping)
1080 i915_gem_gtt_bind_object(obj, obj->cache_level);
1081
Chris Wilson06d98132012-04-17 15:31:24 +01001082 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001083 if (ret)
1084 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001085
Chris Wilson05394f32010-11-08 19:18:58 +00001086 if (i915_gem_object_is_inactive(obj))
1087 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001088
Chris Wilson6299f992010-11-24 12:23:44 +00001089 obj->fault_mappable = true;
1090
Chris Wilson05394f32010-11-08 19:18:58 +00001091 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001092 page_offset;
1093
1094 /* Finally, remap it using the new GTT offset */
1095 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001096unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001097 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001098out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001099 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001100 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001101 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001102 /* Give the error handler a chance to run and move the
1103 * objects off the GPU active list. Next time we service the
1104 * fault, we should be able to transition the page into the
1105 * GTT without touching the GPU (and so avoid further
1106 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1107 * with coherency, just lost writes.
1108 */
Chris Wilson045e7692010-11-07 09:18:22 +00001109 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001110 case 0:
1111 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001112 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001113 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001114 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001115 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001116 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001117 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001118 }
1119}
1120
1121/**
Chris Wilson901782b2009-07-10 08:18:50 +01001122 * i915_gem_release_mmap - remove physical page mappings
1123 * @obj: obj in question
1124 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001125 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001126 * relinquish ownership of the pages back to the system.
1127 *
1128 * It is vital that we remove the page mapping if we have mapped a tiled
1129 * object through the GTT and then lose the fence register due to
1130 * resource pressure. Similarly if the object has been moved out of the
1131 * aperture, than pages mapped into userspace must be revoked. Removing the
1132 * mapping will then trigger a page fault on the next user access, allowing
1133 * fixup by i915_gem_fault().
1134 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001135void
Chris Wilson05394f32010-11-08 19:18:58 +00001136i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001137{
Chris Wilson6299f992010-11-24 12:23:44 +00001138 if (!obj->fault_mappable)
1139 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001140
Chris Wilsonf6e47882011-03-20 21:09:12 +00001141 if (obj->base.dev->dev_mapping)
1142 unmap_mapping_range(obj->base.dev->dev_mapping,
1143 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1144 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001145
Chris Wilson6299f992010-11-24 12:23:44 +00001146 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001147}
1148
Chris Wilson92b88ae2010-11-09 11:47:32 +00001149static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001150i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001151{
Chris Wilsone28f8712011-07-18 13:11:49 -07001152 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001153
1154 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001155 tiling_mode == I915_TILING_NONE)
1156 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001157
1158 /* Previous chips need a power-of-two fence region when tiling */
1159 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001160 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001161 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001162 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001163
Chris Wilsone28f8712011-07-18 13:11:49 -07001164 while (gtt_size < size)
1165 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001166
Chris Wilsone28f8712011-07-18 13:11:49 -07001167 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001168}
1169
Jesse Barnesde151cf2008-11-12 10:03:55 -08001170/**
1171 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1172 * @obj: object to check
1173 *
1174 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001175 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001176 */
1177static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001178i915_gem_get_gtt_alignment(struct drm_device *dev,
1179 uint32_t size,
1180 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001181{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001182 /*
1183 * Minimum alignment is 4k (GTT page size), but might be greater
1184 * if a fence register is needed for the object.
1185 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001186 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001187 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001188 return 4096;
1189
1190 /*
1191 * Previous chips need to be aligned to the size of the smallest
1192 * fence register that can contain the object.
1193 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001194 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001195}
1196
Daniel Vetter5e783302010-11-14 22:32:36 +01001197/**
1198 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1199 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001200 * @dev: the device
1201 * @size: size of the object
1202 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001203 *
1204 * Return the required GTT alignment for an object, only taking into account
1205 * unfenced tiled surface requirements.
1206 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001207uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001208i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1209 uint32_t size,
1210 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001211{
Daniel Vetter5e783302010-11-14 22:32:36 +01001212 /*
1213 * Minimum alignment is 4k (GTT page size) for sane hw.
1214 */
1215 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001216 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001217 return 4096;
1218
Chris Wilsone28f8712011-07-18 13:11:49 -07001219 /* Previous hardware however needs to be aligned to a power-of-two
1220 * tile height. The simplest method for determining this is to reuse
1221 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001222 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001223 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001224}
1225
Jesse Barnesde151cf2008-11-12 10:03:55 -08001226int
Dave Airlieff72145b2011-02-07 12:16:14 +10001227i915_gem_mmap_gtt(struct drm_file *file,
1228 struct drm_device *dev,
1229 uint32_t handle,
1230 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001231{
Chris Wilsonda761a62010-10-27 17:37:08 +01001232 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001233 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001234 int ret;
1235
1236 if (!(dev->driver->driver_features & DRIVER_GEM))
1237 return -ENODEV;
1238
Chris Wilson76c1dec2010-09-25 11:22:51 +01001239 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001240 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001241 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001242
Dave Airlieff72145b2011-02-07 12:16:14 +10001243 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001244 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001245 ret = -ENOENT;
1246 goto unlock;
1247 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001248
Chris Wilson05394f32010-11-08 19:18:58 +00001249 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001250 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001251 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001252 }
1253
Chris Wilson05394f32010-11-08 19:18:58 +00001254 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001255 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001256 ret = -EINVAL;
1257 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001258 }
1259
Chris Wilson05394f32010-11-08 19:18:58 +00001260 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001261 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001262 if (ret)
1263 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001264 }
1265
Dave Airlieff72145b2011-02-07 12:16:14 +10001266 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001267
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001268out:
Chris Wilson05394f32010-11-08 19:18:58 +00001269 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001270unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001271 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001272 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001273}
1274
Dave Airlieff72145b2011-02-07 12:16:14 +10001275/**
1276 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1277 * @dev: DRM device
1278 * @data: GTT mapping ioctl data
1279 * @file: GEM object info
1280 *
1281 * Simply returns the fake offset to userspace so it can mmap it.
1282 * The mmap call will end up in drm_gem_mmap(), which will set things
1283 * up so we can get faults in the handler above.
1284 *
1285 * The fault handler will take care of binding the object into the GTT
1286 * (since it may have been evicted to make room for something), allocating
1287 * a fence register, and mapping the appropriate aperture address into
1288 * userspace.
1289 */
1290int
1291i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1292 struct drm_file *file)
1293{
1294 struct drm_i915_gem_mmap_gtt *args = data;
1295
1296 if (!(dev->driver->driver_features & DRIVER_GEM))
1297 return -ENODEV;
1298
1299 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1300}
1301
1302
Chris Wilsone5281cc2010-10-28 13:45:36 +01001303static int
Chris Wilson05394f32010-11-08 19:18:58 +00001304i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001305 gfp_t gfpmask)
1306{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001307 int page_count, i;
1308 struct address_space *mapping;
1309 struct inode *inode;
1310 struct page *page;
1311
1312 /* Get the list of pages out of our struct file. They'll be pinned
1313 * at this point until we release them.
1314 */
Chris Wilson05394f32010-11-08 19:18:58 +00001315 page_count = obj->base.size / PAGE_SIZE;
1316 BUG_ON(obj->pages != NULL);
1317 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1318 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001319 return -ENOMEM;
1320
Chris Wilson05394f32010-11-08 19:18:58 +00001321 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001322 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001323 gfpmask |= mapping_gfp_mask(mapping);
1324
Chris Wilsone5281cc2010-10-28 13:45:36 +01001325 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001326 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001327 if (IS_ERR(page))
1328 goto err_pages;
1329
Chris Wilson05394f32010-11-08 19:18:58 +00001330 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001331 }
1332
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001333 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001334 i915_gem_object_do_bit_17_swizzle(obj);
1335
1336 return 0;
1337
1338err_pages:
1339 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001340 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001341
Chris Wilson05394f32010-11-08 19:18:58 +00001342 drm_free_large(obj->pages);
1343 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001344 return PTR_ERR(page);
1345}
1346
Chris Wilson5cdf5882010-09-27 15:51:07 +01001347static void
Chris Wilson05394f32010-11-08 19:18:58 +00001348i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001349{
Chris Wilson05394f32010-11-08 19:18:58 +00001350 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001351 int i;
1352
Chris Wilson05394f32010-11-08 19:18:58 +00001353 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001354
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001355 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001356 i915_gem_object_save_bit_17_swizzle(obj);
1357
Chris Wilson05394f32010-11-08 19:18:58 +00001358 if (obj->madv == I915_MADV_DONTNEED)
1359 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001360
1361 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001362 if (obj->dirty)
1363 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001364
Chris Wilson05394f32010-11-08 19:18:58 +00001365 if (obj->madv == I915_MADV_WILLNEED)
1366 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001367
Chris Wilson05394f32010-11-08 19:18:58 +00001368 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001369 }
Chris Wilson05394f32010-11-08 19:18:58 +00001370 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001371
Chris Wilson05394f32010-11-08 19:18:58 +00001372 drm_free_large(obj->pages);
1373 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001374}
1375
Chris Wilson54cf91d2010-11-25 18:00:26 +00001376void
Chris Wilson05394f32010-11-08 19:18:58 +00001377i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001378 struct intel_ring_buffer *ring,
1379 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001380{
Chris Wilson05394f32010-11-08 19:18:58 +00001381 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001382 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001383
Zou Nan hai852835f2010-05-21 09:08:56 +08001384 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001385 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001386
1387 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001388 if (!obj->active) {
1389 drm_gem_object_reference(&obj->base);
1390 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001391 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001392
Eric Anholt673a3942008-07-30 12:06:12 -07001393 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001394 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1395 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001396
Chris Wilson05394f32010-11-08 19:18:58 +00001397 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001398
Chris Wilsoncaea7472010-11-12 13:53:37 +00001399 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001400 obj->last_fenced_seqno = seqno;
1401 obj->last_fenced_ring = ring;
1402
Chris Wilson7dd49062012-03-21 10:48:18 +00001403 /* Bump MRU to take account of the delayed flush */
1404 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1405 struct drm_i915_fence_reg *reg;
1406
1407 reg = &dev_priv->fence_regs[obj->fence_reg];
1408 list_move_tail(&reg->lru_list,
1409 &dev_priv->mm.fence_list);
1410 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001411 }
1412}
1413
1414static void
1415i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1416{
1417 list_del_init(&obj->ring_list);
1418 obj->last_rendering_seqno = 0;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001419 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001420}
1421
Eric Anholtce44b0e2008-11-06 16:00:31 -08001422static void
Chris Wilson05394f32010-11-08 19:18:58 +00001423i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001424{
Chris Wilson05394f32010-11-08 19:18:58 +00001425 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001426 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001427
Chris Wilson05394f32010-11-08 19:18:58 +00001428 BUG_ON(!obj->active);
1429 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001430
1431 i915_gem_object_move_off_active(obj);
1432}
1433
1434static void
1435i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1436{
1437 struct drm_device *dev = obj->base.dev;
1438 struct drm_i915_private *dev_priv = dev->dev_private;
1439
1440 if (obj->pin_count != 0)
1441 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1442 else
1443 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1444
1445 BUG_ON(!list_empty(&obj->gpu_write_list));
1446 BUG_ON(!obj->active);
1447 obj->ring = NULL;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001448 obj->last_fenced_ring = NULL;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001449
1450 i915_gem_object_move_off_active(obj);
1451 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001452
1453 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001454 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001455 drm_gem_object_unreference(&obj->base);
1456
1457 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001458}
Eric Anholt673a3942008-07-30 12:06:12 -07001459
Chris Wilson963b4832009-09-20 23:03:54 +01001460/* Immediately discard the backing storage */
1461static void
Chris Wilson05394f32010-11-08 19:18:58 +00001462i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001463{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001464 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001465
Chris Wilsonae9fed62010-08-07 11:01:30 +01001466 /* Our goal here is to return as much of the memory as
1467 * is possible back to the system as we are called from OOM.
1468 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001469 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001470 */
Chris Wilson05394f32010-11-08 19:18:58 +00001471 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001472 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001473
Chris Wilsona14917e2012-02-24 21:13:38 +00001474 if (obj->base.map_list.map)
1475 drm_gem_free_mmap_offset(&obj->base);
1476
Chris Wilson05394f32010-11-08 19:18:58 +00001477 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001478}
1479
1480static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001481i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001482{
Chris Wilson05394f32010-11-08 19:18:58 +00001483 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001484}
1485
Eric Anholt673a3942008-07-30 12:06:12 -07001486static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001487i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1488 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001489{
Chris Wilson05394f32010-11-08 19:18:58 +00001490 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001491
Chris Wilson05394f32010-11-08 19:18:58 +00001492 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001493 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001494 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001495 if (obj->base.write_domain & flush_domains) {
1496 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001497
Chris Wilson05394f32010-11-08 19:18:58 +00001498 obj->base.write_domain = 0;
1499 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001500 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001501 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001502
Daniel Vetter63560392010-02-19 11:51:59 +01001503 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001504 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001505 old_write_domain);
1506 }
1507 }
1508}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001509
Daniel Vetter53d227f2012-01-25 16:32:49 +01001510static u32
1511i915_gem_get_seqno(struct drm_device *dev)
1512{
1513 drm_i915_private_t *dev_priv = dev->dev_private;
1514 u32 seqno = dev_priv->next_seqno;
1515
1516 /* reserve 0 for non-seqno */
1517 if (++dev_priv->next_seqno == 0)
1518 dev_priv->next_seqno = 1;
1519
1520 return seqno;
1521}
1522
1523u32
1524i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1525{
1526 if (ring->outstanding_lazy_request == 0)
1527 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1528
1529 return ring->outstanding_lazy_request;
1530}
1531
Chris Wilson3cce4692010-10-27 16:11:02 +01001532int
Chris Wilsondb53a302011-02-03 11:57:46 +00001533i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001534 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001535 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001536{
Chris Wilsondb53a302011-02-03 11:57:46 +00001537 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001538 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001539 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001540 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001541 int ret;
1542
1543 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001544 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001545
Chris Wilsona71d8d92012-02-15 11:25:36 +00001546 /* Record the position of the start of the request so that
1547 * should we detect the updated seqno part-way through the
1548 * GPU processing the request, we never over-estimate the
1549 * position of the head.
1550 */
1551 request_ring_position = intel_ring_get_tail(ring);
1552
Chris Wilson3cce4692010-10-27 16:11:02 +01001553 ret = ring->add_request(ring, &seqno);
1554 if (ret)
1555 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001556
Chris Wilsondb53a302011-02-03 11:57:46 +00001557 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001558
1559 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001560 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001561 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001562 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001563 was_empty = list_empty(&ring->request_list);
1564 list_add_tail(&request->list, &ring->request_list);
1565
Chris Wilsondb53a302011-02-03 11:57:46 +00001566 if (file) {
1567 struct drm_i915_file_private *file_priv = file->driver_priv;
1568
Chris Wilson1c255952010-09-26 11:03:27 +01001569 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001570 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001571 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001572 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001573 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001574 }
Eric Anholt673a3942008-07-30 12:06:12 -07001575
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001576 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001577
Ben Gamarif65d9422009-09-14 17:48:44 -04001578 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001579 if (i915_enable_hangcheck) {
1580 mod_timer(&dev_priv->hangcheck_timer,
1581 jiffies +
1582 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1583 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001584 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001585 queue_delayed_work(dev_priv->wq,
1586 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001587 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001588 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001589}
1590
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001591static inline void
1592i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001593{
Chris Wilson1c255952010-09-26 11:03:27 +01001594 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001595
Chris Wilson1c255952010-09-26 11:03:27 +01001596 if (!file_priv)
1597 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001598
Chris Wilson1c255952010-09-26 11:03:27 +01001599 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001600 if (request->file_priv) {
1601 list_del(&request->client_list);
1602 request->file_priv = NULL;
1603 }
Chris Wilson1c255952010-09-26 11:03:27 +01001604 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001605}
1606
Chris Wilsondfaae392010-09-22 10:31:52 +01001607static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1608 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001609{
Chris Wilsondfaae392010-09-22 10:31:52 +01001610 while (!list_empty(&ring->request_list)) {
1611 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001612
Chris Wilsondfaae392010-09-22 10:31:52 +01001613 request = list_first_entry(&ring->request_list,
1614 struct drm_i915_gem_request,
1615 list);
1616
1617 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001618 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001619 kfree(request);
1620 }
1621
1622 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001623 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001624
Chris Wilson05394f32010-11-08 19:18:58 +00001625 obj = list_first_entry(&ring->active_list,
1626 struct drm_i915_gem_object,
1627 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001628
Chris Wilson05394f32010-11-08 19:18:58 +00001629 obj->base.write_domain = 0;
1630 list_del_init(&obj->gpu_write_list);
1631 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001632 }
Eric Anholt673a3942008-07-30 12:06:12 -07001633}
1634
Chris Wilson312817a2010-11-22 11:50:11 +00001635static void i915_gem_reset_fences(struct drm_device *dev)
1636{
1637 struct drm_i915_private *dev_priv = dev->dev_private;
1638 int i;
1639
Daniel Vetter4b9de732011-10-09 21:52:02 +02001640 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001641 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001642 struct drm_i915_gem_object *obj = reg->obj;
1643
1644 if (!obj)
1645 continue;
1646
1647 if (obj->tiling_mode)
1648 i915_gem_release_mmap(obj);
1649
Chris Wilsond9e86c02010-11-10 16:40:20 +00001650 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1651 reg->obj->fenced_gpu_access = false;
1652 reg->obj->last_fenced_seqno = 0;
1653 reg->obj->last_fenced_ring = NULL;
1654 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001655 }
1656}
1657
Chris Wilson069efc12010-09-30 16:53:18 +01001658void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001659{
Chris Wilsondfaae392010-09-22 10:31:52 +01001660 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001661 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001662 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001663
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001664 for (i = 0; i < I915_NUM_RINGS; i++)
1665 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001666
1667 /* Remove anything from the flushing lists. The GPU cache is likely
1668 * to be lost on reset along with the data, so simply move the
1669 * lost bo to the inactive list.
1670 */
1671 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001672 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001673 struct drm_i915_gem_object,
1674 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001675
Chris Wilson05394f32010-11-08 19:18:58 +00001676 obj->base.write_domain = 0;
1677 list_del_init(&obj->gpu_write_list);
1678 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001679 }
Chris Wilson9375e442010-09-19 12:21:28 +01001680
Chris Wilsondfaae392010-09-22 10:31:52 +01001681 /* Move everything out of the GPU domains to ensure we do any
1682 * necessary invalidation upon reuse.
1683 */
Chris Wilson05394f32010-11-08 19:18:58 +00001684 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001685 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001686 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001687 {
Chris Wilson05394f32010-11-08 19:18:58 +00001688 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001689 }
Chris Wilson069efc12010-09-30 16:53:18 +01001690
1691 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001692 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001693}
1694
1695/**
1696 * This function clears the request list as sequence numbers are passed.
1697 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001698void
Chris Wilsondb53a302011-02-03 11:57:46 +00001699i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001700{
Eric Anholt673a3942008-07-30 12:06:12 -07001701 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001702 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001703
Chris Wilsondb53a302011-02-03 11:57:46 +00001704 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001705 return;
1706
Chris Wilsondb53a302011-02-03 11:57:46 +00001707 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001708
Chris Wilson78501ea2010-10-27 12:18:21 +01001709 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001710
Chris Wilson076e2c02011-01-21 10:07:18 +00001711 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001712 if (seqno >= ring->sync_seqno[i])
1713 ring->sync_seqno[i] = 0;
1714
Zou Nan hai852835f2010-05-21 09:08:56 +08001715 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001716 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001717
Zou Nan hai852835f2010-05-21 09:08:56 +08001718 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001719 struct drm_i915_gem_request,
1720 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001721
Chris Wilsondfaae392010-09-22 10:31:52 +01001722 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001723 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001724
Chris Wilsondb53a302011-02-03 11:57:46 +00001725 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001726 /* We know the GPU must have read the request to have
1727 * sent us the seqno + interrupt, so use the position
1728 * of tail of the request to update the last known position
1729 * of the GPU head.
1730 */
1731 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001732
1733 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001734 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001735 kfree(request);
1736 }
1737
1738 /* Move any buffers on the active list that are no longer referenced
1739 * by the ringbuffer to the flushing/inactive lists as appropriate.
1740 */
1741 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001742 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001743
Akshay Joshi0206e352011-08-16 15:34:10 -04001744 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001745 struct drm_i915_gem_object,
1746 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001747
Chris Wilson05394f32010-11-08 19:18:58 +00001748 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001749 break;
1750
Chris Wilson05394f32010-11-08 19:18:58 +00001751 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001752 i915_gem_object_move_to_flushing(obj);
1753 else
1754 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001755 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001756
Chris Wilsondb53a302011-02-03 11:57:46 +00001757 if (unlikely(ring->trace_irq_seqno &&
1758 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001759 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001760 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001761 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001762
Chris Wilsondb53a302011-02-03 11:57:46 +00001763 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001764}
1765
1766void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001767i915_gem_retire_requests(struct drm_device *dev)
1768{
1769 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001770 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001771
Chris Wilsonbe726152010-07-23 23:18:50 +01001772 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001773 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001774
1775 /* We must be careful that during unbind() we do not
1776 * accidentally infinitely recurse into retire requests.
1777 * Currently:
1778 * retire -> free -> unbind -> wait -> retire_ring
1779 */
Chris Wilson05394f32010-11-08 19:18:58 +00001780 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001781 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001782 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001783 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001784 }
1785
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001786 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001787 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001788}
1789
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001790static void
Eric Anholt673a3942008-07-30 12:06:12 -07001791i915_gem_retire_work_handler(struct work_struct *work)
1792{
1793 drm_i915_private_t *dev_priv;
1794 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001795 bool idle;
1796 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001797
1798 dev_priv = container_of(work, drm_i915_private_t,
1799 mm.retire_work.work);
1800 dev = dev_priv->dev;
1801
Chris Wilson891b48c2010-09-29 12:26:37 +01001802 /* Come back later if the device is busy... */
1803 if (!mutex_trylock(&dev->struct_mutex)) {
1804 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1805 return;
1806 }
1807
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001808 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001809
Chris Wilson0a587052011-01-09 21:05:44 +00001810 /* Send a periodic flush down the ring so we don't hold onto GEM
1811 * objects indefinitely.
1812 */
1813 idle = true;
1814 for (i = 0; i < I915_NUM_RINGS; i++) {
1815 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1816
1817 if (!list_empty(&ring->gpu_write_list)) {
1818 struct drm_i915_gem_request *request;
1819 int ret;
1820
Chris Wilsondb53a302011-02-03 11:57:46 +00001821 ret = i915_gem_flush_ring(ring,
1822 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001823 request = kzalloc(sizeof(*request), GFP_KERNEL);
1824 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001825 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001826 kfree(request);
1827 }
1828
1829 idle &= list_empty(&ring->request_list);
1830 }
1831
1832 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001833 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001834
Eric Anholt673a3942008-07-30 12:06:12 -07001835 mutex_unlock(&dev->struct_mutex);
1836}
1837
Chris Wilsondb53a302011-02-03 11:57:46 +00001838/**
1839 * Waits for a sequence number to be signaled, and cleans up the
1840 * request and object lists appropriately for that event.
1841 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001842int
Chris Wilsondb53a302011-02-03 11:57:46 +00001843i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001844 uint32_t seqno,
1845 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001846{
Chris Wilsondb53a302011-02-03 11:57:46 +00001847 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001848 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001849 int ret = 0;
1850
1851 BUG_ON(seqno == 0);
1852
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001853 if (atomic_read(&dev_priv->mm.wedged)) {
1854 struct completion *x = &dev_priv->error_completion;
1855 bool recovery_complete;
1856 unsigned long flags;
1857
1858 /* Give the error handler a chance to run. */
1859 spin_lock_irqsave(&x->wait.lock, flags);
1860 recovery_complete = x->done > 0;
1861 spin_unlock_irqrestore(&x->wait.lock, flags);
1862
1863 return recovery_complete ? -EIO : -EAGAIN;
1864 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001865
Chris Wilson5d97eb62010-11-10 20:40:02 +00001866 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001867 struct drm_i915_gem_request *request;
1868
1869 request = kzalloc(sizeof(*request), GFP_KERNEL);
1870 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001871 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001872
Chris Wilsondb53a302011-02-03 11:57:46 +00001873 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001874 if (ret) {
1875 kfree(request);
1876 return ret;
1877 }
1878
1879 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001880 }
1881
Chris Wilson78501ea2010-10-27 12:18:21 +01001882 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001883 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001884 ier = I915_READ(DEIER) | I915_READ(GTIER);
Jesse Barnes23e3f9b2012-03-28 13:39:39 -07001885 else if (IS_VALLEYVIEW(ring->dev))
1886 ier = I915_READ(GTIER) | I915_READ(VLV_IER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001887 else
1888 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001889 if (!ier) {
1890 DRM_ERROR("something (likely vbetool) disabled "
1891 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001892 ring->dev->driver->irq_preinstall(ring->dev);
1893 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001894 }
1895
Chris Wilsondb53a302011-02-03 11:57:46 +00001896 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001897
Chris Wilsonb2223492010-10-27 15:27:33 +01001898 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001899 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001900 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001901 ret = wait_event_interruptible(ring->irq_queue,
1902 i915_seqno_passed(ring->get_seqno(ring), seqno)
1903 || atomic_read(&dev_priv->mm.wedged));
1904 else
1905 wait_event(ring->irq_queue,
1906 i915_seqno_passed(ring->get_seqno(ring), seqno)
1907 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001908
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001909 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001910 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1911 seqno) ||
1912 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001913 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001914 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001915
Chris Wilsondb53a302011-02-03 11:57:46 +00001916 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001917 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001918 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001919 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001920
Eric Anholt673a3942008-07-30 12:06:12 -07001921 /* Directly dispatch request retiring. While we have the work queue
1922 * to handle this, the waiter on a request often wants an associated
1923 * buffer to have made it to the inactive list, and we would need
1924 * a separate wait queue to handle that.
1925 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001926 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001927 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001928
1929 return ret;
1930}
1931
Daniel Vetter48764bf2009-09-15 22:57:32 +02001932/**
Eric Anholt673a3942008-07-30 12:06:12 -07001933 * Ensures that all rendering to the object has completed and the object is
1934 * safe to unbind from the GTT or access from the CPU.
1935 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001936int
Chris Wilsonce453d82011-02-21 14:43:56 +00001937i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001938{
Eric Anholt673a3942008-07-30 12:06:12 -07001939 int ret;
1940
Eric Anholte47c68e2008-11-14 13:35:19 -08001941 /* This function only exists to support waiting for existing rendering,
1942 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001943 */
Chris Wilson05394f32010-11-08 19:18:58 +00001944 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001945
1946 /* If there is rendering queued on the buffer being evicted, wait for
1947 * it.
1948 */
Chris Wilson05394f32010-11-08 19:18:58 +00001949 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001950 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1951 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001952 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001953 return ret;
1954 }
1955
1956 return 0;
1957}
1958
Ben Widawsky5816d642012-04-11 11:18:19 -07001959/**
1960 * i915_gem_object_sync - sync an object to a ring.
1961 *
1962 * @obj: object which may be in use on another ring.
1963 * @to: ring we wish to use the object on. May be NULL.
1964 *
1965 * This code is meant to abstract object synchronization with the GPU.
1966 * Calling with NULL implies synchronizing the object with the CPU
1967 * rather than a particular GPU ring.
1968 *
1969 * Returns 0 if successful, else propagates up the lower layer error.
1970 */
Ben Widawsky2911a352012-04-05 14:47:36 -07001971int
1972i915_gem_object_sync(struct drm_i915_gem_object *obj,
1973 struct intel_ring_buffer *to)
1974{
1975 struct intel_ring_buffer *from = obj->ring;
1976 u32 seqno;
1977 int ret, idx;
1978
1979 if (from == NULL || to == from)
1980 return 0;
1981
Ben Widawsky5816d642012-04-11 11:18:19 -07001982 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07001983 return i915_gem_object_wait_rendering(obj);
1984
1985 idx = intel_ring_sync_index(from, to);
1986
1987 seqno = obj->last_rendering_seqno;
1988 if (seqno <= from->sync_seqno[idx])
1989 return 0;
1990
1991 if (seqno == from->outstanding_lazy_request) {
1992 struct drm_i915_gem_request *request;
1993
1994 request = kzalloc(sizeof(*request), GFP_KERNEL);
1995 if (request == NULL)
1996 return -ENOMEM;
1997
1998 ret = i915_add_request(from, NULL, request);
1999 if (ret) {
2000 kfree(request);
2001 return ret;
2002 }
2003
2004 seqno = request->seqno;
2005 }
2006
Ben Widawsky2911a352012-04-05 14:47:36 -07002007
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002008 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002009 if (!ret)
2010 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002011
Ben Widawskye3a5a222012-04-11 11:18:20 -07002012 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002013}
2014
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002015static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2016{
2017 u32 old_write_domain, old_read_domains;
2018
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002019 /* Act a barrier for all accesses through the GTT */
2020 mb();
2021
2022 /* Force a pagefault for domain tracking on next user access */
2023 i915_gem_release_mmap(obj);
2024
Keith Packardb97c3d92011-06-24 21:02:59 -07002025 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2026 return;
2027
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002028 old_read_domains = obj->base.read_domains;
2029 old_write_domain = obj->base.write_domain;
2030
2031 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2032 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2033
2034 trace_i915_gem_object_change_domain(obj,
2035 old_read_domains,
2036 old_write_domain);
2037}
2038
Eric Anholt673a3942008-07-30 12:06:12 -07002039/**
2040 * Unbinds an object from the GTT aperture.
2041 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002042int
Chris Wilson05394f32010-11-08 19:18:58 +00002043i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002044{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002045 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002046 int ret = 0;
2047
Chris Wilson05394f32010-11-08 19:18:58 +00002048 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002049 return 0;
2050
Chris Wilson05394f32010-11-08 19:18:58 +00002051 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002052 DRM_ERROR("Attempting to unbind pinned buffer\n");
2053 return -EINVAL;
2054 }
2055
Chris Wilsona8198ee2011-04-13 22:04:09 +01002056 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01002057 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002058 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002059 /* Continue on if we fail due to EIO, the GPU is hung so we
2060 * should be safe and we need to cleanup or else we might
2061 * cause memory corruption through use-after-free.
2062 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002063
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002064 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002065
2066 /* Move the object to the CPU domain to ensure that
2067 * any possible CPU writes while it's not in the GTT
2068 * are flushed when we go to remap it.
2069 */
2070 if (ret == 0)
2071 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2072 if (ret == -ERESTARTSYS)
2073 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002074 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002075 /* In the event of a disaster, abandon all caches and
2076 * hope for the best.
2077 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002078 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002079 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002080 }
Eric Anholt673a3942008-07-30 12:06:12 -07002081
Daniel Vetter96b47b62009-12-15 17:50:00 +01002082 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002083 ret = i915_gem_object_put_fence(obj);
2084 if (ret == -ERESTARTSYS)
2085 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002086
Chris Wilsondb53a302011-02-03 11:57:46 +00002087 trace_i915_gem_object_unbind(obj);
2088
Daniel Vetter74898d72012-02-15 23:50:22 +01002089 if (obj->has_global_gtt_mapping)
2090 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002091 if (obj->has_aliasing_ppgtt_mapping) {
2092 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2093 obj->has_aliasing_ppgtt_mapping = 0;
2094 }
Daniel Vetter74163902012-02-15 23:50:21 +01002095 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002096
Chris Wilsone5281cc2010-10-28 13:45:36 +01002097 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002098
Chris Wilson6299f992010-11-24 12:23:44 +00002099 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002100 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002101 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002102 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002103
Chris Wilson05394f32010-11-08 19:18:58 +00002104 drm_mm_put_block(obj->gtt_space);
2105 obj->gtt_space = NULL;
2106 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002107
Chris Wilson05394f32010-11-08 19:18:58 +00002108 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002109 i915_gem_object_truncate(obj);
2110
Chris Wilson8dc17752010-07-23 23:18:51 +01002111 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002112}
2113
Chris Wilson88241782011-01-07 17:09:48 +00002114int
Chris Wilsondb53a302011-02-03 11:57:46 +00002115i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002116 uint32_t invalidate_domains,
2117 uint32_t flush_domains)
2118{
Chris Wilson88241782011-01-07 17:09:48 +00002119 int ret;
2120
Chris Wilson36d527d2011-03-19 22:26:49 +00002121 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2122 return 0;
2123
Chris Wilsondb53a302011-02-03 11:57:46 +00002124 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2125
Chris Wilson88241782011-01-07 17:09:48 +00002126 ret = ring->flush(ring, invalidate_domains, flush_domains);
2127 if (ret)
2128 return ret;
2129
Chris Wilson36d527d2011-03-19 22:26:49 +00002130 if (flush_domains & I915_GEM_GPU_DOMAINS)
2131 i915_gem_process_flushing_list(ring, flush_domains);
2132
Chris Wilson88241782011-01-07 17:09:48 +00002133 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002134}
2135
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002136static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002137{
Chris Wilson88241782011-01-07 17:09:48 +00002138 int ret;
2139
Chris Wilson395b70b2010-10-28 21:28:46 +01002140 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002141 return 0;
2142
Chris Wilson88241782011-01-07 17:09:48 +00002143 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002144 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002145 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002146 if (ret)
2147 return ret;
2148 }
2149
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002150 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2151 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002152}
2153
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002154int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002155{
2156 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002157 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002158
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002159 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002160 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002161 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002162 if (ret)
2163 return ret;
2164 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002165
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002166 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002167}
2168
Chris Wilsona360bb12012-04-17 15:31:25 +01002169static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002170{
Chris Wilson05394f32010-11-08 19:18:58 +00002171 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002172 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002173 u32 size = obj->gtt_space->size;
2174 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002175 uint64_t val;
2176
Chris Wilson05394f32010-11-08 19:18:58 +00002177 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002178 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002179 val |= obj->gtt_offset & 0xfffff000;
2180 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002181 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2182
Chris Wilson05394f32010-11-08 19:18:58 +00002183 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002184 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2185 val |= I965_FENCE_REG_VALID;
2186
Chris Wilsona360bb12012-04-17 15:31:25 +01002187 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
Daniel Vetterc6642782010-11-12 13:46:18 +00002188
2189 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002190}
2191
Chris Wilsona360bb12012-04-17 15:31:25 +01002192static int i965_write_fence_reg(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002193{
Chris Wilson05394f32010-11-08 19:18:58 +00002194 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002195 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002196 u32 size = obj->gtt_space->size;
2197 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002198 uint64_t val;
2199
Chris Wilson05394f32010-11-08 19:18:58 +00002200 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002201 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002202 val |= obj->gtt_offset & 0xfffff000;
2203 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2204 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002205 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2206 val |= I965_FENCE_REG_VALID;
2207
Chris Wilsona360bb12012-04-17 15:31:25 +01002208 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
Daniel Vetterc6642782010-11-12 13:46:18 +00002209
2210 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002211}
2212
Chris Wilsona360bb12012-04-17 15:31:25 +01002213static int i915_write_fence_reg(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002214{
Chris Wilson05394f32010-11-08 19:18:58 +00002215 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002216 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002217 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002218 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002219 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002220
Daniel Vetterc6642782010-11-12 13:46:18 +00002221 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2222 (size & -size) != size ||
2223 (obj->gtt_offset & (size - 1)),
2224 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2225 obj->gtt_offset, obj->map_and_fenceable, size))
2226 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002227
Daniel Vetterc6642782010-11-12 13:46:18 +00002228 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002229 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002230 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002231 tile_width = 512;
2232
2233 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002234 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002235 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002236
Chris Wilson05394f32010-11-08 19:18:58 +00002237 val = obj->gtt_offset;
2238 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002239 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002240 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002241 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2242 val |= I830_FENCE_REG_VALID;
2243
Chris Wilson05394f32010-11-08 19:18:58 +00002244 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002245 if (fence_reg < 8)
2246 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002247 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002248 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002249
Chris Wilsona360bb12012-04-17 15:31:25 +01002250 I915_WRITE(fence_reg, val);
Daniel Vetterc6642782010-11-12 13:46:18 +00002251
2252 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002253}
2254
Chris Wilsona360bb12012-04-17 15:31:25 +01002255static int i830_write_fence_reg(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002256{
Chris Wilson05394f32010-11-08 19:18:58 +00002257 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002258 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002259 u32 size = obj->gtt_space->size;
2260 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002261 uint32_t val;
2262 uint32_t pitch_val;
2263
Daniel Vetterc6642782010-11-12 13:46:18 +00002264 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2265 (size & -size) != size ||
2266 (obj->gtt_offset & (size - 1)),
2267 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2268 obj->gtt_offset, size))
2269 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002270
Chris Wilson05394f32010-11-08 19:18:58 +00002271 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002272 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002273
Chris Wilson05394f32010-11-08 19:18:58 +00002274 val = obj->gtt_offset;
2275 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002276 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002277 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002278 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2279 val |= I830_FENCE_REG_VALID;
2280
Chris Wilsona360bb12012-04-17 15:31:25 +01002281 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
Daniel Vetterc6642782010-11-12 13:46:18 +00002282
2283 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002284}
2285
Chris Wilsond9e86c02010-11-10 16:40:20 +00002286static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2287{
2288 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2289}
2290
2291static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002292i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002293{
2294 int ret;
2295
2296 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002297 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002298 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002299 0, obj->base.write_domain);
2300 if (ret)
2301 return ret;
2302 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002303
2304 obj->fenced_gpu_access = false;
2305 }
2306
Chris Wilsona360bb12012-04-17 15:31:25 +01002307 if (obj->last_fenced_seqno && NULL != obj->last_fenced_ring) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00002308 if (!ring_passed_seqno(obj->last_fenced_ring,
2309 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002310 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002311 obj->last_fenced_seqno,
2312 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002313 if (ret)
2314 return ret;
2315 }
2316
2317 obj->last_fenced_seqno = 0;
2318 obj->last_fenced_ring = NULL;
2319 }
2320
Chris Wilson63256ec2011-01-04 18:42:07 +00002321 /* Ensure that all CPU reads are completed before installing a fence
2322 * and all writes before removing the fence.
2323 */
2324 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2325 mb();
2326
Chris Wilsond9e86c02010-11-10 16:40:20 +00002327 return 0;
2328}
2329
2330int
2331i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2332{
2333 int ret;
2334
2335 if (obj->tiling_mode)
2336 i915_gem_release_mmap(obj);
2337
Chris Wilsona360bb12012-04-17 15:31:25 +01002338 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002339 if (ret)
2340 return ret;
2341
2342 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2343 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002344
2345 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002346 i915_gem_clear_fence_reg(obj->base.dev,
2347 &dev_priv->fence_regs[obj->fence_reg]);
2348
2349 obj->fence_reg = I915_FENCE_REG_NONE;
2350 }
2351
2352 return 0;
2353}
2354
2355static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002356i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002357{
Daniel Vetterae3db242010-02-19 11:51:58 +01002358 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002359 struct drm_i915_fence_reg *reg, *first, *avail;
2360 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002361
2362 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002363 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002364 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2365 reg = &dev_priv->fence_regs[i];
2366 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002367 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002368
Chris Wilson1690e1e2011-12-14 13:57:08 +01002369 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002370 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002371 }
2372
Chris Wilsond9e86c02010-11-10 16:40:20 +00002373 if (avail == NULL)
2374 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002375
2376 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002377 avail = first = NULL;
2378 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002379 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002380 continue;
2381
Chris Wilsond9e86c02010-11-10 16:40:20 +00002382 if (first == NULL)
2383 first = reg;
2384
Chris Wilsona360bb12012-04-17 15:31:25 +01002385 if (reg->obj->last_fenced_ring == NULL) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00002386 avail = reg;
2387 break;
2388 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002389 }
2390
Chris Wilsond9e86c02010-11-10 16:40:20 +00002391 if (avail == NULL)
2392 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002393
Chris Wilsona00b10c2010-09-24 21:15:47 +01002394 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002395}
2396
Jesse Barnesde151cf2008-11-12 10:03:55 -08002397/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002398 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002399 * @obj: object to map through a fence reg
2400 *
2401 * When mapping objects through the GTT, userspace wants to be able to write
2402 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002403 * This function walks the fence regs looking for a free one for @obj,
2404 * stealing one if it can't find any.
2405 *
2406 * It then sets up the reg based on the object's properties: address, pitch
2407 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002408 *
2409 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002410 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002411int
Chris Wilson06d98132012-04-17 15:31:24 +01002412i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002413{
Chris Wilson05394f32010-11-08 19:18:58 +00002414 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002415 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002416 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002417 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002418
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002419 if (obj->tiling_mode == I915_TILING_NONE)
2420 return i915_gem_object_put_fence(obj);
2421
Chris Wilsond9e86c02010-11-10 16:40:20 +00002422 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002423 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2424 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002425 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002426
Chris Wilson29c5a582011-03-17 15:23:22 +00002427 if (obj->tiling_changed) {
Chris Wilsona360bb12012-04-17 15:31:25 +01002428 ret = i915_gem_object_flush_fence(obj);
Chris Wilson29c5a582011-03-17 15:23:22 +00002429 if (ret)
2430 return ret;
2431
Chris Wilson29c5a582011-03-17 15:23:22 +00002432 goto update;
2433 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002434
Chris Wilsona360bb12012-04-17 15:31:25 +01002435 if (reg->setup_seqno) {
2436 if (!ring_passed_seqno(obj->last_fenced_ring,
2437 reg->setup_seqno)) {
2438 ret = i915_wait_request(obj->last_fenced_ring,
2439 reg->setup_seqno,
2440 true);
2441 if (ret)
2442 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002443 }
Chris Wilsona360bb12012-04-17 15:31:25 +01002444
2445 reg->setup_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002446 }
2447
Eric Anholta09ba7f2009-08-29 12:49:51 -07002448 return 0;
2449 }
2450
Chris Wilsona360bb12012-04-17 15:31:25 +01002451 reg = i915_find_fence_reg(dev);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002452 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002453 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454
Chris Wilsona360bb12012-04-17 15:31:25 +01002455 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002456 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002457 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002458
Chris Wilsond9e86c02010-11-10 16:40:20 +00002459 if (reg->obj) {
2460 struct drm_i915_gem_object *old = reg->obj;
2461
2462 drm_gem_object_reference(&old->base);
2463
2464 if (old->tiling_mode)
2465 i915_gem_release_mmap(old);
2466
Chris Wilsona360bb12012-04-17 15:31:25 +01002467 ret = i915_gem_object_flush_fence(old);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002468 if (ret) {
2469 drm_gem_object_unreference(&old->base);
2470 return ret;
2471 }
2472
Chris Wilsond9e86c02010-11-10 16:40:20 +00002473 old->fence_reg = I915_FENCE_REG_NONE;
Chris Wilsona360bb12012-04-17 15:31:25 +01002474 old->last_fenced_ring = NULL;
2475 old->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002476
2477 drm_gem_object_unreference(&old->base);
Chris Wilsona360bb12012-04-17 15:31:25 +01002478 }
Eric Anholta09ba7f2009-08-29 12:49:51 -07002479
Jesse Barnesde151cf2008-11-12 10:03:55 -08002480 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002481 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2482 obj->fence_reg = reg - dev_priv->fence_regs;
Chris Wilsona360bb12012-04-17 15:31:25 +01002483 obj->last_fenced_ring = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002484
Chris Wilsona360bb12012-04-17 15:31:25 +01002485 reg->setup_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002486 obj->last_fenced_seqno = reg->setup_seqno;
2487
2488update:
2489 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002490 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002491 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002492 case 6:
Chris Wilsona360bb12012-04-17 15:31:25 +01002493 ret = sandybridge_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002494 break;
2495 case 5:
2496 case 4:
Chris Wilsona360bb12012-04-17 15:31:25 +01002497 ret = i965_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002498 break;
2499 case 3:
Chris Wilsona360bb12012-04-17 15:31:25 +01002500 ret = i915_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002501 break;
2502 case 2:
Chris Wilsona360bb12012-04-17 15:31:25 +01002503 ret = i830_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002504 break;
2505 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002506
Daniel Vetterc6642782010-11-12 13:46:18 +00002507 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002508}
2509
2510/**
2511 * i915_gem_clear_fence_reg - clear out fence register info
2512 * @obj: object to clear
2513 *
2514 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002515 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002516 */
2517static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002518i915_gem_clear_fence_reg(struct drm_device *dev,
2519 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002520{
Jesse Barnes79e53942008-11-07 14:24:08 -08002521 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002522 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002523
Chris Wilsone259bef2010-09-17 00:32:02 +01002524 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002525 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002526 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002527 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002528 break;
2529 case 5:
2530 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002531 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002532 break;
2533 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002534 if (fence_reg >= 8)
2535 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002536 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002537 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002538 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002539
2540 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002541 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002542 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002543
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002544 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002545 reg->obj = NULL;
2546 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002547 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002548}
2549
2550/**
Eric Anholt673a3942008-07-30 12:06:12 -07002551 * Finds free space in the GTT aperture and binds the object there.
2552 */
2553static int
Chris Wilson05394f32010-11-08 19:18:58 +00002554i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002555 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002556 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002557{
Chris Wilson05394f32010-11-08 19:18:58 +00002558 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002559 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002560 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002561 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002562 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002563 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002564 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002565
Chris Wilson05394f32010-11-08 19:18:58 +00002566 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002567 DRM_ERROR("Attempting to bind a purgeable object\n");
2568 return -EINVAL;
2569 }
2570
Chris Wilsone28f8712011-07-18 13:11:49 -07002571 fence_size = i915_gem_get_gtt_size(dev,
2572 obj->base.size,
2573 obj->tiling_mode);
2574 fence_alignment = i915_gem_get_gtt_alignment(dev,
2575 obj->base.size,
2576 obj->tiling_mode);
2577 unfenced_alignment =
2578 i915_gem_get_unfenced_gtt_alignment(dev,
2579 obj->base.size,
2580 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002581
Eric Anholt673a3942008-07-30 12:06:12 -07002582 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002583 alignment = map_and_fenceable ? fence_alignment :
2584 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002585 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002586 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2587 return -EINVAL;
2588 }
2589
Chris Wilson05394f32010-11-08 19:18:58 +00002590 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002591
Chris Wilson654fc602010-05-27 13:18:21 +01002592 /* If the object is bigger than the entire aperture, reject it early
2593 * before evicting everything in a vain attempt to find space.
2594 */
Chris Wilson05394f32010-11-08 19:18:58 +00002595 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002596 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002597 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2598 return -E2BIG;
2599 }
2600
Eric Anholt673a3942008-07-30 12:06:12 -07002601 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002602 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002603 free_space =
2604 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002605 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002606 dev_priv->mm.gtt_mappable_end,
2607 0);
2608 else
2609 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002610 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002611
2612 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002613 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002614 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002615 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002616 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002617 dev_priv->mm.gtt_mappable_end,
2618 0);
2619 else
Chris Wilson05394f32010-11-08 19:18:58 +00002620 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002621 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002622 }
Chris Wilson05394f32010-11-08 19:18:58 +00002623 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002624 /* If the gtt is empty and we're still having trouble
2625 * fitting our object in, we're out of memory.
2626 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002627 ret = i915_gem_evict_something(dev, size, alignment,
2628 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002629 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002630 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002631
Eric Anholt673a3942008-07-30 12:06:12 -07002632 goto search_free;
2633 }
2634
Chris Wilsone5281cc2010-10-28 13:45:36 +01002635 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002636 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002637 drm_mm_put_block(obj->gtt_space);
2638 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002639
2640 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002641 /* first try to reclaim some memory by clearing the GTT */
2642 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002643 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002644 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002645 if (gfpmask) {
2646 gfpmask = 0;
2647 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002648 }
2649
Chris Wilson809b6332011-01-10 17:33:15 +00002650 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002651 }
2652
2653 goto search_free;
2654 }
2655
Eric Anholt673a3942008-07-30 12:06:12 -07002656 return ret;
2657 }
2658
Daniel Vetter74163902012-02-15 23:50:21 +01002659 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002660 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002661 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002662 drm_mm_put_block(obj->gtt_space);
2663 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002664
Chris Wilson809b6332011-01-10 17:33:15 +00002665 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002666 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002667
2668 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002669 }
Eric Anholt673a3942008-07-30 12:06:12 -07002670
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002671 if (!dev_priv->mm.aliasing_ppgtt)
2672 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002673
Chris Wilson6299f992010-11-24 12:23:44 +00002674 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002675 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002676
Eric Anholt673a3942008-07-30 12:06:12 -07002677 /* Assert that the object is not currently in any GPU domain. As it
2678 * wasn't in the GTT, there shouldn't be any way it could have been in
2679 * a GPU cache
2680 */
Chris Wilson05394f32010-11-08 19:18:58 +00002681 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2682 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002683
Chris Wilson6299f992010-11-24 12:23:44 +00002684 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002685
Daniel Vetter75e9e912010-11-04 17:11:09 +01002686 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002687 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002688 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002689
Daniel Vetter75e9e912010-11-04 17:11:09 +01002690 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002691 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002692
Chris Wilson05394f32010-11-08 19:18:58 +00002693 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002694
Chris Wilsondb53a302011-02-03 11:57:46 +00002695 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002696 return 0;
2697}
2698
2699void
Chris Wilson05394f32010-11-08 19:18:58 +00002700i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002701{
Eric Anholt673a3942008-07-30 12:06:12 -07002702 /* If we don't have a page list set up, then we're not pinned
2703 * to GPU, and we can ignore the cache flush because it'll happen
2704 * again at bind time.
2705 */
Chris Wilson05394f32010-11-08 19:18:58 +00002706 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002707 return;
2708
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002709 /* If the GPU is snooping the contents of the CPU cache,
2710 * we do not need to manually clear the CPU cache lines. However,
2711 * the caches are only snooped when the render cache is
2712 * flushed/invalidated. As we always have to emit invalidations
2713 * and flushes when moving into and out of the RENDER domain, correct
2714 * snooping behaviour occurs naturally as the result of our domain
2715 * tracking.
2716 */
2717 if (obj->cache_level != I915_CACHE_NONE)
2718 return;
2719
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002720 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002721
Chris Wilson05394f32010-11-08 19:18:58 +00002722 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002723}
2724
Eric Anholte47c68e2008-11-14 13:35:19 -08002725/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002726static int
Chris Wilson3619df02010-11-28 15:37:17 +00002727i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002728{
Chris Wilson05394f32010-11-08 19:18:58 +00002729 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002730 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002731
2732 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002733 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002734}
2735
2736/** Flushes the GTT write domain for the object if it's dirty. */
2737static void
Chris Wilson05394f32010-11-08 19:18:58 +00002738i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002739{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002740 uint32_t old_write_domain;
2741
Chris Wilson05394f32010-11-08 19:18:58 +00002742 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002743 return;
2744
Chris Wilson63256ec2011-01-04 18:42:07 +00002745 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002746 * to it immediately go to main memory as far as we know, so there's
2747 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002748 *
2749 * However, we do have to enforce the order so that all writes through
2750 * the GTT land before any writes to the device, such as updates to
2751 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002752 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002753 wmb();
2754
Chris Wilson05394f32010-11-08 19:18:58 +00002755 old_write_domain = obj->base.write_domain;
2756 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002757
2758 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002759 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002760 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002761}
2762
2763/** Flushes the CPU write domain for the object if it's dirty. */
2764static void
Chris Wilson05394f32010-11-08 19:18:58 +00002765i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002766{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002767 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002768
Chris Wilson05394f32010-11-08 19:18:58 +00002769 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002770 return;
2771
2772 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002773 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002774 old_write_domain = obj->base.write_domain;
2775 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002776
2777 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002778 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002779 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002780}
2781
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002782/**
2783 * Moves a single object to the GTT read, and possibly write domain.
2784 *
2785 * This function returns when the move is complete, including waiting on
2786 * flushes to occur.
2787 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002788int
Chris Wilson20217462010-11-23 15:26:33 +00002789i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002790{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002791 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002792 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002793
Eric Anholt02354392008-11-26 13:58:13 -08002794 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002795 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002796 return -EINVAL;
2797
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002798 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2799 return 0;
2800
Chris Wilson88241782011-01-07 17:09:48 +00002801 ret = i915_gem_object_flush_gpu_write_domain(obj);
2802 if (ret)
2803 return ret;
2804
Chris Wilson87ca9c82010-12-02 09:42:56 +00002805 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002806 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002807 if (ret)
2808 return ret;
2809 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002810
Chris Wilson72133422010-09-13 23:56:38 +01002811 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002812
Chris Wilson05394f32010-11-08 19:18:58 +00002813 old_write_domain = obj->base.write_domain;
2814 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002815
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002816 /* It should now be out of any other write domains, and we can update
2817 * the domain values for our changes.
2818 */
Chris Wilson05394f32010-11-08 19:18:58 +00002819 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2820 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002821 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002822 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2823 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2824 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002825 }
2826
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002827 trace_i915_gem_object_change_domain(obj,
2828 old_read_domains,
2829 old_write_domain);
2830
Eric Anholte47c68e2008-11-14 13:35:19 -08002831 return 0;
2832}
2833
Chris Wilsone4ffd172011-04-04 09:44:39 +01002834int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2835 enum i915_cache_level cache_level)
2836{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002837 struct drm_device *dev = obj->base.dev;
2838 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002839 int ret;
2840
2841 if (obj->cache_level == cache_level)
2842 return 0;
2843
2844 if (obj->pin_count) {
2845 DRM_DEBUG("can not change the cache level of pinned objects\n");
2846 return -EBUSY;
2847 }
2848
2849 if (obj->gtt_space) {
2850 ret = i915_gem_object_finish_gpu(obj);
2851 if (ret)
2852 return ret;
2853
2854 i915_gem_object_finish_gtt(obj);
2855
2856 /* Before SandyBridge, you could not use tiling or fence
2857 * registers with snooped memory, so relinquish any fences
2858 * currently pointing to our region in the aperture.
2859 */
2860 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2861 ret = i915_gem_object_put_fence(obj);
2862 if (ret)
2863 return ret;
2864 }
2865
Daniel Vetter74898d72012-02-15 23:50:22 +01002866 if (obj->has_global_gtt_mapping)
2867 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002868 if (obj->has_aliasing_ppgtt_mapping)
2869 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2870 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002871 }
2872
2873 if (cache_level == I915_CACHE_NONE) {
2874 u32 old_read_domains, old_write_domain;
2875
2876 /* If we're coming from LLC cached, then we haven't
2877 * actually been tracking whether the data is in the
2878 * CPU cache or not, since we only allow one bit set
2879 * in obj->write_domain and have been skipping the clflushes.
2880 * Just set it to the CPU cache for now.
2881 */
2882 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2883 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2884
2885 old_read_domains = obj->base.read_domains;
2886 old_write_domain = obj->base.write_domain;
2887
2888 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2889 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2890
2891 trace_i915_gem_object_change_domain(obj,
2892 old_read_domains,
2893 old_write_domain);
2894 }
2895
2896 obj->cache_level = cache_level;
2897 return 0;
2898}
2899
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002900/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002901 * Prepare buffer for display plane (scanout, cursors, etc).
2902 * Can be called from an uninterruptible phase (modesetting) and allows
2903 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002904 */
2905int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002906i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2907 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002908 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002909{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002910 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002911 int ret;
2912
Chris Wilson88241782011-01-07 17:09:48 +00002913 ret = i915_gem_object_flush_gpu_write_domain(obj);
2914 if (ret)
2915 return ret;
2916
Chris Wilson0be73282010-12-06 14:36:27 +00002917 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07002918 ret = i915_gem_object_sync(obj, pipelined);
2919 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002920 return ret;
2921 }
2922
Eric Anholta7ef0642011-03-29 16:59:54 -07002923 /* The display engine is not coherent with the LLC cache on gen6. As
2924 * a result, we make sure that the pinning that is about to occur is
2925 * done with uncached PTEs. This is lowest common denominator for all
2926 * chipsets.
2927 *
2928 * However for gen6+, we could do better by using the GFDT bit instead
2929 * of uncaching, which would allow us to flush all the LLC-cached data
2930 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2931 */
2932 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2933 if (ret)
2934 return ret;
2935
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002936 /* As the user may map the buffer once pinned in the display plane
2937 * (e.g. libkms for the bootup splash), we have to ensure that we
2938 * always use map_and_fenceable for all scanout buffers.
2939 */
2940 ret = i915_gem_object_pin(obj, alignment, true);
2941 if (ret)
2942 return ret;
2943
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002944 i915_gem_object_flush_cpu_write_domain(obj);
2945
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002946 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002947 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002948
2949 /* It should now be out of any other write domains, and we can update
2950 * the domain values for our changes.
2951 */
2952 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002953 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002954
2955 trace_i915_gem_object_change_domain(obj,
2956 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002957 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002958
2959 return 0;
2960}
2961
Chris Wilson85345512010-11-13 09:49:11 +00002962int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002963i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002964{
Chris Wilson88241782011-01-07 17:09:48 +00002965 int ret;
2966
Chris Wilsona8198ee2011-04-13 22:04:09 +01002967 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002968 return 0;
2969
Chris Wilson88241782011-01-07 17:09:48 +00002970 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002971 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002972 if (ret)
2973 return ret;
2974 }
Chris Wilson85345512010-11-13 09:49:11 +00002975
Chris Wilsonc501ae72011-12-14 13:57:23 +01002976 ret = i915_gem_object_wait_rendering(obj);
2977 if (ret)
2978 return ret;
2979
Chris Wilsona8198ee2011-04-13 22:04:09 +01002980 /* Ensure that we invalidate the GPU's caches and TLBs. */
2981 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002982 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002983}
2984
Eric Anholte47c68e2008-11-14 13:35:19 -08002985/**
2986 * Moves a single object to the CPU read, and possibly write domain.
2987 *
2988 * This function returns when the move is complete, including waiting on
2989 * flushes to occur.
2990 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002991int
Chris Wilson919926a2010-11-12 13:42:53 +00002992i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002993{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002994 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002995 int ret;
2996
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002997 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2998 return 0;
2999
Chris Wilson88241782011-01-07 17:09:48 +00003000 ret = i915_gem_object_flush_gpu_write_domain(obj);
3001 if (ret)
3002 return ret;
3003
Chris Wilsonf8413192012-04-10 11:52:50 +01003004 if (write || obj->pending_gpu_write) {
3005 ret = i915_gem_object_wait_rendering(obj);
3006 if (ret)
3007 return ret;
3008 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003009
3010 i915_gem_object_flush_gtt_write_domain(obj);
3011
Chris Wilson05394f32010-11-08 19:18:58 +00003012 old_write_domain = obj->base.write_domain;
3013 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003014
Eric Anholte47c68e2008-11-14 13:35:19 -08003015 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003016 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003017 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003018
Chris Wilson05394f32010-11-08 19:18:58 +00003019 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003020 }
3021
3022 /* It should now be out of any other write domains, and we can update
3023 * the domain values for our changes.
3024 */
Chris Wilson05394f32010-11-08 19:18:58 +00003025 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003026
3027 /* If we're writing through the CPU, then the GPU read domains will
3028 * need to be invalidated at next use.
3029 */
3030 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003031 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3032 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003033 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003034
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003035 trace_i915_gem_object_change_domain(obj,
3036 old_read_domains,
3037 old_write_domain);
3038
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003039 return 0;
3040}
3041
Eric Anholt673a3942008-07-30 12:06:12 -07003042/* Throttle our rendering by waiting until the ring has completed our requests
3043 * emitted over 20 msec ago.
3044 *
Eric Anholtb9624422009-06-03 07:27:35 +00003045 * Note that if we were to use the current jiffies each time around the loop,
3046 * we wouldn't escape the function with any frames outstanding if the time to
3047 * render a frame was over 20ms.
3048 *
Eric Anholt673a3942008-07-30 12:06:12 -07003049 * This should get us reasonable parallelism between CPU and GPU but also
3050 * relatively low latency when blocking on a particular request to finish.
3051 */
3052static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003053i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003054{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003055 struct drm_i915_private *dev_priv = dev->dev_private;
3056 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003057 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003058 struct drm_i915_gem_request *request;
3059 struct intel_ring_buffer *ring = NULL;
3060 u32 seqno = 0;
3061 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003062
Chris Wilsone110e8d2011-01-26 15:39:14 +00003063 if (atomic_read(&dev_priv->mm.wedged))
3064 return -EIO;
3065
Chris Wilson1c255952010-09-26 11:03:27 +01003066 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003067 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003068 if (time_after_eq(request->emitted_jiffies, recent_enough))
3069 break;
3070
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003071 ring = request->ring;
3072 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003073 }
Chris Wilson1c255952010-09-26 11:03:27 +01003074 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003075
3076 if (seqno == 0)
3077 return 0;
3078
3079 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003080 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003081 /* And wait for the seqno passing without holding any locks and
3082 * causing extra latency for others. This is safe as the irq
3083 * generation is designed to be run atomically and so is
3084 * lockless.
3085 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003086 if (ring->irq_get(ring)) {
3087 ret = wait_event_interruptible(ring->irq_queue,
3088 i915_seqno_passed(ring->get_seqno(ring), seqno)
3089 || atomic_read(&dev_priv->mm.wedged));
3090 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003091
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003092 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3093 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003094 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3095 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003096 atomic_read(&dev_priv->mm.wedged), 3000)) {
3097 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003098 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003099 }
3100
3101 if (ret == 0)
3102 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003103
Eric Anholt673a3942008-07-30 12:06:12 -07003104 return ret;
3105}
3106
Eric Anholt673a3942008-07-30 12:06:12 -07003107int
Chris Wilson05394f32010-11-08 19:18:58 +00003108i915_gem_object_pin(struct drm_i915_gem_object *obj,
3109 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003110 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003111{
Chris Wilson05394f32010-11-08 19:18:58 +00003112 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003113 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003114 int ret;
3115
Chris Wilson05394f32010-11-08 19:18:58 +00003116 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003117 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003118
Chris Wilson05394f32010-11-08 19:18:58 +00003119 if (obj->gtt_space != NULL) {
3120 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3121 (map_and_fenceable && !obj->map_and_fenceable)) {
3122 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003123 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003124 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3125 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003126 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003127 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003128 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003129 ret = i915_gem_object_unbind(obj);
3130 if (ret)
3131 return ret;
3132 }
3133 }
3134
Chris Wilson05394f32010-11-08 19:18:58 +00003135 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003136 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003137 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003138 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003139 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003140 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003141
Daniel Vetter74898d72012-02-15 23:50:22 +01003142 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3143 i915_gem_gtt_bind_object(obj, obj->cache_level);
3144
Chris Wilson05394f32010-11-08 19:18:58 +00003145 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003146 if (!obj->active)
3147 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003148 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003149 }
Chris Wilson6299f992010-11-24 12:23:44 +00003150 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003151
Chris Wilson23bc5982010-09-29 16:10:57 +01003152 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003153 return 0;
3154}
3155
3156void
Chris Wilson05394f32010-11-08 19:18:58 +00003157i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003158{
Chris Wilson05394f32010-11-08 19:18:58 +00003159 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003160 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003161
Chris Wilson23bc5982010-09-29 16:10:57 +01003162 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003163 BUG_ON(obj->pin_count == 0);
3164 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003165
Chris Wilson05394f32010-11-08 19:18:58 +00003166 if (--obj->pin_count == 0) {
3167 if (!obj->active)
3168 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003169 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003170 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003171 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003172 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003173}
3174
3175int
3176i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003177 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003178{
3179 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003180 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003181 int ret;
3182
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003183 ret = i915_mutex_lock_interruptible(dev);
3184 if (ret)
3185 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003186
Chris Wilson05394f32010-11-08 19:18:58 +00003187 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003188 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003189 ret = -ENOENT;
3190 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003191 }
Eric Anholt673a3942008-07-30 12:06:12 -07003192
Chris Wilson05394f32010-11-08 19:18:58 +00003193 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003194 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003195 ret = -EINVAL;
3196 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003197 }
3198
Chris Wilson05394f32010-11-08 19:18:58 +00003199 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003200 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3201 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003202 ret = -EINVAL;
3203 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003204 }
3205
Chris Wilson05394f32010-11-08 19:18:58 +00003206 obj->user_pin_count++;
3207 obj->pin_filp = file;
3208 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003209 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003210 if (ret)
3211 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003212 }
3213
3214 /* XXX - flush the CPU caches for pinned objects
3215 * as the X server doesn't manage domains yet
3216 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003217 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003218 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003219out:
Chris Wilson05394f32010-11-08 19:18:58 +00003220 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003221unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003222 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003223 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003224}
3225
3226int
3227i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003228 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003229{
3230 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003231 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003232 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003233
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003234 ret = i915_mutex_lock_interruptible(dev);
3235 if (ret)
3236 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003237
Chris Wilson05394f32010-11-08 19:18:58 +00003238 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003239 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003240 ret = -ENOENT;
3241 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003242 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003243
Chris Wilson05394f32010-11-08 19:18:58 +00003244 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003245 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3246 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003247 ret = -EINVAL;
3248 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003249 }
Chris Wilson05394f32010-11-08 19:18:58 +00003250 obj->user_pin_count--;
3251 if (obj->user_pin_count == 0) {
3252 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003253 i915_gem_object_unpin(obj);
3254 }
Eric Anholt673a3942008-07-30 12:06:12 -07003255
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003256out:
Chris Wilson05394f32010-11-08 19:18:58 +00003257 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003258unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003259 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003260 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003261}
3262
3263int
3264i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003265 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003266{
3267 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003268 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003269 int ret;
3270
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003271 ret = i915_mutex_lock_interruptible(dev);
3272 if (ret)
3273 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003274
Chris Wilson05394f32010-11-08 19:18:58 +00003275 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003276 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003277 ret = -ENOENT;
3278 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003279 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003280
Chris Wilson0be555b2010-08-04 15:36:30 +01003281 /* Count all active objects as busy, even if they are currently not used
3282 * by the gpu. Users of this interface expect objects to eventually
3283 * become non-busy without any further actions, therefore emit any
3284 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003285 */
Chris Wilson05394f32010-11-08 19:18:58 +00003286 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003287 if (args->busy) {
3288 /* Unconditionally flush objects, even when the gpu still uses this
3289 * object. Userspace calling this function indicates that it wants to
3290 * use this buffer rather sooner than later, so issuing the required
3291 * flush earlier is beneficial.
3292 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003293 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003294 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003295 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003296 } else if (obj->ring->outstanding_lazy_request ==
3297 obj->last_rendering_seqno) {
3298 struct drm_i915_gem_request *request;
3299
Chris Wilson7a194872010-12-07 10:38:40 +00003300 /* This ring is not being cleared by active usage,
3301 * so emit a request to do so.
3302 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003303 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003304 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003305 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003306 if (ret)
3307 kfree(request);
3308 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003309 ret = -ENOMEM;
3310 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003311
3312 /* Update the active list for the hardware's current position.
3313 * Otherwise this only updates on a delayed timer or when irqs
3314 * are actually unmasked, and our working set ends up being
3315 * larger than required.
3316 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003317 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003318
Chris Wilson05394f32010-11-08 19:18:58 +00003319 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003320 }
Eric Anholt673a3942008-07-30 12:06:12 -07003321
Chris Wilson05394f32010-11-08 19:18:58 +00003322 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003323unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003324 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003325 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003326}
3327
3328int
3329i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3330 struct drm_file *file_priv)
3331{
Akshay Joshi0206e352011-08-16 15:34:10 -04003332 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003333}
3334
Chris Wilson3ef94da2009-09-14 16:50:29 +01003335int
3336i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3337 struct drm_file *file_priv)
3338{
3339 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003340 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003341 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003342
3343 switch (args->madv) {
3344 case I915_MADV_DONTNEED:
3345 case I915_MADV_WILLNEED:
3346 break;
3347 default:
3348 return -EINVAL;
3349 }
3350
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003351 ret = i915_mutex_lock_interruptible(dev);
3352 if (ret)
3353 return ret;
3354
Chris Wilson05394f32010-11-08 19:18:58 +00003355 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003356 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003357 ret = -ENOENT;
3358 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003359 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003360
Chris Wilson05394f32010-11-08 19:18:58 +00003361 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003362 ret = -EINVAL;
3363 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003364 }
3365
Chris Wilson05394f32010-11-08 19:18:58 +00003366 if (obj->madv != __I915_MADV_PURGED)
3367 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003368
Chris Wilson2d7ef392009-09-20 23:13:10 +01003369 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003370 if (i915_gem_object_is_purgeable(obj) &&
3371 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003372 i915_gem_object_truncate(obj);
3373
Chris Wilson05394f32010-11-08 19:18:58 +00003374 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003375
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003376out:
Chris Wilson05394f32010-11-08 19:18:58 +00003377 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003378unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003379 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003380 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003381}
3382
Chris Wilson05394f32010-11-08 19:18:58 +00003383struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3384 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003385{
Chris Wilson73aa8082010-09-30 11:46:12 +01003386 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003387 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003388 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003389
3390 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3391 if (obj == NULL)
3392 return NULL;
3393
3394 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3395 kfree(obj);
3396 return NULL;
3397 }
3398
Hugh Dickins5949eac2011-06-27 16:18:18 -07003399 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3400 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3401
Chris Wilson73aa8082010-09-30 11:46:12 +01003402 i915_gem_info_add_obj(dev_priv, size);
3403
Daniel Vetterc397b902010-04-09 19:05:07 +00003404 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3405 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3406
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003407 if (HAS_LLC(dev)) {
3408 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003409 * cache) for about a 10% performance improvement
3410 * compared to uncached. Graphics requests other than
3411 * display scanout are coherent with the CPU in
3412 * accessing this cache. This means in this mode we
3413 * don't need to clflush on the CPU side, and on the
3414 * GPU side we only need to flush internal caches to
3415 * get data visible to the CPU.
3416 *
3417 * However, we maintain the display planes as UC, and so
3418 * need to rebind when first used as such.
3419 */
3420 obj->cache_level = I915_CACHE_LLC;
3421 } else
3422 obj->cache_level = I915_CACHE_NONE;
3423
Daniel Vetter62b8b212010-04-09 19:05:08 +00003424 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003425 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003426 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003427 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003428 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003429 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003430 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003431 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003432 /* Avoid an unnecessary call to unbind on the first bind. */
3433 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003434
Chris Wilson05394f32010-11-08 19:18:58 +00003435 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003436}
3437
Eric Anholt673a3942008-07-30 12:06:12 -07003438int i915_gem_init_object(struct drm_gem_object *obj)
3439{
Daniel Vetterc397b902010-04-09 19:05:07 +00003440 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003441
Eric Anholt673a3942008-07-30 12:06:12 -07003442 return 0;
3443}
3444
Chris Wilson05394f32010-11-08 19:18:58 +00003445static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003446{
Chris Wilson05394f32010-11-08 19:18:58 +00003447 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003448 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003449 int ret;
3450
3451 ret = i915_gem_object_unbind(obj);
3452 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003453 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003454 &dev_priv->mm.deferred_free_list);
3455 return;
3456 }
3457
Chris Wilson26e12f892011-03-20 11:20:19 +00003458 trace_i915_gem_object_destroy(obj);
3459
Chris Wilson05394f32010-11-08 19:18:58 +00003460 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003461 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003462
Chris Wilson05394f32010-11-08 19:18:58 +00003463 drm_gem_object_release(&obj->base);
3464 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003465
Chris Wilson05394f32010-11-08 19:18:58 +00003466 kfree(obj->bit_17);
3467 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003468}
3469
Chris Wilson05394f32010-11-08 19:18:58 +00003470void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003471{
Chris Wilson05394f32010-11-08 19:18:58 +00003472 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3473 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003474
Chris Wilson05394f32010-11-08 19:18:58 +00003475 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003476 i915_gem_object_unpin(obj);
3477
Chris Wilson05394f32010-11-08 19:18:58 +00003478 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003479 i915_gem_detach_phys_object(dev, obj);
3480
Chris Wilsonbe726152010-07-23 23:18:50 +01003481 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003482}
3483
Jesse Barnes5669fca2009-02-17 15:13:31 -08003484int
Eric Anholt673a3942008-07-30 12:06:12 -07003485i915_gem_idle(struct drm_device *dev)
3486{
3487 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003488 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003489
Keith Packard6dbe2772008-10-14 21:41:13 -07003490 mutex_lock(&dev->struct_mutex);
3491
Chris Wilson87acb0a2010-10-19 10:13:00 +01003492 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003493 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003494 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003495 }
Eric Anholt673a3942008-07-30 12:06:12 -07003496
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003497 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003498 if (ret) {
3499 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003500 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003501 }
Eric Anholt673a3942008-07-30 12:06:12 -07003502
Chris Wilson29105cc2010-01-07 10:39:13 +00003503 /* Under UMS, be paranoid and evict. */
3504 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003505 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003506 if (ret) {
3507 mutex_unlock(&dev->struct_mutex);
3508 return ret;
3509 }
3510 }
3511
Chris Wilson312817a2010-11-22 11:50:11 +00003512 i915_gem_reset_fences(dev);
3513
Chris Wilson29105cc2010-01-07 10:39:13 +00003514 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3515 * We need to replace this with a semaphore, or something.
3516 * And not confound mm.suspended!
3517 */
3518 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003519 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003520
3521 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003522 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003523
Keith Packard6dbe2772008-10-14 21:41:13 -07003524 mutex_unlock(&dev->struct_mutex);
3525
Chris Wilson29105cc2010-01-07 10:39:13 +00003526 /* Cancel the retire work handler, which should be idle now. */
3527 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3528
Eric Anholt673a3942008-07-30 12:06:12 -07003529 return 0;
3530}
3531
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003532void i915_gem_init_swizzling(struct drm_device *dev)
3533{
3534 drm_i915_private_t *dev_priv = dev->dev_private;
3535
Daniel Vetter11782b02012-01-31 16:47:55 +01003536 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003537 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3538 return;
3539
3540 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3541 DISP_TILE_SURFACE_SWIZZLING);
3542
Daniel Vetter11782b02012-01-31 16:47:55 +01003543 if (IS_GEN5(dev))
3544 return;
3545
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003546 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3547 if (IS_GEN6(dev))
3548 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3549 else
3550 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3551}
Daniel Vettere21af882012-02-09 20:53:27 +01003552
3553void i915_gem_init_ppgtt(struct drm_device *dev)
3554{
3555 drm_i915_private_t *dev_priv = dev->dev_private;
3556 uint32_t pd_offset;
3557 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003558 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3559 uint32_t __iomem *pd_addr;
3560 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003561 int i;
3562
3563 if (!dev_priv->mm.aliasing_ppgtt)
3564 return;
3565
Daniel Vetter55a254a2012-03-22 00:14:43 +01003566
3567 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3568 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3569 dma_addr_t pt_addr;
3570
3571 if (dev_priv->mm.gtt->needs_dmar)
3572 pt_addr = ppgtt->pt_dma_addr[i];
3573 else
3574 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3575
3576 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3577 pd_entry |= GEN6_PDE_VALID;
3578
3579 writel(pd_entry, pd_addr + i);
3580 }
3581 readl(pd_addr);
3582
3583 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003584 pd_offset /= 64; /* in cachelines, */
3585 pd_offset <<= 16;
3586
3587 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003588 uint32_t ecochk, gab_ctl, ecobits;
3589
3590 ecobits = I915_READ(GAC_ECO_BITS);
3591 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003592
3593 gab_ctl = I915_READ(GAB_CTL);
3594 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3595
3596 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003597 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3598 ECOCHK_PPGTT_CACHE64B);
3599 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3600 } else if (INTEL_INFO(dev)->gen >= 7) {
3601 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3602 /* GFX_MODE is per-ring on gen7+ */
3603 }
3604
3605 for (i = 0; i < I915_NUM_RINGS; i++) {
3606 ring = &dev_priv->ring[i];
3607
3608 if (INTEL_INFO(dev)->gen >= 7)
3609 I915_WRITE(RING_MODE_GEN7(ring),
3610 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3611
3612 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3613 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3614 }
3615}
3616
Eric Anholt673a3942008-07-30 12:06:12 -07003617int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003618i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003619{
3620 drm_i915_private_t *dev_priv = dev->dev_private;
3621 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003622
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003623 i915_gem_init_swizzling(dev);
3624
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003625 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003626 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003627 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003628
3629 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003630 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003631 if (ret)
3632 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003633 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003634
Chris Wilson549f7362010-10-19 11:19:32 +01003635 if (HAS_BLT(dev)) {
3636 ret = intel_init_blt_ring_buffer(dev);
3637 if (ret)
3638 goto cleanup_bsd_ring;
3639 }
3640
Chris Wilson6f392d5482010-08-07 11:01:22 +01003641 dev_priv->next_seqno = 1;
3642
Daniel Vettere21af882012-02-09 20:53:27 +01003643 i915_gem_init_ppgtt(dev);
3644
Chris Wilson68f95ba2010-05-27 13:18:22 +01003645 return 0;
3646
Chris Wilson549f7362010-10-19 11:19:32 +01003647cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003648 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003649cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003650 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003651 return ret;
3652}
3653
3654void
3655i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3656{
3657 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003658 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003659
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003660 for (i = 0; i < I915_NUM_RINGS; i++)
3661 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003662}
3663
3664int
Eric Anholt673a3942008-07-30 12:06:12 -07003665i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3666 struct drm_file *file_priv)
3667{
3668 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003669 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003670
Jesse Barnes79e53942008-11-07 14:24:08 -08003671 if (drm_core_check_feature(dev, DRIVER_MODESET))
3672 return 0;
3673
Ben Gamariba1234d2009-09-14 17:48:47 -04003674 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003675 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003676 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003677 }
3678
Eric Anholt673a3942008-07-30 12:06:12 -07003679 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003680 dev_priv->mm.suspended = 0;
3681
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003682 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003683 if (ret != 0) {
3684 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003685 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003686 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003687
Chris Wilson69dc4982010-10-19 10:36:51 +01003688 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003689 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3690 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003691 for (i = 0; i < I915_NUM_RINGS; i++) {
3692 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3693 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3694 }
Eric Anholt673a3942008-07-30 12:06:12 -07003695 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003696
Chris Wilson5f353082010-06-07 14:03:03 +01003697 ret = drm_irq_install(dev);
3698 if (ret)
3699 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003700
Eric Anholt673a3942008-07-30 12:06:12 -07003701 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003702
3703cleanup_ringbuffer:
3704 mutex_lock(&dev->struct_mutex);
3705 i915_gem_cleanup_ringbuffer(dev);
3706 dev_priv->mm.suspended = 1;
3707 mutex_unlock(&dev->struct_mutex);
3708
3709 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003710}
3711
3712int
3713i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3714 struct drm_file *file_priv)
3715{
Jesse Barnes79e53942008-11-07 14:24:08 -08003716 if (drm_core_check_feature(dev, DRIVER_MODESET))
3717 return 0;
3718
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003719 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003720 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003721}
3722
3723void
3724i915_gem_lastclose(struct drm_device *dev)
3725{
3726 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003727
Eric Anholte806b492009-01-22 09:56:58 -08003728 if (drm_core_check_feature(dev, DRIVER_MODESET))
3729 return;
3730
Keith Packard6dbe2772008-10-14 21:41:13 -07003731 ret = i915_gem_idle(dev);
3732 if (ret)
3733 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003734}
3735
Chris Wilson64193402010-10-24 12:38:05 +01003736static void
3737init_ring_lists(struct intel_ring_buffer *ring)
3738{
3739 INIT_LIST_HEAD(&ring->active_list);
3740 INIT_LIST_HEAD(&ring->request_list);
3741 INIT_LIST_HEAD(&ring->gpu_write_list);
3742}
3743
Eric Anholt673a3942008-07-30 12:06:12 -07003744void
3745i915_gem_load(struct drm_device *dev)
3746{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003747 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003748 drm_i915_private_t *dev_priv = dev->dev_private;
3749
Chris Wilson69dc4982010-10-19 10:36:51 +01003750 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003751 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3752 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003753 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003754 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003755 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003756 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003757 for (i = 0; i < I915_NUM_RINGS; i++)
3758 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003759 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003760 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003761 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3762 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003763 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003764
Dave Airlie94400122010-07-20 13:15:31 +10003765 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3766 if (IS_GEN3(dev)) {
3767 u32 tmp = I915_READ(MI_ARB_STATE);
3768 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3769 /* arb state is a masked write, so set bit + bit in mask */
3770 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3771 I915_WRITE(MI_ARB_STATE, tmp);
3772 }
3773 }
3774
Chris Wilson72bfa192010-12-19 11:42:05 +00003775 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3776
Jesse Barnesde151cf2008-11-12 10:03:55 -08003777 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003778 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3779 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003780
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003781 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003782 dev_priv->num_fence_regs = 16;
3783 else
3784 dev_priv->num_fence_regs = 8;
3785
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003786 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003787 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3788 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003789 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003790
Eric Anholt673a3942008-07-30 12:06:12 -07003791 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003792 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003793
Chris Wilsonce453d82011-02-21 14:43:56 +00003794 dev_priv->mm.interruptible = true;
3795
Chris Wilson17250b72010-10-28 12:51:39 +01003796 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3797 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3798 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003799}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003800
3801/*
3802 * Create a physically contiguous memory object for this object
3803 * e.g. for cursor + overlay regs
3804 */
Chris Wilson995b6762010-08-20 13:23:26 +01003805static int i915_gem_init_phys_object(struct drm_device *dev,
3806 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003807{
3808 drm_i915_private_t *dev_priv = dev->dev_private;
3809 struct drm_i915_gem_phys_object *phys_obj;
3810 int ret;
3811
3812 if (dev_priv->mm.phys_objs[id - 1] || !size)
3813 return 0;
3814
Eric Anholt9a298b22009-03-24 12:23:04 -07003815 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003816 if (!phys_obj)
3817 return -ENOMEM;
3818
3819 phys_obj->id = id;
3820
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003821 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003822 if (!phys_obj->handle) {
3823 ret = -ENOMEM;
3824 goto kfree_obj;
3825 }
3826#ifdef CONFIG_X86
3827 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3828#endif
3829
3830 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3831
3832 return 0;
3833kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003834 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003835 return ret;
3836}
3837
Chris Wilson995b6762010-08-20 13:23:26 +01003838static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003839{
3840 drm_i915_private_t *dev_priv = dev->dev_private;
3841 struct drm_i915_gem_phys_object *phys_obj;
3842
3843 if (!dev_priv->mm.phys_objs[id - 1])
3844 return;
3845
3846 phys_obj = dev_priv->mm.phys_objs[id - 1];
3847 if (phys_obj->cur_obj) {
3848 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3849 }
3850
3851#ifdef CONFIG_X86
3852 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3853#endif
3854 drm_pci_free(dev, phys_obj->handle);
3855 kfree(phys_obj);
3856 dev_priv->mm.phys_objs[id - 1] = NULL;
3857}
3858
3859void i915_gem_free_all_phys_object(struct drm_device *dev)
3860{
3861 int i;
3862
Dave Airlie260883c2009-01-22 17:58:49 +10003863 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003864 i915_gem_free_phys_object(dev, i);
3865}
3866
3867void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003868 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003869{
Chris Wilson05394f32010-11-08 19:18:58 +00003870 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003871 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003872 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003873 int page_count;
3874
Chris Wilson05394f32010-11-08 19:18:58 +00003875 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003876 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003877 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003878
Chris Wilson05394f32010-11-08 19:18:58 +00003879 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003880 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003881 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003882 if (!IS_ERR(page)) {
3883 char *dst = kmap_atomic(page);
3884 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3885 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003886
Chris Wilsone5281cc2010-10-28 13:45:36 +01003887 drm_clflush_pages(&page, 1);
3888
3889 set_page_dirty(page);
3890 mark_page_accessed(page);
3891 page_cache_release(page);
3892 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003893 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003894 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003895
Chris Wilson05394f32010-11-08 19:18:58 +00003896 obj->phys_obj->cur_obj = NULL;
3897 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003898}
3899
3900int
3901i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003902 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003903 int id,
3904 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003905{
Chris Wilson05394f32010-11-08 19:18:58 +00003906 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003907 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003908 int ret = 0;
3909 int page_count;
3910 int i;
3911
3912 if (id > I915_MAX_PHYS_OBJECT)
3913 return -EINVAL;
3914
Chris Wilson05394f32010-11-08 19:18:58 +00003915 if (obj->phys_obj) {
3916 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003917 return 0;
3918 i915_gem_detach_phys_object(dev, obj);
3919 }
3920
Dave Airlie71acb5e2008-12-30 20:31:46 +10003921 /* create a new object */
3922 if (!dev_priv->mm.phys_objs[id - 1]) {
3923 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003924 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003925 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003926 DRM_ERROR("failed to init phys object %d size: %zu\n",
3927 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003928 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003929 }
3930 }
3931
3932 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003933 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3934 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003935
Chris Wilson05394f32010-11-08 19:18:58 +00003936 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003937
3938 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003939 struct page *page;
3940 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003941
Hugh Dickins5949eac2011-06-27 16:18:18 -07003942 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003943 if (IS_ERR(page))
3944 return PTR_ERR(page);
3945
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003946 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003947 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003948 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003949 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003950
3951 mark_page_accessed(page);
3952 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003953 }
3954
3955 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003956}
3957
3958static int
Chris Wilson05394f32010-11-08 19:18:58 +00003959i915_gem_phys_pwrite(struct drm_device *dev,
3960 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003961 struct drm_i915_gem_pwrite *args,
3962 struct drm_file *file_priv)
3963{
Chris Wilson05394f32010-11-08 19:18:58 +00003964 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003965 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003966
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003967 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3968 unsigned long unwritten;
3969
3970 /* The physical object once assigned is fixed for the lifetime
3971 * of the obj, so we can safely drop the lock and continue
3972 * to access vaddr.
3973 */
3974 mutex_unlock(&dev->struct_mutex);
3975 unwritten = copy_from_user(vaddr, user_data, args->size);
3976 mutex_lock(&dev->struct_mutex);
3977 if (unwritten)
3978 return -EFAULT;
3979 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003980
Daniel Vetter40ce6572010-11-05 18:12:18 +01003981 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003982 return 0;
3983}
Eric Anholtb9624422009-06-03 07:27:35 +00003984
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003985void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003986{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003987 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003988
3989 /* Clean up our request list when the client is going away, so that
3990 * later retire_requests won't dereference our soon-to-be-gone
3991 * file_priv.
3992 */
Chris Wilson1c255952010-09-26 11:03:27 +01003993 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003994 while (!list_empty(&file_priv->mm.request_list)) {
3995 struct drm_i915_gem_request *request;
3996
3997 request = list_first_entry(&file_priv->mm.request_list,
3998 struct drm_i915_gem_request,
3999 client_list);
4000 list_del(&request->client_list);
4001 request->file_priv = NULL;
4002 }
Chris Wilson1c255952010-09-26 11:03:27 +01004003 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004004}
Chris Wilson31169712009-09-14 16:50:28 +01004005
Chris Wilson31169712009-09-14 16:50:28 +01004006static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004007i915_gpu_is_active(struct drm_device *dev)
4008{
4009 drm_i915_private_t *dev_priv = dev->dev_private;
4010 int lists_empty;
4011
Chris Wilson1637ef42010-04-20 17:10:35 +01004012 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004013 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004014
4015 return !lists_empty;
4016}
4017
4018static int
Ying Han1495f232011-05-24 17:12:27 -07004019i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004020{
Chris Wilson17250b72010-10-28 12:51:39 +01004021 struct drm_i915_private *dev_priv =
4022 container_of(shrinker,
4023 struct drm_i915_private,
4024 mm.inactive_shrinker);
4025 struct drm_device *dev = dev_priv->dev;
4026 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004027 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004028 int cnt;
4029
4030 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004031 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004032
4033 /* "fast-path" to count number of available objects */
4034 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004035 cnt = 0;
4036 list_for_each_entry(obj,
4037 &dev_priv->mm.inactive_list,
4038 mm_list)
4039 cnt++;
4040 mutex_unlock(&dev->struct_mutex);
4041 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004042 }
4043
Chris Wilson1637ef42010-04-20 17:10:35 +01004044rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004045 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004046 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004047
Chris Wilson17250b72010-10-28 12:51:39 +01004048 list_for_each_entry_safe(obj, next,
4049 &dev_priv->mm.inactive_list,
4050 mm_list) {
4051 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004052 if (i915_gem_object_unbind(obj) == 0 &&
4053 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004054 break;
Chris Wilson31169712009-09-14 16:50:28 +01004055 }
Chris Wilson31169712009-09-14 16:50:28 +01004056 }
4057
4058 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004059 cnt = 0;
4060 list_for_each_entry_safe(obj, next,
4061 &dev_priv->mm.inactive_list,
4062 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004063 if (nr_to_scan &&
4064 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004065 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004066 else
Chris Wilson17250b72010-10-28 12:51:39 +01004067 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004068 }
4069
Chris Wilson17250b72010-10-28 12:51:39 +01004070 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004071 /*
4072 * We are desperate for pages, so as a last resort, wait
4073 * for the GPU to finish and discard whatever we can.
4074 * This has a dramatic impact to reduce the number of
4075 * OOM-killer events whilst running the GPU aggressively.
4076 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004077 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004078 goto rescan;
4079 }
Chris Wilson17250b72010-10-28 12:51:39 +01004080 mutex_unlock(&dev->struct_mutex);
4081 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004082}