blob: 0115b12df573e054b4821c0de26af4bb9d77413a [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 Vetterffc62972012-03-25 19:47:38 +0200879 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100880 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100881 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200882 /* Note that the gtt paths might fail with non-page-backed user
883 * pointers (e.g. gtt mappings when moving data between
884 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700885 }
Eric Anholt673a3942008-07-30 12:06:12 -0700886
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100887 if (ret == -EFAULT)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200888 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100889
Chris Wilson35b62a82010-09-26 20:23:38 +0100890out:
Chris Wilson05394f32010-11-08 19:18:58 +0000891 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100892unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100893 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700894 return ret;
895}
896
897/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800898 * Called when user space prepares to use an object with the CPU, either
899 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700900 */
901int
902i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000903 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700904{
905 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000906 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800907 uint32_t read_domains = args->read_domains;
908 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700909 int ret;
910
911 if (!(dev->driver->driver_features & DRIVER_GEM))
912 return -ENODEV;
913
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800914 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100915 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800916 return -EINVAL;
917
Chris Wilson21d509e2009-06-06 09:46:02 +0100918 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800919 return -EINVAL;
920
921 /* Having something in the write domain implies it's in the read
922 * domain, and only that read domain. Enforce that in the request.
923 */
924 if (write_domain != 0 && read_domains != write_domain)
925 return -EINVAL;
926
Chris Wilson76c1dec2010-09-25 11:22:51 +0100927 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100928 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100929 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700930
Chris Wilson05394f32010-11-08 19:18:58 +0000931 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000932 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100933 ret = -ENOENT;
934 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100935 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700936
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800937 if (read_domains & I915_GEM_DOMAIN_GTT) {
938 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800939
940 /* Silently promote "you're not bound, there was nothing to do"
941 * to success, since the client was just asking us to
942 * make sure everything was done.
943 */
944 if (ret == -EINVAL)
945 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800946 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800947 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800948 }
949
Chris Wilson05394f32010-11-08 19:18:58 +0000950 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100951unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700952 mutex_unlock(&dev->struct_mutex);
953 return ret;
954}
955
956/**
957 * Called when user space has done writes to this buffer
958 */
959int
960i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000961 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700962{
963 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000964 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700965 int ret = 0;
966
967 if (!(dev->driver->driver_features & DRIVER_GEM))
968 return -ENODEV;
969
Chris Wilson76c1dec2010-09-25 11:22:51 +0100970 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100971 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100972 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100973
Chris Wilson05394f32010-11-08 19:18:58 +0000974 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000975 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100976 ret = -ENOENT;
977 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700978 }
979
Eric Anholt673a3942008-07-30 12:06:12 -0700980 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +0000981 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -0800982 i915_gem_object_flush_cpu_write_domain(obj);
983
Chris Wilson05394f32010-11-08 19:18:58 +0000984 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100985unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700986 mutex_unlock(&dev->struct_mutex);
987 return ret;
988}
989
990/**
991 * Maps the contents of an object, returning the address it is mapped
992 * into.
993 *
994 * While the mapping holds a reference on the contents of the object, it doesn't
995 * imply a ref on the object itself.
996 */
997int
998i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000999 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001000{
1001 struct drm_i915_gem_mmap *args = data;
1002 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001003 unsigned long addr;
1004
1005 if (!(dev->driver->driver_features & DRIVER_GEM))
1006 return -ENODEV;
1007
Chris Wilson05394f32010-11-08 19:18:58 +00001008 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001009 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001010 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001011
Eric Anholt673a3942008-07-30 12:06:12 -07001012 down_write(&current->mm->mmap_sem);
1013 addr = do_mmap(obj->filp, 0, args->size,
1014 PROT_READ | PROT_WRITE, MAP_SHARED,
1015 args->offset);
1016 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001017 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001018 if (IS_ERR((void *)addr))
1019 return addr;
1020
1021 args->addr_ptr = (uint64_t) addr;
1022
1023 return 0;
1024}
1025
Jesse Barnesde151cf2008-11-12 10:03:55 -08001026/**
1027 * i915_gem_fault - fault a page into the GTT
1028 * vma: VMA in question
1029 * vmf: fault info
1030 *
1031 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1032 * from userspace. The fault handler takes care of binding the object to
1033 * the GTT (if needed), allocating and programming a fence register (again,
1034 * only if needed based on whether the old reg is still valid or the object
1035 * is tiled) and inserting a new PTE into the faulting process.
1036 *
1037 * Note that the faulting process may involve evicting existing objects
1038 * from the GTT and/or fence registers to make room. So performance may
1039 * suffer if the GTT working set is large or there are few fence registers
1040 * left.
1041 */
1042int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1043{
Chris Wilson05394f32010-11-08 19:18:58 +00001044 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1045 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001046 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001047 pgoff_t page_offset;
1048 unsigned long pfn;
1049 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001050 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001051
1052 /* We don't use vmf->pgoff since that has the fake offset */
1053 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1054 PAGE_SHIFT;
1055
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001056 ret = i915_mutex_lock_interruptible(dev);
1057 if (ret)
1058 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001059
Chris Wilsondb53a302011-02-03 11:57:46 +00001060 trace_i915_gem_object_fault(obj, page_offset, true, write);
1061
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001062 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001063 if (!obj->map_and_fenceable) {
1064 ret = i915_gem_object_unbind(obj);
1065 if (ret)
1066 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001067 }
Chris Wilson05394f32010-11-08 19:18:58 +00001068 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001069 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001070 if (ret)
1071 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001072
Eric Anholte92d03b2011-06-14 16:43:09 -07001073 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1074 if (ret)
1075 goto unlock;
1076 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001077
Daniel Vetter74898d72012-02-15 23:50:22 +01001078 if (!obj->has_global_gtt_mapping)
1079 i915_gem_gtt_bind_object(obj, obj->cache_level);
1080
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001081 ret = i915_gem_object_get_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001082 if (ret)
1083 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001084
Chris Wilson05394f32010-11-08 19:18:58 +00001085 if (i915_gem_object_is_inactive(obj))
1086 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001087
Chris Wilson6299f992010-11-24 12:23:44 +00001088 obj->fault_mappable = true;
1089
Chris Wilson05394f32010-11-08 19:18:58 +00001090 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001091 page_offset;
1092
1093 /* Finally, remap it using the new GTT offset */
1094 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001095unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001096 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001097out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001098 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001099 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001100 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001101 /* Give the error handler a chance to run and move the
1102 * objects off the GPU active list. Next time we service the
1103 * fault, we should be able to transition the page into the
1104 * GTT without touching the GPU (and so avoid further
1105 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1106 * with coherency, just lost writes.
1107 */
Chris Wilson045e7692010-11-07 09:18:22 +00001108 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001109 case 0:
1110 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001111 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001112 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001113 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001114 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001115 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001116 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001117 }
1118}
1119
1120/**
Chris Wilson901782b2009-07-10 08:18:50 +01001121 * i915_gem_release_mmap - remove physical page mappings
1122 * @obj: obj in question
1123 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001124 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001125 * relinquish ownership of the pages back to the system.
1126 *
1127 * It is vital that we remove the page mapping if we have mapped a tiled
1128 * object through the GTT and then lose the fence register due to
1129 * resource pressure. Similarly if the object has been moved out of the
1130 * aperture, than pages mapped into userspace must be revoked. Removing the
1131 * mapping will then trigger a page fault on the next user access, allowing
1132 * fixup by i915_gem_fault().
1133 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001134void
Chris Wilson05394f32010-11-08 19:18:58 +00001135i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001136{
Chris Wilson6299f992010-11-24 12:23:44 +00001137 if (!obj->fault_mappable)
1138 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001139
Chris Wilsonf6e47882011-03-20 21:09:12 +00001140 if (obj->base.dev->dev_mapping)
1141 unmap_mapping_range(obj->base.dev->dev_mapping,
1142 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1143 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001144
Chris Wilson6299f992010-11-24 12:23:44 +00001145 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001146}
1147
Chris Wilson92b88ae2010-11-09 11:47:32 +00001148static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001149i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001150{
Chris Wilsone28f8712011-07-18 13:11:49 -07001151 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001152
1153 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001154 tiling_mode == I915_TILING_NONE)
1155 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001156
1157 /* Previous chips need a power-of-two fence region when tiling */
1158 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001159 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001160 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001161 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001162
Chris Wilsone28f8712011-07-18 13:11:49 -07001163 while (gtt_size < size)
1164 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001165
Chris Wilsone28f8712011-07-18 13:11:49 -07001166 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001167}
1168
Jesse Barnesde151cf2008-11-12 10:03:55 -08001169/**
1170 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1171 * @obj: object to check
1172 *
1173 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001174 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001175 */
1176static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001177i915_gem_get_gtt_alignment(struct drm_device *dev,
1178 uint32_t size,
1179 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001180{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001181 /*
1182 * Minimum alignment is 4k (GTT page size), but might be greater
1183 * if a fence register is needed for the object.
1184 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001185 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001186 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001187 return 4096;
1188
1189 /*
1190 * Previous chips need to be aligned to the size of the smallest
1191 * fence register that can contain the object.
1192 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001193 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001194}
1195
Daniel Vetter5e783302010-11-14 22:32:36 +01001196/**
1197 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1198 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001199 * @dev: the device
1200 * @size: size of the object
1201 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001202 *
1203 * Return the required GTT alignment for an object, only taking into account
1204 * unfenced tiled surface requirements.
1205 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001206uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001207i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1208 uint32_t size,
1209 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001210{
Daniel Vetter5e783302010-11-14 22:32:36 +01001211 /*
1212 * Minimum alignment is 4k (GTT page size) for sane hw.
1213 */
1214 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001215 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001216 return 4096;
1217
Chris Wilsone28f8712011-07-18 13:11:49 -07001218 /* Previous hardware however needs to be aligned to a power-of-two
1219 * tile height. The simplest method for determining this is to reuse
1220 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001221 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001222 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001223}
1224
Jesse Barnesde151cf2008-11-12 10:03:55 -08001225int
Dave Airlieff72145b2011-02-07 12:16:14 +10001226i915_gem_mmap_gtt(struct drm_file *file,
1227 struct drm_device *dev,
1228 uint32_t handle,
1229 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001230{
Chris Wilsonda761a62010-10-27 17:37:08 +01001231 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001232 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001233 int ret;
1234
1235 if (!(dev->driver->driver_features & DRIVER_GEM))
1236 return -ENODEV;
1237
Chris Wilson76c1dec2010-09-25 11:22:51 +01001238 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001239 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001240 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001241
Dave Airlieff72145b2011-02-07 12:16:14 +10001242 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001243 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001244 ret = -ENOENT;
1245 goto unlock;
1246 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001247
Chris Wilson05394f32010-11-08 19:18:58 +00001248 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001249 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001250 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001251 }
1252
Chris Wilson05394f32010-11-08 19:18:58 +00001253 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001254 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001255 ret = -EINVAL;
1256 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001257 }
1258
Chris Wilson05394f32010-11-08 19:18:58 +00001259 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001260 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001261 if (ret)
1262 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001263 }
1264
Dave Airlieff72145b2011-02-07 12:16:14 +10001265 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001266
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001267out:
Chris Wilson05394f32010-11-08 19:18:58 +00001268 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001269unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001270 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001271 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001272}
1273
Dave Airlieff72145b2011-02-07 12:16:14 +10001274/**
1275 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1276 * @dev: DRM device
1277 * @data: GTT mapping ioctl data
1278 * @file: GEM object info
1279 *
1280 * Simply returns the fake offset to userspace so it can mmap it.
1281 * The mmap call will end up in drm_gem_mmap(), which will set things
1282 * up so we can get faults in the handler above.
1283 *
1284 * The fault handler will take care of binding the object into the GTT
1285 * (since it may have been evicted to make room for something), allocating
1286 * a fence register, and mapping the appropriate aperture address into
1287 * userspace.
1288 */
1289int
1290i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1291 struct drm_file *file)
1292{
1293 struct drm_i915_gem_mmap_gtt *args = data;
1294
1295 if (!(dev->driver->driver_features & DRIVER_GEM))
1296 return -ENODEV;
1297
1298 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1299}
1300
1301
Chris Wilsone5281cc2010-10-28 13:45:36 +01001302static int
Chris Wilson05394f32010-11-08 19:18:58 +00001303i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001304 gfp_t gfpmask)
1305{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001306 int page_count, i;
1307 struct address_space *mapping;
1308 struct inode *inode;
1309 struct page *page;
1310
1311 /* Get the list of pages out of our struct file. They'll be pinned
1312 * at this point until we release them.
1313 */
Chris Wilson05394f32010-11-08 19:18:58 +00001314 page_count = obj->base.size / PAGE_SIZE;
1315 BUG_ON(obj->pages != NULL);
1316 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1317 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001318 return -ENOMEM;
1319
Chris Wilson05394f32010-11-08 19:18:58 +00001320 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001321 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001322 gfpmask |= mapping_gfp_mask(mapping);
1323
Chris Wilsone5281cc2010-10-28 13:45:36 +01001324 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001325 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001326 if (IS_ERR(page))
1327 goto err_pages;
1328
Chris Wilson05394f32010-11-08 19:18:58 +00001329 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001330 }
1331
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001332 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001333 i915_gem_object_do_bit_17_swizzle(obj);
1334
1335 return 0;
1336
1337err_pages:
1338 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001339 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001340
Chris Wilson05394f32010-11-08 19:18:58 +00001341 drm_free_large(obj->pages);
1342 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001343 return PTR_ERR(page);
1344}
1345
Chris Wilson5cdf5882010-09-27 15:51:07 +01001346static void
Chris Wilson05394f32010-11-08 19:18:58 +00001347i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001348{
Chris Wilson05394f32010-11-08 19:18:58 +00001349 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001350 int i;
1351
Chris Wilson05394f32010-11-08 19:18:58 +00001352 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001353
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001354 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001355 i915_gem_object_save_bit_17_swizzle(obj);
1356
Chris Wilson05394f32010-11-08 19:18:58 +00001357 if (obj->madv == I915_MADV_DONTNEED)
1358 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001359
1360 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001361 if (obj->dirty)
1362 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001363
Chris Wilson05394f32010-11-08 19:18:58 +00001364 if (obj->madv == I915_MADV_WILLNEED)
1365 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001366
Chris Wilson05394f32010-11-08 19:18:58 +00001367 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001368 }
Chris Wilson05394f32010-11-08 19:18:58 +00001369 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001370
Chris Wilson05394f32010-11-08 19:18:58 +00001371 drm_free_large(obj->pages);
1372 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001373}
1374
Chris Wilson54cf91d2010-11-25 18:00:26 +00001375void
Chris Wilson05394f32010-11-08 19:18:58 +00001376i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001377 struct intel_ring_buffer *ring,
1378 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001379{
Chris Wilson05394f32010-11-08 19:18:58 +00001380 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001381 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001382
Zou Nan hai852835f2010-05-21 09:08:56 +08001383 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001384 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001385
1386 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001387 if (!obj->active) {
1388 drm_gem_object_reference(&obj->base);
1389 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001390 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001391
Eric Anholt673a3942008-07-30 12:06:12 -07001392 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001393 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1394 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001395
Chris Wilson05394f32010-11-08 19:18:58 +00001396 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001397
Chris Wilsoncaea7472010-11-12 13:53:37 +00001398 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001399 obj->last_fenced_seqno = seqno;
1400 obj->last_fenced_ring = ring;
1401
Chris Wilson7dd49062012-03-21 10:48:18 +00001402 /* Bump MRU to take account of the delayed flush */
1403 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1404 struct drm_i915_fence_reg *reg;
1405
1406 reg = &dev_priv->fence_regs[obj->fence_reg];
1407 list_move_tail(&reg->lru_list,
1408 &dev_priv->mm.fence_list);
1409 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001410 }
1411}
1412
1413static void
1414i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1415{
1416 list_del_init(&obj->ring_list);
1417 obj->last_rendering_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001418}
1419
Eric Anholtce44b0e2008-11-06 16:00:31 -08001420static void
Chris Wilson05394f32010-11-08 19:18:58 +00001421i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001422{
Chris Wilson05394f32010-11-08 19:18:58 +00001423 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001424 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001425
Chris Wilson05394f32010-11-08 19:18:58 +00001426 BUG_ON(!obj->active);
1427 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001428
1429 i915_gem_object_move_off_active(obj);
1430}
1431
1432static void
1433i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1434{
1435 struct drm_device *dev = obj->base.dev;
1436 struct drm_i915_private *dev_priv = dev->dev_private;
1437
1438 if (obj->pin_count != 0)
1439 list_move_tail(&obj->mm_list, &dev_priv->mm.pinned_list);
1440 else
1441 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1442
1443 BUG_ON(!list_empty(&obj->gpu_write_list));
1444 BUG_ON(!obj->active);
1445 obj->ring = NULL;
1446
1447 i915_gem_object_move_off_active(obj);
1448 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001449
1450 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001451 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001452 drm_gem_object_unreference(&obj->base);
1453
1454 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001455}
Eric Anholt673a3942008-07-30 12:06:12 -07001456
Chris Wilson963b4832009-09-20 23:03:54 +01001457/* Immediately discard the backing storage */
1458static void
Chris Wilson05394f32010-11-08 19:18:58 +00001459i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001460{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001461 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001462
Chris Wilsonae9fed62010-08-07 11:01:30 +01001463 /* Our goal here is to return as much of the memory as
1464 * is possible back to the system as we are called from OOM.
1465 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001466 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001467 */
Chris Wilson05394f32010-11-08 19:18:58 +00001468 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001469 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001470
Chris Wilsona14917e2012-02-24 21:13:38 +00001471 if (obj->base.map_list.map)
1472 drm_gem_free_mmap_offset(&obj->base);
1473
Chris Wilson05394f32010-11-08 19:18:58 +00001474 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001475}
1476
1477static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001478i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001479{
Chris Wilson05394f32010-11-08 19:18:58 +00001480 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001481}
1482
Eric Anholt673a3942008-07-30 12:06:12 -07001483static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001484i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1485 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001486{
Chris Wilson05394f32010-11-08 19:18:58 +00001487 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001488
Chris Wilson05394f32010-11-08 19:18:58 +00001489 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001490 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001491 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001492 if (obj->base.write_domain & flush_domains) {
1493 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001494
Chris Wilson05394f32010-11-08 19:18:58 +00001495 obj->base.write_domain = 0;
1496 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001497 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001498 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001499
Daniel Vetter63560392010-02-19 11:51:59 +01001500 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001501 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001502 old_write_domain);
1503 }
1504 }
1505}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001506
Daniel Vetter53d227f2012-01-25 16:32:49 +01001507static u32
1508i915_gem_get_seqno(struct drm_device *dev)
1509{
1510 drm_i915_private_t *dev_priv = dev->dev_private;
1511 u32 seqno = dev_priv->next_seqno;
1512
1513 /* reserve 0 for non-seqno */
1514 if (++dev_priv->next_seqno == 0)
1515 dev_priv->next_seqno = 1;
1516
1517 return seqno;
1518}
1519
1520u32
1521i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1522{
1523 if (ring->outstanding_lazy_request == 0)
1524 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1525
1526 return ring->outstanding_lazy_request;
1527}
1528
Chris Wilson3cce4692010-10-27 16:11:02 +01001529int
Chris Wilsondb53a302011-02-03 11:57:46 +00001530i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001531 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001532 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001533{
Chris Wilsondb53a302011-02-03 11:57:46 +00001534 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001535 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001536 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001537 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001538 int ret;
1539
1540 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001541 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001542
Chris Wilsona71d8d92012-02-15 11:25:36 +00001543 /* Record the position of the start of the request so that
1544 * should we detect the updated seqno part-way through the
1545 * GPU processing the request, we never over-estimate the
1546 * position of the head.
1547 */
1548 request_ring_position = intel_ring_get_tail(ring);
1549
Chris Wilson3cce4692010-10-27 16:11:02 +01001550 ret = ring->add_request(ring, &seqno);
1551 if (ret)
1552 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001553
Chris Wilsondb53a302011-02-03 11:57:46 +00001554 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001555
1556 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001557 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001558 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001559 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001560 was_empty = list_empty(&ring->request_list);
1561 list_add_tail(&request->list, &ring->request_list);
1562
Chris Wilsondb53a302011-02-03 11:57:46 +00001563 if (file) {
1564 struct drm_i915_file_private *file_priv = file->driver_priv;
1565
Chris Wilson1c255952010-09-26 11:03:27 +01001566 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001567 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001568 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001569 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001570 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001571 }
Eric Anholt673a3942008-07-30 12:06:12 -07001572
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001573 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001574
Ben Gamarif65d9422009-09-14 17:48:44 -04001575 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001576 if (i915_enable_hangcheck) {
1577 mod_timer(&dev_priv->hangcheck_timer,
1578 jiffies +
1579 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1580 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001581 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001582 queue_delayed_work(dev_priv->wq,
1583 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001584 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001585 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001586}
1587
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001588static inline void
1589i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001590{
Chris Wilson1c255952010-09-26 11:03:27 +01001591 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001592
Chris Wilson1c255952010-09-26 11:03:27 +01001593 if (!file_priv)
1594 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001595
Chris Wilson1c255952010-09-26 11:03:27 +01001596 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001597 if (request->file_priv) {
1598 list_del(&request->client_list);
1599 request->file_priv = NULL;
1600 }
Chris Wilson1c255952010-09-26 11:03:27 +01001601 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001602}
1603
Chris Wilsondfaae392010-09-22 10:31:52 +01001604static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1605 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001606{
Chris Wilsondfaae392010-09-22 10:31:52 +01001607 while (!list_empty(&ring->request_list)) {
1608 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001609
Chris Wilsondfaae392010-09-22 10:31:52 +01001610 request = list_first_entry(&ring->request_list,
1611 struct drm_i915_gem_request,
1612 list);
1613
1614 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001615 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001616 kfree(request);
1617 }
1618
1619 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001620 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001621
Chris Wilson05394f32010-11-08 19:18:58 +00001622 obj = list_first_entry(&ring->active_list,
1623 struct drm_i915_gem_object,
1624 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001625
Chris Wilson05394f32010-11-08 19:18:58 +00001626 obj->base.write_domain = 0;
1627 list_del_init(&obj->gpu_write_list);
1628 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001629 }
Eric Anholt673a3942008-07-30 12:06:12 -07001630}
1631
Chris Wilson312817a2010-11-22 11:50:11 +00001632static void i915_gem_reset_fences(struct drm_device *dev)
1633{
1634 struct drm_i915_private *dev_priv = dev->dev_private;
1635 int i;
1636
Daniel Vetter4b9de732011-10-09 21:52:02 +02001637 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001638 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001639 struct drm_i915_gem_object *obj = reg->obj;
1640
1641 if (!obj)
1642 continue;
1643
1644 if (obj->tiling_mode)
1645 i915_gem_release_mmap(obj);
1646
Chris Wilsond9e86c02010-11-10 16:40:20 +00001647 reg->obj->fence_reg = I915_FENCE_REG_NONE;
1648 reg->obj->fenced_gpu_access = false;
1649 reg->obj->last_fenced_seqno = 0;
1650 reg->obj->last_fenced_ring = NULL;
1651 i915_gem_clear_fence_reg(dev, reg);
Chris Wilson312817a2010-11-22 11:50:11 +00001652 }
1653}
1654
Chris Wilson069efc12010-09-30 16:53:18 +01001655void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001656{
Chris Wilsondfaae392010-09-22 10:31:52 +01001657 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001658 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001659 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001660
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001661 for (i = 0; i < I915_NUM_RINGS; i++)
1662 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001663
1664 /* Remove anything from the flushing lists. The GPU cache is likely
1665 * to be lost on reset along with the data, so simply move the
1666 * lost bo to the inactive list.
1667 */
1668 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001669 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001670 struct drm_i915_gem_object,
1671 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001672
Chris Wilson05394f32010-11-08 19:18:58 +00001673 obj->base.write_domain = 0;
1674 list_del_init(&obj->gpu_write_list);
1675 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001676 }
Chris Wilson9375e442010-09-19 12:21:28 +01001677
Chris Wilsondfaae392010-09-22 10:31:52 +01001678 /* Move everything out of the GPU domains to ensure we do any
1679 * necessary invalidation upon reuse.
1680 */
Chris Wilson05394f32010-11-08 19:18:58 +00001681 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001682 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001683 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001684 {
Chris Wilson05394f32010-11-08 19:18:58 +00001685 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001686 }
Chris Wilson069efc12010-09-30 16:53:18 +01001687
1688 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001689 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001690}
1691
1692/**
1693 * This function clears the request list as sequence numbers are passed.
1694 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001695void
Chris Wilsondb53a302011-02-03 11:57:46 +00001696i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001697{
Eric Anholt673a3942008-07-30 12:06:12 -07001698 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001699 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001700
Chris Wilsondb53a302011-02-03 11:57:46 +00001701 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001702 return;
1703
Chris Wilsondb53a302011-02-03 11:57:46 +00001704 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001705
Chris Wilson78501ea2010-10-27 12:18:21 +01001706 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001707
Chris Wilson076e2c02011-01-21 10:07:18 +00001708 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001709 if (seqno >= ring->sync_seqno[i])
1710 ring->sync_seqno[i] = 0;
1711
Zou Nan hai852835f2010-05-21 09:08:56 +08001712 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001713 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001714
Zou Nan hai852835f2010-05-21 09:08:56 +08001715 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001716 struct drm_i915_gem_request,
1717 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001718
Chris Wilsondfaae392010-09-22 10:31:52 +01001719 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001720 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001721
Chris Wilsondb53a302011-02-03 11:57:46 +00001722 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001723 /* We know the GPU must have read the request to have
1724 * sent us the seqno + interrupt, so use the position
1725 * of tail of the request to update the last known position
1726 * of the GPU head.
1727 */
1728 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001729
1730 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001731 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001732 kfree(request);
1733 }
1734
1735 /* Move any buffers on the active list that are no longer referenced
1736 * by the ringbuffer to the flushing/inactive lists as appropriate.
1737 */
1738 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001739 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001740
Akshay Joshi0206e352011-08-16 15:34:10 -04001741 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001742 struct drm_i915_gem_object,
1743 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001744
Chris Wilson05394f32010-11-08 19:18:58 +00001745 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001746 break;
1747
Chris Wilson05394f32010-11-08 19:18:58 +00001748 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001749 i915_gem_object_move_to_flushing(obj);
1750 else
1751 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001752 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001753
Chris Wilsondb53a302011-02-03 11:57:46 +00001754 if (unlikely(ring->trace_irq_seqno &&
1755 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001756 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001757 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001758 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001759
Chris Wilsondb53a302011-02-03 11:57:46 +00001760 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001761}
1762
1763void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001764i915_gem_retire_requests(struct drm_device *dev)
1765{
1766 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001767 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001768
Chris Wilsonbe726152010-07-23 23:18:50 +01001769 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001770 struct drm_i915_gem_object *obj, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01001771
1772 /* We must be careful that during unbind() we do not
1773 * accidentally infinitely recurse into retire requests.
1774 * Currently:
1775 * retire -> free -> unbind -> wait -> retire_ring
1776 */
Chris Wilson05394f32010-11-08 19:18:58 +00001777 list_for_each_entry_safe(obj, next,
Chris Wilsonbe726152010-07-23 23:18:50 +01001778 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001779 mm_list)
Chris Wilson05394f32010-11-08 19:18:58 +00001780 i915_gem_free_object_tail(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01001781 }
1782
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001783 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001784 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001785}
1786
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001787static void
Eric Anholt673a3942008-07-30 12:06:12 -07001788i915_gem_retire_work_handler(struct work_struct *work)
1789{
1790 drm_i915_private_t *dev_priv;
1791 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001792 bool idle;
1793 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001794
1795 dev_priv = container_of(work, drm_i915_private_t,
1796 mm.retire_work.work);
1797 dev = dev_priv->dev;
1798
Chris Wilson891b48c2010-09-29 12:26:37 +01001799 /* Come back later if the device is busy... */
1800 if (!mutex_trylock(&dev->struct_mutex)) {
1801 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1802 return;
1803 }
1804
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001805 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001806
Chris Wilson0a587052011-01-09 21:05:44 +00001807 /* Send a periodic flush down the ring so we don't hold onto GEM
1808 * objects indefinitely.
1809 */
1810 idle = true;
1811 for (i = 0; i < I915_NUM_RINGS; i++) {
1812 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1813
1814 if (!list_empty(&ring->gpu_write_list)) {
1815 struct drm_i915_gem_request *request;
1816 int ret;
1817
Chris Wilsondb53a302011-02-03 11:57:46 +00001818 ret = i915_gem_flush_ring(ring,
1819 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001820 request = kzalloc(sizeof(*request), GFP_KERNEL);
1821 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001822 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001823 kfree(request);
1824 }
1825
1826 idle &= list_empty(&ring->request_list);
1827 }
1828
1829 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001830 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001831
Eric Anholt673a3942008-07-30 12:06:12 -07001832 mutex_unlock(&dev->struct_mutex);
1833}
1834
Chris Wilsondb53a302011-02-03 11:57:46 +00001835/**
1836 * Waits for a sequence number to be signaled, and cleans up the
1837 * request and object lists appropriately for that event.
1838 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001839int
Chris Wilsondb53a302011-02-03 11:57:46 +00001840i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001841 uint32_t seqno,
1842 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001843{
Chris Wilsondb53a302011-02-03 11:57:46 +00001844 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001845 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001846 int ret = 0;
1847
1848 BUG_ON(seqno == 0);
1849
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001850 if (atomic_read(&dev_priv->mm.wedged)) {
1851 struct completion *x = &dev_priv->error_completion;
1852 bool recovery_complete;
1853 unsigned long flags;
1854
1855 /* Give the error handler a chance to run. */
1856 spin_lock_irqsave(&x->wait.lock, flags);
1857 recovery_complete = x->done > 0;
1858 spin_unlock_irqrestore(&x->wait.lock, flags);
1859
1860 return recovery_complete ? -EIO : -EAGAIN;
1861 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001862
Chris Wilson5d97eb62010-11-10 20:40:02 +00001863 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001864 struct drm_i915_gem_request *request;
1865
1866 request = kzalloc(sizeof(*request), GFP_KERNEL);
1867 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001868 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001869
Chris Wilsondb53a302011-02-03 11:57:46 +00001870 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001871 if (ret) {
1872 kfree(request);
1873 return ret;
1874 }
1875
1876 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001877 }
1878
Chris Wilson78501ea2010-10-27 12:18:21 +01001879 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001880 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001881 ier = I915_READ(DEIER) | I915_READ(GTIER);
Jesse Barnes23e3f9b2012-03-28 13:39:39 -07001882 else if (IS_VALLEYVIEW(ring->dev))
1883 ier = I915_READ(GTIER) | I915_READ(VLV_IER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001884 else
1885 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001886 if (!ier) {
1887 DRM_ERROR("something (likely vbetool) disabled "
1888 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001889 ring->dev->driver->irq_preinstall(ring->dev);
1890 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001891 }
1892
Chris Wilsondb53a302011-02-03 11:57:46 +00001893 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001894
Chris Wilsonb2223492010-10-27 15:27:33 +01001895 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001896 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001897 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001898 ret = wait_event_interruptible(ring->irq_queue,
1899 i915_seqno_passed(ring->get_seqno(ring), seqno)
1900 || atomic_read(&dev_priv->mm.wedged));
1901 else
1902 wait_event(ring->irq_queue,
1903 i915_seqno_passed(ring->get_seqno(ring), seqno)
1904 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001905
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001906 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001907 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1908 seqno) ||
1909 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001910 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001911 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001912
Chris Wilsondb53a302011-02-03 11:57:46 +00001913 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001914 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001915 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001916 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001917
Eric Anholt673a3942008-07-30 12:06:12 -07001918 /* Directly dispatch request retiring. While we have the work queue
1919 * to handle this, the waiter on a request often wants an associated
1920 * buffer to have made it to the inactive list, and we would need
1921 * a separate wait queue to handle that.
1922 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001923 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001924 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001925
1926 return ret;
1927}
1928
Daniel Vetter48764bf2009-09-15 22:57:32 +02001929/**
Eric Anholt673a3942008-07-30 12:06:12 -07001930 * Ensures that all rendering to the object has completed and the object is
1931 * safe to unbind from the GTT or access from the CPU.
1932 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001933int
Chris Wilsonce453d82011-02-21 14:43:56 +00001934i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001935{
Eric Anholt673a3942008-07-30 12:06:12 -07001936 int ret;
1937
Eric Anholte47c68e2008-11-14 13:35:19 -08001938 /* This function only exists to support waiting for existing rendering,
1939 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001940 */
Chris Wilson05394f32010-11-08 19:18:58 +00001941 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001942
1943 /* If there is rendering queued on the buffer being evicted, wait for
1944 * it.
1945 */
Chris Wilson05394f32010-11-08 19:18:58 +00001946 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001947 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1948 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001949 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001950 return ret;
1951 }
1952
1953 return 0;
1954}
1955
Ben Widawsky5816d642012-04-11 11:18:19 -07001956/**
1957 * i915_gem_object_sync - sync an object to a ring.
1958 *
1959 * @obj: object which may be in use on another ring.
1960 * @to: ring we wish to use the object on. May be NULL.
1961 *
1962 * This code is meant to abstract object synchronization with the GPU.
1963 * Calling with NULL implies synchronizing the object with the CPU
1964 * rather than a particular GPU ring.
1965 *
1966 * Returns 0 if successful, else propagates up the lower layer error.
1967 */
Ben Widawsky2911a352012-04-05 14:47:36 -07001968int
1969i915_gem_object_sync(struct drm_i915_gem_object *obj,
1970 struct intel_ring_buffer *to)
1971{
1972 struct intel_ring_buffer *from = obj->ring;
1973 u32 seqno;
1974 int ret, idx;
1975
1976 if (from == NULL || to == from)
1977 return 0;
1978
Ben Widawsky5816d642012-04-11 11:18:19 -07001979 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07001980 return i915_gem_object_wait_rendering(obj);
1981
1982 idx = intel_ring_sync_index(from, to);
1983
1984 seqno = obj->last_rendering_seqno;
1985 if (seqno <= from->sync_seqno[idx])
1986 return 0;
1987
1988 if (seqno == from->outstanding_lazy_request) {
1989 struct drm_i915_gem_request *request;
1990
1991 request = kzalloc(sizeof(*request), GFP_KERNEL);
1992 if (request == NULL)
1993 return -ENOMEM;
1994
1995 ret = i915_add_request(from, NULL, request);
1996 if (ret) {
1997 kfree(request);
1998 return ret;
1999 }
2000
2001 seqno = request->seqno;
2002 }
2003
Ben Widawsky2911a352012-04-05 14:47:36 -07002004
Ben Widawskye3a5a222012-04-11 11:18:20 -07002005 ret = to->sync_to(to, from, seqno - 1);
2006 if (!ret)
2007 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002008
Ben Widawskye3a5a222012-04-11 11:18:20 -07002009 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002010}
2011
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002012static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2013{
2014 u32 old_write_domain, old_read_domains;
2015
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002016 /* Act a barrier for all accesses through the GTT */
2017 mb();
2018
2019 /* Force a pagefault for domain tracking on next user access */
2020 i915_gem_release_mmap(obj);
2021
Keith Packardb97c3d92011-06-24 21:02:59 -07002022 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2023 return;
2024
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002025 old_read_domains = obj->base.read_domains;
2026 old_write_domain = obj->base.write_domain;
2027
2028 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2029 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2030
2031 trace_i915_gem_object_change_domain(obj,
2032 old_read_domains,
2033 old_write_domain);
2034}
2035
Eric Anholt673a3942008-07-30 12:06:12 -07002036/**
2037 * Unbinds an object from the GTT aperture.
2038 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002039int
Chris Wilson05394f32010-11-08 19:18:58 +00002040i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002041{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002042 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002043 int ret = 0;
2044
Chris Wilson05394f32010-11-08 19:18:58 +00002045 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002046 return 0;
2047
Chris Wilson05394f32010-11-08 19:18:58 +00002048 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002049 DRM_ERROR("Attempting to unbind pinned buffer\n");
2050 return -EINVAL;
2051 }
2052
Chris Wilsona8198ee2011-04-13 22:04:09 +01002053 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson8dc17752010-07-23 23:18:51 +01002054 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002055 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002056 /* Continue on if we fail due to EIO, the GPU is hung so we
2057 * should be safe and we need to cleanup or else we might
2058 * cause memory corruption through use-after-free.
2059 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002060
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002061 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002062
2063 /* Move the object to the CPU domain to ensure that
2064 * any possible CPU writes while it's not in the GTT
2065 * are flushed when we go to remap it.
2066 */
2067 if (ret == 0)
2068 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2069 if (ret == -ERESTARTSYS)
2070 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002071 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002072 /* In the event of a disaster, abandon all caches and
2073 * hope for the best.
2074 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002075 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002076 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002077 }
Eric Anholt673a3942008-07-30 12:06:12 -07002078
Daniel Vetter96b47b62009-12-15 17:50:00 +01002079 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002080 ret = i915_gem_object_put_fence(obj);
2081 if (ret == -ERESTARTSYS)
2082 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002083
Chris Wilsondb53a302011-02-03 11:57:46 +00002084 trace_i915_gem_object_unbind(obj);
2085
Daniel Vetter74898d72012-02-15 23:50:22 +01002086 if (obj->has_global_gtt_mapping)
2087 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002088 if (obj->has_aliasing_ppgtt_mapping) {
2089 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2090 obj->has_aliasing_ppgtt_mapping = 0;
2091 }
Daniel Vetter74163902012-02-15 23:50:21 +01002092 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002093
Chris Wilsone5281cc2010-10-28 13:45:36 +01002094 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002095
Chris Wilson6299f992010-11-24 12:23:44 +00002096 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002097 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002098 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002099 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002100
Chris Wilson05394f32010-11-08 19:18:58 +00002101 drm_mm_put_block(obj->gtt_space);
2102 obj->gtt_space = NULL;
2103 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002104
Chris Wilson05394f32010-11-08 19:18:58 +00002105 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002106 i915_gem_object_truncate(obj);
2107
Chris Wilson8dc17752010-07-23 23:18:51 +01002108 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002109}
2110
Chris Wilson88241782011-01-07 17:09:48 +00002111int
Chris Wilsondb53a302011-02-03 11:57:46 +00002112i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002113 uint32_t invalidate_domains,
2114 uint32_t flush_domains)
2115{
Chris Wilson88241782011-01-07 17:09:48 +00002116 int ret;
2117
Chris Wilson36d527d2011-03-19 22:26:49 +00002118 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2119 return 0;
2120
Chris Wilsondb53a302011-02-03 11:57:46 +00002121 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2122
Chris Wilson88241782011-01-07 17:09:48 +00002123 ret = ring->flush(ring, invalidate_domains, flush_domains);
2124 if (ret)
2125 return ret;
2126
Chris Wilson36d527d2011-03-19 22:26:49 +00002127 if (flush_domains & I915_GEM_GPU_DOMAINS)
2128 i915_gem_process_flushing_list(ring, flush_domains);
2129
Chris Wilson88241782011-01-07 17:09:48 +00002130 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002131}
2132
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002133static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002134{
Chris Wilson88241782011-01-07 17:09:48 +00002135 int ret;
2136
Chris Wilson395b70b2010-10-28 21:28:46 +01002137 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002138 return 0;
2139
Chris Wilson88241782011-01-07 17:09:48 +00002140 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002141 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002142 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002143 if (ret)
2144 return ret;
2145 }
2146
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002147 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2148 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002149}
2150
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002151int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002152{
2153 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002154 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002155
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002156 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002157 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002158 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002159 if (ret)
2160 return ret;
2161 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002162
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002163 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002164}
2165
Daniel Vetterc6642782010-11-12 13:46:18 +00002166static int sandybridge_write_fence_reg(struct drm_i915_gem_object *obj,
2167 struct intel_ring_buffer *pipelined)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002168{
Chris Wilson05394f32010-11-08 19:18:58 +00002169 struct drm_device *dev = obj->base.dev;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002170 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002171 u32 size = obj->gtt_space->size;
2172 int regnum = obj->fence_reg;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002173 uint64_t val;
2174
Chris Wilson05394f32010-11-08 19:18:58 +00002175 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Daniel Vetterc6642782010-11-12 13:46:18 +00002176 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002177 val |= obj->gtt_offset & 0xfffff000;
2178 val |= (uint64_t)((obj->stride / 128) - 1) <<
Eric Anholt4e901fd2009-10-26 16:44:17 -07002179 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2180
Chris Wilson05394f32010-11-08 19:18:58 +00002181 if (obj->tiling_mode == I915_TILING_Y)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002182 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2183 val |= I965_FENCE_REG_VALID;
2184
Daniel Vetterc6642782010-11-12 13:46:18 +00002185 if (pipelined) {
2186 int ret = intel_ring_begin(pipelined, 6);
2187 if (ret)
2188 return ret;
2189
2190 intel_ring_emit(pipelined, MI_NOOP);
2191 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2192 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8);
2193 intel_ring_emit(pipelined, (u32)val);
2194 intel_ring_emit(pipelined, FENCE_REG_SANDYBRIDGE_0 + regnum*8 + 4);
2195 intel_ring_emit(pipelined, (u32)(val >> 32));
2196 intel_ring_advance(pipelined);
2197 } else
2198 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + regnum * 8, val);
2199
2200 return 0;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002201}
2202
Daniel Vetterc6642782010-11-12 13:46:18 +00002203static int i965_write_fence_reg(struct drm_i915_gem_object *obj,
2204 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002205{
Chris Wilson05394f32010-11-08 19:18:58 +00002206 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002207 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002208 u32 size = obj->gtt_space->size;
2209 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002210 uint64_t val;
2211
Chris Wilson05394f32010-11-08 19:18:58 +00002212 val = (uint64_t)((obj->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002213 0xfffff000) << 32;
Chris Wilson05394f32010-11-08 19:18:58 +00002214 val |= obj->gtt_offset & 0xfffff000;
2215 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2216 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002217 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2218 val |= I965_FENCE_REG_VALID;
2219
Daniel Vetterc6642782010-11-12 13:46:18 +00002220 if (pipelined) {
2221 int ret = intel_ring_begin(pipelined, 6);
2222 if (ret)
2223 return ret;
2224
2225 intel_ring_emit(pipelined, MI_NOOP);
2226 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(2));
2227 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8);
2228 intel_ring_emit(pipelined, (u32)val);
2229 intel_ring_emit(pipelined, FENCE_REG_965_0 + regnum*8 + 4);
2230 intel_ring_emit(pipelined, (u32)(val >> 32));
2231 intel_ring_advance(pipelined);
2232 } else
2233 I915_WRITE64(FENCE_REG_965_0 + regnum * 8, val);
2234
2235 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002236}
2237
Daniel Vetterc6642782010-11-12 13:46:18 +00002238static int i915_write_fence_reg(struct drm_i915_gem_object *obj,
2239 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002240{
Chris Wilson05394f32010-11-08 19:18:58 +00002241 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002242 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002243 u32 size = obj->gtt_space->size;
Daniel Vetterc6642782010-11-12 13:46:18 +00002244 u32 fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002245 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002246
Daniel Vetterc6642782010-11-12 13:46:18 +00002247 if (WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2248 (size & -size) != size ||
2249 (obj->gtt_offset & (size - 1)),
2250 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2251 obj->gtt_offset, obj->map_and_fenceable, size))
2252 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002253
Daniel Vetterc6642782010-11-12 13:46:18 +00002254 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
Jesse Barnes0f973f22009-01-26 17:10:45 -08002255 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002256 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002257 tile_width = 512;
2258
2259 /* Note: pitch better be a power of two tile widths */
Chris Wilson05394f32010-11-08 19:18:58 +00002260 pitch_val = obj->stride / tile_width;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002261 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002262
Chris Wilson05394f32010-11-08 19:18:58 +00002263 val = obj->gtt_offset;
2264 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002265 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002266 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002267 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2268 val |= I830_FENCE_REG_VALID;
2269
Chris Wilson05394f32010-11-08 19:18:58 +00002270 fence_reg = obj->fence_reg;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002271 if (fence_reg < 8)
2272 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002273 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002274 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Daniel Vetterc6642782010-11-12 13:46:18 +00002275
2276 if (pipelined) {
2277 int ret = intel_ring_begin(pipelined, 4);
2278 if (ret)
2279 return ret;
2280
2281 intel_ring_emit(pipelined, MI_NOOP);
2282 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2283 intel_ring_emit(pipelined, fence_reg);
2284 intel_ring_emit(pipelined, val);
2285 intel_ring_advance(pipelined);
2286 } else
2287 I915_WRITE(fence_reg, val);
2288
2289 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002290}
2291
Daniel Vetterc6642782010-11-12 13:46:18 +00002292static int i830_write_fence_reg(struct drm_i915_gem_object *obj,
2293 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002294{
Chris Wilson05394f32010-11-08 19:18:58 +00002295 struct drm_device *dev = obj->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002296 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002297 u32 size = obj->gtt_space->size;
2298 int regnum = obj->fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002299 uint32_t val;
2300 uint32_t pitch_val;
2301
Daniel Vetterc6642782010-11-12 13:46:18 +00002302 if (WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2303 (size & -size) != size ||
2304 (obj->gtt_offset & (size - 1)),
2305 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2306 obj->gtt_offset, size))
2307 return -EINVAL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002308
Chris Wilson05394f32010-11-08 19:18:58 +00002309 pitch_val = obj->stride / 128;
Eric Anholte76a16d2009-05-26 17:44:56 -07002310 pitch_val = ffs(pitch_val) - 1;
Eric Anholte76a16d2009-05-26 17:44:56 -07002311
Chris Wilson05394f32010-11-08 19:18:58 +00002312 val = obj->gtt_offset;
2313 if (obj->tiling_mode == I915_TILING_Y)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002314 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Daniel Vetterc6642782010-11-12 13:46:18 +00002315 val |= I830_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002316 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2317 val |= I830_FENCE_REG_VALID;
2318
Daniel Vetterc6642782010-11-12 13:46:18 +00002319 if (pipelined) {
2320 int ret = intel_ring_begin(pipelined, 4);
2321 if (ret)
2322 return ret;
2323
2324 intel_ring_emit(pipelined, MI_NOOP);
2325 intel_ring_emit(pipelined, MI_LOAD_REGISTER_IMM(1));
2326 intel_ring_emit(pipelined, FENCE_REG_830_0 + regnum*4);
2327 intel_ring_emit(pipelined, val);
2328 intel_ring_advance(pipelined);
2329 } else
2330 I915_WRITE(FENCE_REG_830_0 + regnum * 4, val);
2331
2332 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002333}
2334
Chris Wilsond9e86c02010-11-10 16:40:20 +00002335static bool ring_passed_seqno(struct intel_ring_buffer *ring, u32 seqno)
2336{
2337 return i915_seqno_passed(ring->get_seqno(ring), seqno);
2338}
2339
2340static int
2341i915_gem_object_flush_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002342 struct intel_ring_buffer *pipelined)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002343{
2344 int ret;
2345
2346 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002347 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002348 ret = i915_gem_flush_ring(obj->last_fenced_ring,
Chris Wilson88241782011-01-07 17:09:48 +00002349 0, obj->base.write_domain);
2350 if (ret)
2351 return ret;
2352 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002353
2354 obj->fenced_gpu_access = false;
2355 }
2356
2357 if (obj->last_fenced_seqno && pipelined != obj->last_fenced_ring) {
2358 if (!ring_passed_seqno(obj->last_fenced_ring,
2359 obj->last_fenced_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002360 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002361 obj->last_fenced_seqno,
2362 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002363 if (ret)
2364 return ret;
2365 }
2366
2367 obj->last_fenced_seqno = 0;
2368 obj->last_fenced_ring = NULL;
2369 }
2370
Chris Wilson63256ec2011-01-04 18:42:07 +00002371 /* Ensure that all CPU reads are completed before installing a fence
2372 * and all writes before removing the fence.
2373 */
2374 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2375 mb();
2376
Chris Wilsond9e86c02010-11-10 16:40:20 +00002377 return 0;
2378}
2379
2380int
2381i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2382{
2383 int ret;
2384
2385 if (obj->tiling_mode)
2386 i915_gem_release_mmap(obj);
2387
Chris Wilsonce453d82011-02-21 14:43:56 +00002388 ret = i915_gem_object_flush_fence(obj, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002389 if (ret)
2390 return ret;
2391
2392 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2393 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002394
2395 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002396 i915_gem_clear_fence_reg(obj->base.dev,
2397 &dev_priv->fence_regs[obj->fence_reg]);
2398
2399 obj->fence_reg = I915_FENCE_REG_NONE;
2400 }
2401
2402 return 0;
2403}
2404
2405static struct drm_i915_fence_reg *
2406i915_find_fence_reg(struct drm_device *dev,
2407 struct intel_ring_buffer *pipelined)
Daniel Vetterae3db242010-02-19 11:51:58 +01002408{
Daniel Vetterae3db242010-02-19 11:51:58 +01002409 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002410 struct drm_i915_fence_reg *reg, *first, *avail;
2411 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002412
2413 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002414 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002415 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2416 reg = &dev_priv->fence_regs[i];
2417 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002418 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002419
Chris Wilson1690e1e2011-12-14 13:57:08 +01002420 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002421 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002422 }
2423
Chris Wilsond9e86c02010-11-10 16:40:20 +00002424 if (avail == NULL)
2425 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002426
2427 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002428 avail = first = NULL;
2429 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002430 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002431 continue;
2432
Chris Wilsond9e86c02010-11-10 16:40:20 +00002433 if (first == NULL)
2434 first = reg;
2435
2436 if (!pipelined ||
2437 !reg->obj->last_fenced_ring ||
2438 reg->obj->last_fenced_ring == pipelined) {
2439 avail = reg;
2440 break;
2441 }
Daniel Vetterae3db242010-02-19 11:51:58 +01002442 }
2443
Chris Wilsond9e86c02010-11-10 16:40:20 +00002444 if (avail == NULL)
2445 avail = first;
Daniel Vetterae3db242010-02-19 11:51:58 +01002446
Chris Wilsona00b10c2010-09-24 21:15:47 +01002447 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002448}
2449
Jesse Barnesde151cf2008-11-12 10:03:55 -08002450/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002451 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002452 * @obj: object to map through a fence reg
Chris Wilsond9e86c02010-11-10 16:40:20 +00002453 * @pipelined: ring on which to queue the change, or NULL for CPU access
Jesse Barnesde151cf2008-11-12 10:03:55 -08002454 *
2455 * When mapping objects through the GTT, userspace wants to be able to write
2456 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002457 * This function walks the fence regs looking for a free one for @obj,
2458 * stealing one if it can't find any.
2459 *
2460 * It then sets up the reg based on the object's properties: address, pitch
2461 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002462 *
2463 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002464 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002465int
Chris Wilsond9e86c02010-11-10 16:40:20 +00002466i915_gem_object_get_fence(struct drm_i915_gem_object *obj,
Chris Wilsonce453d82011-02-21 14:43:56 +00002467 struct intel_ring_buffer *pipelined)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002468{
Chris Wilson05394f32010-11-08 19:18:58 +00002469 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002470 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002471 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002472 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002473
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002474 if (obj->tiling_mode == I915_TILING_NONE)
2475 return i915_gem_object_put_fence(obj);
2476
Chris Wilson6bda10d2010-12-05 21:04:18 +00002477 /* XXX disable pipelining. There are bugs. Shocking. */
2478 pipelined = NULL;
2479
Chris Wilsond9e86c02010-11-10 16:40:20 +00002480 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002481 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2482 reg = &dev_priv->fence_regs[obj->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002483 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002484
Chris Wilson29c5a582011-03-17 15:23:22 +00002485 if (obj->tiling_changed) {
2486 ret = i915_gem_object_flush_fence(obj, pipelined);
2487 if (ret)
2488 return ret;
2489
2490 if (!obj->fenced_gpu_access && !obj->last_fenced_seqno)
2491 pipelined = NULL;
2492
2493 if (pipelined) {
2494 reg->setup_seqno =
2495 i915_gem_next_request_seqno(pipelined);
2496 obj->last_fenced_seqno = reg->setup_seqno;
2497 obj->last_fenced_ring = pipelined;
2498 }
2499
2500 goto update;
2501 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002502
2503 if (!pipelined) {
2504 if (reg->setup_seqno) {
2505 if (!ring_passed_seqno(obj->last_fenced_ring,
2506 reg->setup_seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002507 ret = i915_wait_request(obj->last_fenced_ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002508 reg->setup_seqno,
2509 true);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002510 if (ret)
2511 return ret;
2512 }
2513
2514 reg->setup_seqno = 0;
2515 }
2516 } else if (obj->last_fenced_ring &&
2517 obj->last_fenced_ring != pipelined) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002518 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002519 if (ret)
2520 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002521 }
2522
Eric Anholta09ba7f2009-08-29 12:49:51 -07002523 return 0;
2524 }
2525
Chris Wilsond9e86c02010-11-10 16:40:20 +00002526 reg = i915_find_fence_reg(dev, pipelined);
2527 if (reg == NULL)
Daniel Vetter39965b32011-12-14 13:57:09 +01002528 return -EDEADLK;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002529
Chris Wilsonce453d82011-02-21 14:43:56 +00002530 ret = i915_gem_object_flush_fence(obj, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002531 if (ret)
Daniel Vetterae3db242010-02-19 11:51:58 +01002532 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002533
Chris Wilsond9e86c02010-11-10 16:40:20 +00002534 if (reg->obj) {
2535 struct drm_i915_gem_object *old = reg->obj;
2536
2537 drm_gem_object_reference(&old->base);
2538
2539 if (old->tiling_mode)
2540 i915_gem_release_mmap(old);
2541
Chris Wilsonce453d82011-02-21 14:43:56 +00002542 ret = i915_gem_object_flush_fence(old, pipelined);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002543 if (ret) {
2544 drm_gem_object_unreference(&old->base);
2545 return ret;
2546 }
2547
2548 if (old->last_fenced_seqno == 0 && obj->last_fenced_seqno == 0)
2549 pipelined = NULL;
2550
2551 old->fence_reg = I915_FENCE_REG_NONE;
2552 old->last_fenced_ring = pipelined;
2553 old->last_fenced_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002554 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002555
2556 drm_gem_object_unreference(&old->base);
2557 } else if (obj->last_fenced_seqno == 0)
2558 pipelined = NULL;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002559
Jesse Barnesde151cf2008-11-12 10:03:55 -08002560 reg->obj = obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002561 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
2562 obj->fence_reg = reg - dev_priv->fence_regs;
2563 obj->last_fenced_ring = pipelined;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002564
Chris Wilsond9e86c02010-11-10 16:40:20 +00002565 reg->setup_seqno =
Chris Wilsondb53a302011-02-03 11:57:46 +00002566 pipelined ? i915_gem_next_request_seqno(pipelined) : 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002567 obj->last_fenced_seqno = reg->setup_seqno;
2568
2569update:
2570 obj->tiling_changed = false;
Chris Wilsone259bef2010-09-17 00:32:02 +01002571 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002572 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002573 case 6:
Daniel Vetterc6642782010-11-12 13:46:18 +00002574 ret = sandybridge_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002575 break;
2576 case 5:
2577 case 4:
Daniel Vetterc6642782010-11-12 13:46:18 +00002578 ret = i965_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002579 break;
2580 case 3:
Daniel Vetterc6642782010-11-12 13:46:18 +00002581 ret = i915_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002582 break;
2583 case 2:
Daniel Vetterc6642782010-11-12 13:46:18 +00002584 ret = i830_write_fence_reg(obj, pipelined);
Chris Wilsone259bef2010-09-17 00:32:02 +01002585 break;
2586 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002587
Daniel Vetterc6642782010-11-12 13:46:18 +00002588 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002589}
2590
2591/**
2592 * i915_gem_clear_fence_reg - clear out fence register info
2593 * @obj: object to clear
2594 *
2595 * Zeroes out the fence register itself and clears out the associated
Chris Wilson05394f32010-11-08 19:18:58 +00002596 * data structures in dev_priv and obj.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002597 */
2598static void
Chris Wilsond9e86c02010-11-10 16:40:20 +00002599i915_gem_clear_fence_reg(struct drm_device *dev,
2600 struct drm_i915_fence_reg *reg)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002601{
Jesse Barnes79e53942008-11-07 14:24:08 -08002602 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002603 uint32_t fence_reg = reg - dev_priv->fence_regs;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002604
Chris Wilsone259bef2010-09-17 00:32:02 +01002605 switch (INTEL_INFO(dev)->gen) {
Eric Anholt25aebfc32011-05-06 13:55:53 -07002606 case 7:
Chris Wilsone259bef2010-09-17 00:32:02 +01002607 case 6:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002608 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002609 break;
2610 case 5:
2611 case 4:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002612 I915_WRITE64(FENCE_REG_965_0 + fence_reg*8, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002613 break;
2614 case 3:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002615 if (fence_reg >= 8)
2616 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002617 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002618 case 2:
Chris Wilsond9e86c02010-11-10 16:40:20 +00002619 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002620
2621 I915_WRITE(fence_reg, 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002622 break;
Eric Anholtdc529a42009-03-10 22:34:49 -07002623 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002624
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002625 list_del_init(&reg->lru_list);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002626 reg->obj = NULL;
2627 reg->setup_seqno = 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002628 reg->pin_count = 0;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002629}
2630
2631/**
Eric Anholt673a3942008-07-30 12:06:12 -07002632 * Finds free space in the GTT aperture and binds the object there.
2633 */
2634static int
Chris Wilson05394f32010-11-08 19:18:58 +00002635i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002636 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002637 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002638{
Chris Wilson05394f32010-11-08 19:18:58 +00002639 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002640 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002641 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002642 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002643 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002644 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002645 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002646
Chris Wilson05394f32010-11-08 19:18:58 +00002647 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002648 DRM_ERROR("Attempting to bind a purgeable object\n");
2649 return -EINVAL;
2650 }
2651
Chris Wilsone28f8712011-07-18 13:11:49 -07002652 fence_size = i915_gem_get_gtt_size(dev,
2653 obj->base.size,
2654 obj->tiling_mode);
2655 fence_alignment = i915_gem_get_gtt_alignment(dev,
2656 obj->base.size,
2657 obj->tiling_mode);
2658 unfenced_alignment =
2659 i915_gem_get_unfenced_gtt_alignment(dev,
2660 obj->base.size,
2661 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002662
Eric Anholt673a3942008-07-30 12:06:12 -07002663 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002664 alignment = map_and_fenceable ? fence_alignment :
2665 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002666 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002667 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2668 return -EINVAL;
2669 }
2670
Chris Wilson05394f32010-11-08 19:18:58 +00002671 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002672
Chris Wilson654fc602010-05-27 13:18:21 +01002673 /* If the object is bigger than the entire aperture, reject it early
2674 * before evicting everything in a vain attempt to find space.
2675 */
Chris Wilson05394f32010-11-08 19:18:58 +00002676 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002677 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002678 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2679 return -E2BIG;
2680 }
2681
Eric Anholt673a3942008-07-30 12:06:12 -07002682 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002683 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002684 free_space =
2685 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002686 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002687 dev_priv->mm.gtt_mappable_end,
2688 0);
2689 else
2690 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002691 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002692
2693 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002694 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002695 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002696 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002697 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002698 dev_priv->mm.gtt_mappable_end,
2699 0);
2700 else
Chris Wilson05394f32010-11-08 19:18:58 +00002701 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002702 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002703 }
Chris Wilson05394f32010-11-08 19:18:58 +00002704 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002705 /* If the gtt is empty and we're still having trouble
2706 * fitting our object in, we're out of memory.
2707 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002708 ret = i915_gem_evict_something(dev, size, alignment,
2709 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002710 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002711 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002712
Eric Anholt673a3942008-07-30 12:06:12 -07002713 goto search_free;
2714 }
2715
Chris Wilsone5281cc2010-10-28 13:45:36 +01002716 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002717 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002718 drm_mm_put_block(obj->gtt_space);
2719 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002720
2721 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002722 /* first try to reclaim some memory by clearing the GTT */
2723 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002724 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002725 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002726 if (gfpmask) {
2727 gfpmask = 0;
2728 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002729 }
2730
Chris Wilson809b6332011-01-10 17:33:15 +00002731 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002732 }
2733
2734 goto search_free;
2735 }
2736
Eric Anholt673a3942008-07-30 12:06:12 -07002737 return ret;
2738 }
2739
Daniel Vetter74163902012-02-15 23:50:21 +01002740 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002741 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002742 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002743 drm_mm_put_block(obj->gtt_space);
2744 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002745
Chris Wilson809b6332011-01-10 17:33:15 +00002746 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002747 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002748
2749 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002750 }
Eric Anholt673a3942008-07-30 12:06:12 -07002751
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002752 if (!dev_priv->mm.aliasing_ppgtt)
2753 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002754
Chris Wilson6299f992010-11-24 12:23:44 +00002755 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002756 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002757
Eric Anholt673a3942008-07-30 12:06:12 -07002758 /* Assert that the object is not currently in any GPU domain. As it
2759 * wasn't in the GTT, there shouldn't be any way it could have been in
2760 * a GPU cache
2761 */
Chris Wilson05394f32010-11-08 19:18:58 +00002762 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2763 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002764
Chris Wilson6299f992010-11-24 12:23:44 +00002765 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002766
Daniel Vetter75e9e912010-11-04 17:11:09 +01002767 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002768 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002769 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002770
Daniel Vetter75e9e912010-11-04 17:11:09 +01002771 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002772 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002773
Chris Wilson05394f32010-11-08 19:18:58 +00002774 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002775
Chris Wilsondb53a302011-02-03 11:57:46 +00002776 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002777 return 0;
2778}
2779
2780void
Chris Wilson05394f32010-11-08 19:18:58 +00002781i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002782{
Eric Anholt673a3942008-07-30 12:06:12 -07002783 /* If we don't have a page list set up, then we're not pinned
2784 * to GPU, and we can ignore the cache flush because it'll happen
2785 * again at bind time.
2786 */
Chris Wilson05394f32010-11-08 19:18:58 +00002787 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002788 return;
2789
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002790 /* If the GPU is snooping the contents of the CPU cache,
2791 * we do not need to manually clear the CPU cache lines. However,
2792 * the caches are only snooped when the render cache is
2793 * flushed/invalidated. As we always have to emit invalidations
2794 * and flushes when moving into and out of the RENDER domain, correct
2795 * snooping behaviour occurs naturally as the result of our domain
2796 * tracking.
2797 */
2798 if (obj->cache_level != I915_CACHE_NONE)
2799 return;
2800
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002801 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002802
Chris Wilson05394f32010-11-08 19:18:58 +00002803 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002804}
2805
Eric Anholte47c68e2008-11-14 13:35:19 -08002806/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002807static int
Chris Wilson3619df02010-11-28 15:37:17 +00002808i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002809{
Chris Wilson05394f32010-11-08 19:18:58 +00002810 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002811 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002812
2813 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002814 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002815}
2816
2817/** Flushes the GTT write domain for the object if it's dirty. */
2818static void
Chris Wilson05394f32010-11-08 19:18:58 +00002819i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002820{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002821 uint32_t old_write_domain;
2822
Chris Wilson05394f32010-11-08 19:18:58 +00002823 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002824 return;
2825
Chris Wilson63256ec2011-01-04 18:42:07 +00002826 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002827 * to it immediately go to main memory as far as we know, so there's
2828 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002829 *
2830 * However, we do have to enforce the order so that all writes through
2831 * the GTT land before any writes to the device, such as updates to
2832 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002833 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002834 wmb();
2835
Chris Wilson05394f32010-11-08 19:18:58 +00002836 old_write_domain = obj->base.write_domain;
2837 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002838
2839 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002840 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002841 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002842}
2843
2844/** Flushes the CPU write domain for the object if it's dirty. */
2845static void
Chris Wilson05394f32010-11-08 19:18:58 +00002846i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002847{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002848 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002849
Chris Wilson05394f32010-11-08 19:18:58 +00002850 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002851 return;
2852
2853 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002854 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002855 old_write_domain = obj->base.write_domain;
2856 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002857
2858 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002859 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002860 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002861}
2862
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002863/**
2864 * Moves a single object to the GTT read, and possibly write domain.
2865 *
2866 * This function returns when the move is complete, including waiting on
2867 * flushes to occur.
2868 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002869int
Chris Wilson20217462010-11-23 15:26:33 +00002870i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002871{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002872 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002873 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002874
Eric Anholt02354392008-11-26 13:58:13 -08002875 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002876 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002877 return -EINVAL;
2878
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002879 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2880 return 0;
2881
Chris Wilson88241782011-01-07 17:09:48 +00002882 ret = i915_gem_object_flush_gpu_write_domain(obj);
2883 if (ret)
2884 return ret;
2885
Chris Wilson87ca9c82010-12-02 09:42:56 +00002886 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002887 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002888 if (ret)
2889 return ret;
2890 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002891
Chris Wilson72133422010-09-13 23:56:38 +01002892 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002893
Chris Wilson05394f32010-11-08 19:18:58 +00002894 old_write_domain = obj->base.write_domain;
2895 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002896
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002897 /* It should now be out of any other write domains, and we can update
2898 * the domain values for our changes.
2899 */
Chris Wilson05394f32010-11-08 19:18:58 +00002900 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2901 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002902 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002903 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2904 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2905 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002906 }
2907
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002908 trace_i915_gem_object_change_domain(obj,
2909 old_read_domains,
2910 old_write_domain);
2911
Eric Anholte47c68e2008-11-14 13:35:19 -08002912 return 0;
2913}
2914
Chris Wilsone4ffd172011-04-04 09:44:39 +01002915int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2916 enum i915_cache_level cache_level)
2917{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002918 struct drm_device *dev = obj->base.dev;
2919 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002920 int ret;
2921
2922 if (obj->cache_level == cache_level)
2923 return 0;
2924
2925 if (obj->pin_count) {
2926 DRM_DEBUG("can not change the cache level of pinned objects\n");
2927 return -EBUSY;
2928 }
2929
2930 if (obj->gtt_space) {
2931 ret = i915_gem_object_finish_gpu(obj);
2932 if (ret)
2933 return ret;
2934
2935 i915_gem_object_finish_gtt(obj);
2936
2937 /* Before SandyBridge, you could not use tiling or fence
2938 * registers with snooped memory, so relinquish any fences
2939 * currently pointing to our region in the aperture.
2940 */
2941 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2942 ret = i915_gem_object_put_fence(obj);
2943 if (ret)
2944 return ret;
2945 }
2946
Daniel Vetter74898d72012-02-15 23:50:22 +01002947 if (obj->has_global_gtt_mapping)
2948 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002949 if (obj->has_aliasing_ppgtt_mapping)
2950 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2951 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002952 }
2953
2954 if (cache_level == I915_CACHE_NONE) {
2955 u32 old_read_domains, old_write_domain;
2956
2957 /* If we're coming from LLC cached, then we haven't
2958 * actually been tracking whether the data is in the
2959 * CPU cache or not, since we only allow one bit set
2960 * in obj->write_domain and have been skipping the clflushes.
2961 * Just set it to the CPU cache for now.
2962 */
2963 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2964 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2965
2966 old_read_domains = obj->base.read_domains;
2967 old_write_domain = obj->base.write_domain;
2968
2969 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2970 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2971
2972 trace_i915_gem_object_change_domain(obj,
2973 old_read_domains,
2974 old_write_domain);
2975 }
2976
2977 obj->cache_level = cache_level;
2978 return 0;
2979}
2980
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002981/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002982 * Prepare buffer for display plane (scanout, cursors, etc).
2983 * Can be called from an uninterruptible phase (modesetting) and allows
2984 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002985 */
2986int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002987i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2988 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002989 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002990{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002991 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002992 int ret;
2993
Chris Wilson88241782011-01-07 17:09:48 +00002994 ret = i915_gem_object_flush_gpu_write_domain(obj);
2995 if (ret)
2996 return ret;
2997
Chris Wilson0be73282010-12-06 14:36:27 +00002998 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07002999 ret = i915_gem_object_sync(obj, pipelined);
3000 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003001 return ret;
3002 }
3003
Eric Anholta7ef0642011-03-29 16:59:54 -07003004 /* The display engine is not coherent with the LLC cache on gen6. As
3005 * a result, we make sure that the pinning that is about to occur is
3006 * done with uncached PTEs. This is lowest common denominator for all
3007 * chipsets.
3008 *
3009 * However for gen6+, we could do better by using the GFDT bit instead
3010 * of uncaching, which would allow us to flush all the LLC-cached data
3011 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3012 */
3013 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3014 if (ret)
3015 return ret;
3016
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003017 /* As the user may map the buffer once pinned in the display plane
3018 * (e.g. libkms for the bootup splash), we have to ensure that we
3019 * always use map_and_fenceable for all scanout buffers.
3020 */
3021 ret = i915_gem_object_pin(obj, alignment, true);
3022 if (ret)
3023 return ret;
3024
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003025 i915_gem_object_flush_cpu_write_domain(obj);
3026
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003027 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003028 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003029
3030 /* It should now be out of any other write domains, and we can update
3031 * the domain values for our changes.
3032 */
3033 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003034 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003035
3036 trace_i915_gem_object_change_domain(obj,
3037 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003038 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003039
3040 return 0;
3041}
3042
Chris Wilson85345512010-11-13 09:49:11 +00003043int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003044i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003045{
Chris Wilson88241782011-01-07 17:09:48 +00003046 int ret;
3047
Chris Wilsona8198ee2011-04-13 22:04:09 +01003048 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003049 return 0;
3050
Chris Wilson88241782011-01-07 17:09:48 +00003051 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003052 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00003053 if (ret)
3054 return ret;
3055 }
Chris Wilson85345512010-11-13 09:49:11 +00003056
Chris Wilsonc501ae72011-12-14 13:57:23 +01003057 ret = i915_gem_object_wait_rendering(obj);
3058 if (ret)
3059 return ret;
3060
Chris Wilsona8198ee2011-04-13 22:04:09 +01003061 /* Ensure that we invalidate the GPU's caches and TLBs. */
3062 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003063 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003064}
3065
Eric Anholte47c68e2008-11-14 13:35:19 -08003066/**
3067 * Moves a single object to the CPU read, and possibly write domain.
3068 *
3069 * This function returns when the move is complete, including waiting on
3070 * flushes to occur.
3071 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003072int
Chris Wilson919926a2010-11-12 13:42:53 +00003073i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003074{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003075 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003076 int ret;
3077
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003078 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3079 return 0;
3080
Chris Wilson88241782011-01-07 17:09:48 +00003081 ret = i915_gem_object_flush_gpu_write_domain(obj);
3082 if (ret)
3083 return ret;
3084
Chris Wilsonf8413192012-04-10 11:52:50 +01003085 if (write || obj->pending_gpu_write) {
3086 ret = i915_gem_object_wait_rendering(obj);
3087 if (ret)
3088 return ret;
3089 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003090
3091 i915_gem_object_flush_gtt_write_domain(obj);
3092
Chris Wilson05394f32010-11-08 19:18:58 +00003093 old_write_domain = obj->base.write_domain;
3094 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003095
Eric Anholte47c68e2008-11-14 13:35:19 -08003096 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003097 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003098 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003099
Chris Wilson05394f32010-11-08 19:18:58 +00003100 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003101 }
3102
3103 /* It should now be out of any other write domains, and we can update
3104 * the domain values for our changes.
3105 */
Chris Wilson05394f32010-11-08 19:18:58 +00003106 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003107
3108 /* If we're writing through the CPU, then the GPU read domains will
3109 * need to be invalidated at next use.
3110 */
3111 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003112 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3113 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003114 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003115
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003116 trace_i915_gem_object_change_domain(obj,
3117 old_read_domains,
3118 old_write_domain);
3119
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003120 return 0;
3121}
3122
Eric Anholt673a3942008-07-30 12:06:12 -07003123/* Throttle our rendering by waiting until the ring has completed our requests
3124 * emitted over 20 msec ago.
3125 *
Eric Anholtb9624422009-06-03 07:27:35 +00003126 * Note that if we were to use the current jiffies each time around the loop,
3127 * we wouldn't escape the function with any frames outstanding if the time to
3128 * render a frame was over 20ms.
3129 *
Eric Anholt673a3942008-07-30 12:06:12 -07003130 * This should get us reasonable parallelism between CPU and GPU but also
3131 * relatively low latency when blocking on a particular request to finish.
3132 */
3133static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003134i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003135{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003136 struct drm_i915_private *dev_priv = dev->dev_private;
3137 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003138 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003139 struct drm_i915_gem_request *request;
3140 struct intel_ring_buffer *ring = NULL;
3141 u32 seqno = 0;
3142 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003143
Chris Wilsone110e8d2011-01-26 15:39:14 +00003144 if (atomic_read(&dev_priv->mm.wedged))
3145 return -EIO;
3146
Chris Wilson1c255952010-09-26 11:03:27 +01003147 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003148 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003149 if (time_after_eq(request->emitted_jiffies, recent_enough))
3150 break;
3151
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003152 ring = request->ring;
3153 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003154 }
Chris Wilson1c255952010-09-26 11:03:27 +01003155 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003156
3157 if (seqno == 0)
3158 return 0;
3159
3160 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003161 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003162 /* And wait for the seqno passing without holding any locks and
3163 * causing extra latency for others. This is safe as the irq
3164 * generation is designed to be run atomically and so is
3165 * lockless.
3166 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003167 if (ring->irq_get(ring)) {
3168 ret = wait_event_interruptible(ring->irq_queue,
3169 i915_seqno_passed(ring->get_seqno(ring), seqno)
3170 || atomic_read(&dev_priv->mm.wedged));
3171 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003172
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003173 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3174 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003175 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3176 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003177 atomic_read(&dev_priv->mm.wedged), 3000)) {
3178 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003179 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003180 }
3181
3182 if (ret == 0)
3183 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003184
Eric Anholt673a3942008-07-30 12:06:12 -07003185 return ret;
3186}
3187
Eric Anholt673a3942008-07-30 12:06:12 -07003188int
Chris Wilson05394f32010-11-08 19:18:58 +00003189i915_gem_object_pin(struct drm_i915_gem_object *obj,
3190 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003191 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003192{
Chris Wilson05394f32010-11-08 19:18:58 +00003193 struct drm_device *dev = obj->base.dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003194 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003195 int ret;
3196
Chris Wilson05394f32010-11-08 19:18:58 +00003197 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilson23bc5982010-09-29 16:10:57 +01003198 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003199
Chris Wilson05394f32010-11-08 19:18:58 +00003200 if (obj->gtt_space != NULL) {
3201 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3202 (map_and_fenceable && !obj->map_and_fenceable)) {
3203 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003204 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003205 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3206 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003207 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003208 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003209 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003210 ret = i915_gem_object_unbind(obj);
3211 if (ret)
3212 return ret;
3213 }
3214 }
3215
Chris Wilson05394f32010-11-08 19:18:58 +00003216 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003217 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003218 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003219 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003220 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003221 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003222
Daniel Vetter74898d72012-02-15 23:50:22 +01003223 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3224 i915_gem_gtt_bind_object(obj, obj->cache_level);
3225
Chris Wilson05394f32010-11-08 19:18:58 +00003226 if (obj->pin_count++ == 0) {
Chris Wilson05394f32010-11-08 19:18:58 +00003227 if (!obj->active)
3228 list_move_tail(&obj->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003229 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003230 }
Chris Wilson6299f992010-11-24 12:23:44 +00003231 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003232
Chris Wilson23bc5982010-09-29 16:10:57 +01003233 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003234 return 0;
3235}
3236
3237void
Chris Wilson05394f32010-11-08 19:18:58 +00003238i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003239{
Chris Wilson05394f32010-11-08 19:18:58 +00003240 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003241 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003242
Chris Wilson23bc5982010-09-29 16:10:57 +01003243 WARN_ON(i915_verify_lists(dev));
Chris Wilson05394f32010-11-08 19:18:58 +00003244 BUG_ON(obj->pin_count == 0);
3245 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003246
Chris Wilson05394f32010-11-08 19:18:58 +00003247 if (--obj->pin_count == 0) {
3248 if (!obj->active)
3249 list_move_tail(&obj->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07003250 &dev_priv->mm.inactive_list);
Chris Wilson6299f992010-11-24 12:23:44 +00003251 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003252 }
Chris Wilson23bc5982010-09-29 16:10:57 +01003253 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003254}
3255
3256int
3257i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003258 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003259{
3260 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003261 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003262 int ret;
3263
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003264 ret = i915_mutex_lock_interruptible(dev);
3265 if (ret)
3266 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003267
Chris Wilson05394f32010-11-08 19:18:58 +00003268 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003269 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003270 ret = -ENOENT;
3271 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003272 }
Eric Anholt673a3942008-07-30 12:06:12 -07003273
Chris Wilson05394f32010-11-08 19:18:58 +00003274 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003275 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003276 ret = -EINVAL;
3277 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003278 }
3279
Chris Wilson05394f32010-11-08 19:18:58 +00003280 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003281 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3282 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003283 ret = -EINVAL;
3284 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003285 }
3286
Chris Wilson05394f32010-11-08 19:18:58 +00003287 obj->user_pin_count++;
3288 obj->pin_filp = file;
3289 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003290 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003291 if (ret)
3292 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003293 }
3294
3295 /* XXX - flush the CPU caches for pinned objects
3296 * as the X server doesn't manage domains yet
3297 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003298 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003299 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003300out:
Chris Wilson05394f32010-11-08 19:18:58 +00003301 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003302unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003303 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003304 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003305}
3306
3307int
3308i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003309 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003310{
3311 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003312 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003313 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003314
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003315 ret = i915_mutex_lock_interruptible(dev);
3316 if (ret)
3317 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003318
Chris Wilson05394f32010-11-08 19:18:58 +00003319 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003320 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003321 ret = -ENOENT;
3322 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003323 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003324
Chris Wilson05394f32010-11-08 19:18:58 +00003325 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003326 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3327 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003328 ret = -EINVAL;
3329 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003330 }
Chris Wilson05394f32010-11-08 19:18:58 +00003331 obj->user_pin_count--;
3332 if (obj->user_pin_count == 0) {
3333 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003334 i915_gem_object_unpin(obj);
3335 }
Eric Anholt673a3942008-07-30 12:06:12 -07003336
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003337out:
Chris Wilson05394f32010-11-08 19:18:58 +00003338 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003339unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003340 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003341 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003342}
3343
3344int
3345i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003346 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003347{
3348 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003349 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003350 int ret;
3351
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003352 ret = i915_mutex_lock_interruptible(dev);
3353 if (ret)
3354 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003355
Chris Wilson05394f32010-11-08 19:18:58 +00003356 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003357 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003358 ret = -ENOENT;
3359 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003360 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003361
Chris Wilson0be555b2010-08-04 15:36:30 +01003362 /* Count all active objects as busy, even if they are currently not used
3363 * by the gpu. Users of this interface expect objects to eventually
3364 * become non-busy without any further actions, therefore emit any
3365 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003366 */
Chris Wilson05394f32010-11-08 19:18:58 +00003367 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003368 if (args->busy) {
3369 /* Unconditionally flush objects, even when the gpu still uses this
3370 * object. Userspace calling this function indicates that it wants to
3371 * use this buffer rather sooner than later, so issuing the required
3372 * flush earlier is beneficial.
3373 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003374 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003375 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003376 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003377 } else if (obj->ring->outstanding_lazy_request ==
3378 obj->last_rendering_seqno) {
3379 struct drm_i915_gem_request *request;
3380
Chris Wilson7a194872010-12-07 10:38:40 +00003381 /* This ring is not being cleared by active usage,
3382 * so emit a request to do so.
3383 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003384 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003385 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003386 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003387 if (ret)
3388 kfree(request);
3389 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003390 ret = -ENOMEM;
3391 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003392
3393 /* Update the active list for the hardware's current position.
3394 * Otherwise this only updates on a delayed timer or when irqs
3395 * are actually unmasked, and our working set ends up being
3396 * larger than required.
3397 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003398 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003399
Chris Wilson05394f32010-11-08 19:18:58 +00003400 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003401 }
Eric Anholt673a3942008-07-30 12:06:12 -07003402
Chris Wilson05394f32010-11-08 19:18:58 +00003403 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003404unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003405 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003406 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003407}
3408
3409int
3410i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3411 struct drm_file *file_priv)
3412{
Akshay Joshi0206e352011-08-16 15:34:10 -04003413 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003414}
3415
Chris Wilson3ef94da2009-09-14 16:50:29 +01003416int
3417i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3418 struct drm_file *file_priv)
3419{
3420 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003421 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003422 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003423
3424 switch (args->madv) {
3425 case I915_MADV_DONTNEED:
3426 case I915_MADV_WILLNEED:
3427 break;
3428 default:
3429 return -EINVAL;
3430 }
3431
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003432 ret = i915_mutex_lock_interruptible(dev);
3433 if (ret)
3434 return ret;
3435
Chris Wilson05394f32010-11-08 19:18:58 +00003436 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003437 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003438 ret = -ENOENT;
3439 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003440 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003441
Chris Wilson05394f32010-11-08 19:18:58 +00003442 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003443 ret = -EINVAL;
3444 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003445 }
3446
Chris Wilson05394f32010-11-08 19:18:58 +00003447 if (obj->madv != __I915_MADV_PURGED)
3448 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003449
Chris Wilson2d7ef392009-09-20 23:13:10 +01003450 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003451 if (i915_gem_object_is_purgeable(obj) &&
3452 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003453 i915_gem_object_truncate(obj);
3454
Chris Wilson05394f32010-11-08 19:18:58 +00003455 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003456
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003457out:
Chris Wilson05394f32010-11-08 19:18:58 +00003458 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003459unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003460 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003461 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003462}
3463
Chris Wilson05394f32010-11-08 19:18:58 +00003464struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3465 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003466{
Chris Wilson73aa8082010-09-30 11:46:12 +01003467 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003468 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003469 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003470
3471 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3472 if (obj == NULL)
3473 return NULL;
3474
3475 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3476 kfree(obj);
3477 return NULL;
3478 }
3479
Hugh Dickins5949eac2011-06-27 16:18:18 -07003480 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3481 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3482
Chris Wilson73aa8082010-09-30 11:46:12 +01003483 i915_gem_info_add_obj(dev_priv, size);
3484
Daniel Vetterc397b902010-04-09 19:05:07 +00003485 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3486 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3487
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003488 if (HAS_LLC(dev)) {
3489 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003490 * cache) for about a 10% performance improvement
3491 * compared to uncached. Graphics requests other than
3492 * display scanout are coherent with the CPU in
3493 * accessing this cache. This means in this mode we
3494 * don't need to clflush on the CPU side, and on the
3495 * GPU side we only need to flush internal caches to
3496 * get data visible to the CPU.
3497 *
3498 * However, we maintain the display planes as UC, and so
3499 * need to rebind when first used as such.
3500 */
3501 obj->cache_level = I915_CACHE_LLC;
3502 } else
3503 obj->cache_level = I915_CACHE_NONE;
3504
Daniel Vetter62b8b212010-04-09 19:05:08 +00003505 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003506 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003507 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003508 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003509 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003510 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003511 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003512 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003513 /* Avoid an unnecessary call to unbind on the first bind. */
3514 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003515
Chris Wilson05394f32010-11-08 19:18:58 +00003516 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003517}
3518
Eric Anholt673a3942008-07-30 12:06:12 -07003519int i915_gem_init_object(struct drm_gem_object *obj)
3520{
Daniel Vetterc397b902010-04-09 19:05:07 +00003521 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003522
Eric Anholt673a3942008-07-30 12:06:12 -07003523 return 0;
3524}
3525
Chris Wilson05394f32010-11-08 19:18:58 +00003526static void i915_gem_free_object_tail(struct drm_i915_gem_object *obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003527{
Chris Wilson05394f32010-11-08 19:18:58 +00003528 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003529 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003530 int ret;
3531
3532 ret = i915_gem_object_unbind(obj);
3533 if (ret == -ERESTARTSYS) {
Chris Wilson05394f32010-11-08 19:18:58 +00003534 list_move(&obj->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01003535 &dev_priv->mm.deferred_free_list);
3536 return;
3537 }
3538
Chris Wilson26e12f892011-03-20 11:20:19 +00003539 trace_i915_gem_object_destroy(obj);
3540
Chris Wilson05394f32010-11-08 19:18:58 +00003541 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003542 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003543
Chris Wilson05394f32010-11-08 19:18:58 +00003544 drm_gem_object_release(&obj->base);
3545 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003546
Chris Wilson05394f32010-11-08 19:18:58 +00003547 kfree(obj->bit_17);
3548 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003549}
3550
Chris Wilson05394f32010-11-08 19:18:58 +00003551void i915_gem_free_object(struct drm_gem_object *gem_obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003552{
Chris Wilson05394f32010-11-08 19:18:58 +00003553 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
3554 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003555
Chris Wilson05394f32010-11-08 19:18:58 +00003556 while (obj->pin_count > 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003557 i915_gem_object_unpin(obj);
3558
Chris Wilson05394f32010-11-08 19:18:58 +00003559 if (obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003560 i915_gem_detach_phys_object(dev, obj);
3561
Chris Wilsonbe726152010-07-23 23:18:50 +01003562 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003563}
3564
Jesse Barnes5669fca2009-02-17 15:13:31 -08003565int
Eric Anholt673a3942008-07-30 12:06:12 -07003566i915_gem_idle(struct drm_device *dev)
3567{
3568 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003569 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003570
Keith Packard6dbe2772008-10-14 21:41:13 -07003571 mutex_lock(&dev->struct_mutex);
3572
Chris Wilson87acb0a2010-10-19 10:13:00 +01003573 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003574 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003575 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003576 }
Eric Anholt673a3942008-07-30 12:06:12 -07003577
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003578 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003579 if (ret) {
3580 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003581 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003582 }
Eric Anholt673a3942008-07-30 12:06:12 -07003583
Chris Wilson29105cc2010-01-07 10:39:13 +00003584 /* Under UMS, be paranoid and evict. */
3585 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003586 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003587 if (ret) {
3588 mutex_unlock(&dev->struct_mutex);
3589 return ret;
3590 }
3591 }
3592
Chris Wilson312817a2010-11-22 11:50:11 +00003593 i915_gem_reset_fences(dev);
3594
Chris Wilson29105cc2010-01-07 10:39:13 +00003595 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3596 * We need to replace this with a semaphore, or something.
3597 * And not confound mm.suspended!
3598 */
3599 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003600 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003601
3602 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003603 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003604
Keith Packard6dbe2772008-10-14 21:41:13 -07003605 mutex_unlock(&dev->struct_mutex);
3606
Chris Wilson29105cc2010-01-07 10:39:13 +00003607 /* Cancel the retire work handler, which should be idle now. */
3608 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3609
Eric Anholt673a3942008-07-30 12:06:12 -07003610 return 0;
3611}
3612
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003613void i915_gem_init_swizzling(struct drm_device *dev)
3614{
3615 drm_i915_private_t *dev_priv = dev->dev_private;
3616
Daniel Vetter11782b02012-01-31 16:47:55 +01003617 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003618 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3619 return;
3620
3621 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3622 DISP_TILE_SURFACE_SWIZZLING);
3623
Daniel Vetter11782b02012-01-31 16:47:55 +01003624 if (IS_GEN5(dev))
3625 return;
3626
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003627 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3628 if (IS_GEN6(dev))
3629 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_SNB));
3630 else
3631 I915_WRITE(ARB_MODE, ARB_MODE_ENABLE(ARB_MODE_SWIZZLE_IVB));
3632}
Daniel Vettere21af882012-02-09 20:53:27 +01003633
3634void i915_gem_init_ppgtt(struct drm_device *dev)
3635{
3636 drm_i915_private_t *dev_priv = dev->dev_private;
3637 uint32_t pd_offset;
3638 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003639 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3640 uint32_t __iomem *pd_addr;
3641 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003642 int i;
3643
3644 if (!dev_priv->mm.aliasing_ppgtt)
3645 return;
3646
Daniel Vetter55a254a2012-03-22 00:14:43 +01003647
3648 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3649 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3650 dma_addr_t pt_addr;
3651
3652 if (dev_priv->mm.gtt->needs_dmar)
3653 pt_addr = ppgtt->pt_dma_addr[i];
3654 else
3655 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3656
3657 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3658 pd_entry |= GEN6_PDE_VALID;
3659
3660 writel(pd_entry, pd_addr + i);
3661 }
3662 readl(pd_addr);
3663
3664 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003665 pd_offset /= 64; /* in cachelines, */
3666 pd_offset <<= 16;
3667
3668 if (INTEL_INFO(dev)->gen == 6) {
3669 uint32_t ecochk = I915_READ(GAM_ECOCHK);
3670 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3671 ECOCHK_PPGTT_CACHE64B);
3672 I915_WRITE(GFX_MODE, GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3673 } else if (INTEL_INFO(dev)->gen >= 7) {
3674 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3675 /* GFX_MODE is per-ring on gen7+ */
3676 }
3677
3678 for (i = 0; i < I915_NUM_RINGS; i++) {
3679 ring = &dev_priv->ring[i];
3680
3681 if (INTEL_INFO(dev)->gen >= 7)
3682 I915_WRITE(RING_MODE_GEN7(ring),
3683 GFX_MODE_ENABLE(GFX_PPGTT_ENABLE));
3684
3685 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3686 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3687 }
3688}
3689
Eric Anholt673a3942008-07-30 12:06:12 -07003690int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003691i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003692{
3693 drm_i915_private_t *dev_priv = dev->dev_private;
3694 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003695
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003696 i915_gem_init_swizzling(dev);
3697
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003698 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003699 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003700 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003701
3702 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003703 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003704 if (ret)
3705 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003706 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003707
Chris Wilson549f7362010-10-19 11:19:32 +01003708 if (HAS_BLT(dev)) {
3709 ret = intel_init_blt_ring_buffer(dev);
3710 if (ret)
3711 goto cleanup_bsd_ring;
3712 }
3713
Chris Wilson6f392d5482010-08-07 11:01:22 +01003714 dev_priv->next_seqno = 1;
3715
Daniel Vettere21af882012-02-09 20:53:27 +01003716 i915_gem_init_ppgtt(dev);
3717
Chris Wilson68f95ba2010-05-27 13:18:22 +01003718 return 0;
3719
Chris Wilson549f7362010-10-19 11:19:32 +01003720cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003721 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003722cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003723 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003724 return ret;
3725}
3726
3727void
3728i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3729{
3730 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003731 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003732
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003733 for (i = 0; i < I915_NUM_RINGS; i++)
3734 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003735}
3736
3737int
Eric Anholt673a3942008-07-30 12:06:12 -07003738i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3739 struct drm_file *file_priv)
3740{
3741 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003742 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003743
Jesse Barnes79e53942008-11-07 14:24:08 -08003744 if (drm_core_check_feature(dev, DRIVER_MODESET))
3745 return 0;
3746
Ben Gamariba1234d2009-09-14 17:48:47 -04003747 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003748 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003749 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003750 }
3751
Eric Anholt673a3942008-07-30 12:06:12 -07003752 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003753 dev_priv->mm.suspended = 0;
3754
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003755 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003756 if (ret != 0) {
3757 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003758 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003759 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003760
Chris Wilson69dc4982010-10-19 10:36:51 +01003761 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003762 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3763 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003764 for (i = 0; i < I915_NUM_RINGS; i++) {
3765 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3766 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3767 }
Eric Anholt673a3942008-07-30 12:06:12 -07003768 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003769
Chris Wilson5f353082010-06-07 14:03:03 +01003770 ret = drm_irq_install(dev);
3771 if (ret)
3772 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003773
Eric Anholt673a3942008-07-30 12:06:12 -07003774 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003775
3776cleanup_ringbuffer:
3777 mutex_lock(&dev->struct_mutex);
3778 i915_gem_cleanup_ringbuffer(dev);
3779 dev_priv->mm.suspended = 1;
3780 mutex_unlock(&dev->struct_mutex);
3781
3782 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003783}
3784
3785int
3786i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3787 struct drm_file *file_priv)
3788{
Jesse Barnes79e53942008-11-07 14:24:08 -08003789 if (drm_core_check_feature(dev, DRIVER_MODESET))
3790 return 0;
3791
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003792 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003793 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003794}
3795
3796void
3797i915_gem_lastclose(struct drm_device *dev)
3798{
3799 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003800
Eric Anholte806b492009-01-22 09:56:58 -08003801 if (drm_core_check_feature(dev, DRIVER_MODESET))
3802 return;
3803
Keith Packard6dbe2772008-10-14 21:41:13 -07003804 ret = i915_gem_idle(dev);
3805 if (ret)
3806 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003807}
3808
Chris Wilson64193402010-10-24 12:38:05 +01003809static void
3810init_ring_lists(struct intel_ring_buffer *ring)
3811{
3812 INIT_LIST_HEAD(&ring->active_list);
3813 INIT_LIST_HEAD(&ring->request_list);
3814 INIT_LIST_HEAD(&ring->gpu_write_list);
3815}
3816
Eric Anholt673a3942008-07-30 12:06:12 -07003817void
3818i915_gem_load(struct drm_device *dev)
3819{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003820 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003821 drm_i915_private_t *dev_priv = dev->dev_private;
3822
Chris Wilson69dc4982010-10-19 10:36:51 +01003823 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003824 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3825 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01003826 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003827 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01003828 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003829 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003830 for (i = 0; i < I915_NUM_RINGS; i++)
3831 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003832 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003833 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003834 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3835 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003836 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003837
Dave Airlie94400122010-07-20 13:15:31 +10003838 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3839 if (IS_GEN3(dev)) {
3840 u32 tmp = I915_READ(MI_ARB_STATE);
3841 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3842 /* arb state is a masked write, so set bit + bit in mask */
3843 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3844 I915_WRITE(MI_ARB_STATE, tmp);
3845 }
3846 }
3847
Chris Wilson72bfa192010-12-19 11:42:05 +00003848 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3849
Jesse Barnesde151cf2008-11-12 10:03:55 -08003850 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003851 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3852 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003853
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003854 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003855 dev_priv->num_fence_regs = 16;
3856 else
3857 dev_priv->num_fence_regs = 8;
3858
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003859 /* Initialize fence registers to zero */
Eric Anholt10ed13e2011-05-06 13:53:49 -07003860 for (i = 0; i < dev_priv->num_fence_regs; i++) {
3861 i915_gem_clear_fence_reg(dev, &dev_priv->fence_regs[i]);
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003862 }
Eric Anholt10ed13e2011-05-06 13:53:49 -07003863
Eric Anholt673a3942008-07-30 12:06:12 -07003864 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003865 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003866
Chris Wilsonce453d82011-02-21 14:43:56 +00003867 dev_priv->mm.interruptible = true;
3868
Chris Wilson17250b72010-10-28 12:51:39 +01003869 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3870 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3871 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003872}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003873
3874/*
3875 * Create a physically contiguous memory object for this object
3876 * e.g. for cursor + overlay regs
3877 */
Chris Wilson995b6762010-08-20 13:23:26 +01003878static int i915_gem_init_phys_object(struct drm_device *dev,
3879 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003880{
3881 drm_i915_private_t *dev_priv = dev->dev_private;
3882 struct drm_i915_gem_phys_object *phys_obj;
3883 int ret;
3884
3885 if (dev_priv->mm.phys_objs[id - 1] || !size)
3886 return 0;
3887
Eric Anholt9a298b22009-03-24 12:23:04 -07003888 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003889 if (!phys_obj)
3890 return -ENOMEM;
3891
3892 phys_obj->id = id;
3893
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003894 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003895 if (!phys_obj->handle) {
3896 ret = -ENOMEM;
3897 goto kfree_obj;
3898 }
3899#ifdef CONFIG_X86
3900 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3901#endif
3902
3903 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3904
3905 return 0;
3906kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003907 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003908 return ret;
3909}
3910
Chris Wilson995b6762010-08-20 13:23:26 +01003911static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003912{
3913 drm_i915_private_t *dev_priv = dev->dev_private;
3914 struct drm_i915_gem_phys_object *phys_obj;
3915
3916 if (!dev_priv->mm.phys_objs[id - 1])
3917 return;
3918
3919 phys_obj = dev_priv->mm.phys_objs[id - 1];
3920 if (phys_obj->cur_obj) {
3921 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3922 }
3923
3924#ifdef CONFIG_X86
3925 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3926#endif
3927 drm_pci_free(dev, phys_obj->handle);
3928 kfree(phys_obj);
3929 dev_priv->mm.phys_objs[id - 1] = NULL;
3930}
3931
3932void i915_gem_free_all_phys_object(struct drm_device *dev)
3933{
3934 int i;
3935
Dave Airlie260883c2009-01-22 17:58:49 +10003936 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003937 i915_gem_free_phys_object(dev, i);
3938}
3939
3940void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003941 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003942{
Chris Wilson05394f32010-11-08 19:18:58 +00003943 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003944 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003945 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003946 int page_count;
3947
Chris Wilson05394f32010-11-08 19:18:58 +00003948 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003949 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003950 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003951
Chris Wilson05394f32010-11-08 19:18:58 +00003952 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003953 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003954 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003955 if (!IS_ERR(page)) {
3956 char *dst = kmap_atomic(page);
3957 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3958 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003959
Chris Wilsone5281cc2010-10-28 13:45:36 +01003960 drm_clflush_pages(&page, 1);
3961
3962 set_page_dirty(page);
3963 mark_page_accessed(page);
3964 page_cache_release(page);
3965 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003966 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003967 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003968
Chris Wilson05394f32010-11-08 19:18:58 +00003969 obj->phys_obj->cur_obj = NULL;
3970 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003971}
3972
3973int
3974i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003975 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003976 int id,
3977 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003978{
Chris Wilson05394f32010-11-08 19:18:58 +00003979 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003980 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003981 int ret = 0;
3982 int page_count;
3983 int i;
3984
3985 if (id > I915_MAX_PHYS_OBJECT)
3986 return -EINVAL;
3987
Chris Wilson05394f32010-11-08 19:18:58 +00003988 if (obj->phys_obj) {
3989 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003990 return 0;
3991 i915_gem_detach_phys_object(dev, obj);
3992 }
3993
Dave Airlie71acb5e2008-12-30 20:31:46 +10003994 /* create a new object */
3995 if (!dev_priv->mm.phys_objs[id - 1]) {
3996 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003997 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003998 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003999 DRM_ERROR("failed to init phys object %d size: %zu\n",
4000 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004001 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004002 }
4003 }
4004
4005 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004006 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4007 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004008
Chris Wilson05394f32010-11-08 19:18:58 +00004009 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004010
4011 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004012 struct page *page;
4013 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004014
Hugh Dickins5949eac2011-06-27 16:18:18 -07004015 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004016 if (IS_ERR(page))
4017 return PTR_ERR(page);
4018
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004019 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004020 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004021 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004022 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004023
4024 mark_page_accessed(page);
4025 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004026 }
4027
4028 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004029}
4030
4031static int
Chris Wilson05394f32010-11-08 19:18:58 +00004032i915_gem_phys_pwrite(struct drm_device *dev,
4033 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004034 struct drm_i915_gem_pwrite *args,
4035 struct drm_file *file_priv)
4036{
Chris Wilson05394f32010-11-08 19:18:58 +00004037 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004038 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004039
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004040 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4041 unsigned long unwritten;
4042
4043 /* The physical object once assigned is fixed for the lifetime
4044 * of the obj, so we can safely drop the lock and continue
4045 * to access vaddr.
4046 */
4047 mutex_unlock(&dev->struct_mutex);
4048 unwritten = copy_from_user(vaddr, user_data, args->size);
4049 mutex_lock(&dev->struct_mutex);
4050 if (unwritten)
4051 return -EFAULT;
4052 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004053
Daniel Vetter40ce6572010-11-05 18:12:18 +01004054 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10004055 return 0;
4056}
Eric Anholtb9624422009-06-03 07:27:35 +00004057
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004058void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004059{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004060 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004061
4062 /* Clean up our request list when the client is going away, so that
4063 * later retire_requests won't dereference our soon-to-be-gone
4064 * file_priv.
4065 */
Chris Wilson1c255952010-09-26 11:03:27 +01004066 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004067 while (!list_empty(&file_priv->mm.request_list)) {
4068 struct drm_i915_gem_request *request;
4069
4070 request = list_first_entry(&file_priv->mm.request_list,
4071 struct drm_i915_gem_request,
4072 client_list);
4073 list_del(&request->client_list);
4074 request->file_priv = NULL;
4075 }
Chris Wilson1c255952010-09-26 11:03:27 +01004076 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004077}
Chris Wilson31169712009-09-14 16:50:28 +01004078
Chris Wilson31169712009-09-14 16:50:28 +01004079static int
Chris Wilson1637ef42010-04-20 17:10:35 +01004080i915_gpu_is_active(struct drm_device *dev)
4081{
4082 drm_i915_private_t *dev_priv = dev->dev_private;
4083 int lists_empty;
4084
Chris Wilson1637ef42010-04-20 17:10:35 +01004085 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01004086 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01004087
4088 return !lists_empty;
4089}
4090
4091static int
Ying Han1495f232011-05-24 17:12:27 -07004092i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004093{
Chris Wilson17250b72010-10-28 12:51:39 +01004094 struct drm_i915_private *dev_priv =
4095 container_of(shrinker,
4096 struct drm_i915_private,
4097 mm.inactive_shrinker);
4098 struct drm_device *dev = dev_priv->dev;
4099 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07004100 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01004101 int cnt;
4102
4103 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01004104 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01004105
4106 /* "fast-path" to count number of available objects */
4107 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01004108 cnt = 0;
4109 list_for_each_entry(obj,
4110 &dev_priv->mm.inactive_list,
4111 mm_list)
4112 cnt++;
4113 mutex_unlock(&dev->struct_mutex);
4114 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004115 }
4116
Chris Wilson1637ef42010-04-20 17:10:35 +01004117rescan:
Chris Wilson31169712009-09-14 16:50:28 +01004118 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01004119 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01004120
Chris Wilson17250b72010-10-28 12:51:39 +01004121 list_for_each_entry_safe(obj, next,
4122 &dev_priv->mm.inactive_list,
4123 mm_list) {
4124 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00004125 if (i915_gem_object_unbind(obj) == 0 &&
4126 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004127 break;
Chris Wilson31169712009-09-14 16:50:28 +01004128 }
Chris Wilson31169712009-09-14 16:50:28 +01004129 }
4130
4131 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01004132 cnt = 0;
4133 list_for_each_entry_safe(obj, next,
4134 &dev_priv->mm.inactive_list,
4135 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00004136 if (nr_to_scan &&
4137 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01004138 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00004139 else
Chris Wilson17250b72010-10-28 12:51:39 +01004140 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01004141 }
4142
Chris Wilson17250b72010-10-28 12:51:39 +01004143 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01004144 /*
4145 * We are desperate for pages, so as a last resort, wait
4146 * for the GPU to finish and discard whatever we can.
4147 * This has a dramatic impact to reduce the number of
4148 * OOM-killer events whilst running the GPU aggressively.
4149 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08004150 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01004151 goto rescan;
4152 }
Chris Wilson17250b72010-10-28 12:51:39 +01004153 mutex_unlock(&dev->struct_mutex);
4154 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01004155}