blob: 7c91bf2bbdfdb2e42460092610cb63d81a0499c5 [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"
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070035#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include <linux/pci.h>
Zhenyu Wangf8f235e2010-08-27 11:08:57 +080037#include <linux/intel-gtt.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson0f8c6d72010-11-01 12:38:44 +000039struct change_domains {
40 uint32_t invalidate_domains;
41 uint32_t flush_domains;
42 uint32_t flush_rings;
43};
44
Chris Wilsona00b10c2010-09-24 21:15:47 +010045static uint32_t i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj_priv);
46static uint32_t i915_gem_get_gtt_size(struct drm_i915_gem_object *obj_priv);
Daniel Vetterba3d8d72010-02-11 22:37:04 +010047
48static int i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj,
49 bool pipelined);
Eric Anholte47c68e2008-11-14 13:35:19 -080050static void i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj);
51static void i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj);
Eric Anholte47c68e2008-11-14 13:35:19 -080052static int i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj,
53 int write);
54static int i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
55 uint64_t offset,
56 uint64_t size);
57static void i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj);
Chris Wilson2cf34d72010-09-14 13:03:28 +010058static int i915_gem_object_wait_rendering(struct drm_gem_object *obj,
59 bool interruptible);
Jesse Barnesde151cf2008-11-12 10:03:55 -080060static int i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
Chris Wilsona00b10c2010-09-24 21:15:47 +010061 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +010062 bool map_and_fenceable);
Jesse Barnesde151cf2008-11-12 10:03:55 -080063static void i915_gem_clear_fence_reg(struct drm_gem_object *obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +100064static int i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
65 struct drm_i915_gem_pwrite *args,
66 struct drm_file *file_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +010067static void i915_gem_free_object_tail(struct drm_gem_object *obj);
Eric Anholt673a3942008-07-30 12:06:12 -070068
Chris Wilson17250b72010-10-28 12:51:39 +010069static int i915_gem_inactive_shrink(struct shrinker *shrinker,
70 int nr_to_scan,
71 gfp_t gfp_mask);
72
Chris Wilson31169712009-09-14 16:50:28 +010073
Chris Wilson73aa8082010-09-30 11:46:12 +010074/* some bookkeeping */
75static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
76 size_t size)
77{
78 dev_priv->mm.object_count++;
79 dev_priv->mm.object_memory += size;
80}
81
82static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
83 size_t size)
84{
85 dev_priv->mm.object_count--;
86 dev_priv->mm.object_memory -= size;
87}
88
89static void i915_gem_info_add_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +010090 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +010091{
92 dev_priv->mm.gtt_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +010093 dev_priv->mm.gtt_memory += obj->gtt_space->size;
94 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +020095 dev_priv->mm.mappable_gtt_used +=
Chris Wilsona00b10c2010-09-24 21:15:47 +010096 min_t(size_t, obj->gtt_space->size,
97 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +020098 }
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_gtt(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100102 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100103{
104 dev_priv->mm.gtt_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100105 dev_priv->mm.gtt_memory -= obj->gtt_space->size;
106 if (obj->gtt_offset < dev_priv->mm.gtt_mappable_end) {
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200107 dev_priv->mm.mappable_gtt_used -=
Chris Wilsona00b10c2010-09-24 21:15:47 +0100108 min_t(size_t, obj->gtt_space->size,
109 dev_priv->mm.gtt_mappable_end - obj->gtt_offset);
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200110 }
111}
112
113/**
114 * Update the mappable working set counters. Call _only_ when there is a change
115 * in one of (pin|fault)_mappable and update *_mappable _before_ calling.
116 * @mappable: new state the changed mappable flag (either pin_ or fault_).
117 */
118static void
119i915_gem_info_update_mappable(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100120 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200121 bool mappable)
122{
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200123 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100124 if (obj->pin_mappable && obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200125 /* Combined state was already mappable. */
126 return;
127 dev_priv->mm.gtt_mappable_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100128 dev_priv->mm.gtt_mappable_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200129 } else {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100130 if (obj->pin_mappable || obj->fault_mappable)
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200131 /* Combined state still mappable. */
132 return;
133 dev_priv->mm.gtt_mappable_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100134 dev_priv->mm.gtt_mappable_memory -= obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200135 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100136}
137
138static void i915_gem_info_add_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100139 struct drm_i915_gem_object *obj,
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200140 bool mappable)
Chris Wilson73aa8082010-09-30 11:46:12 +0100141{
142 dev_priv->mm.pin_count++;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100143 dev_priv->mm.pin_memory += obj->gtt_space->size;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200144 if (mappable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +0100145 obj->pin_mappable = true;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200146 i915_gem_info_update_mappable(dev_priv, obj, true);
147 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100148}
149
150static void i915_gem_info_remove_pin(struct drm_i915_private *dev_priv,
Chris Wilsona00b10c2010-09-24 21:15:47 +0100151 struct drm_i915_gem_object *obj)
Chris Wilson73aa8082010-09-30 11:46:12 +0100152{
153 dev_priv->mm.pin_count--;
Chris Wilsona00b10c2010-09-24 21:15:47 +0100154 dev_priv->mm.pin_memory -= obj->gtt_space->size;
155 if (obj->pin_mappable) {
156 obj->pin_mappable = false;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200157 i915_gem_info_update_mappable(dev_priv, obj, false);
158 }
Chris Wilson73aa8082010-09-30 11:46:12 +0100159}
160
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100161int
162i915_gem_check_is_wedged(struct drm_device *dev)
163{
164 struct drm_i915_private *dev_priv = dev->dev_private;
165 struct completion *x = &dev_priv->error_completion;
166 unsigned long flags;
167 int ret;
168
169 if (!atomic_read(&dev_priv->mm.wedged))
170 return 0;
171
172 ret = wait_for_completion_interruptible(x);
173 if (ret)
174 return ret;
175
176 /* Success, we reset the GPU! */
177 if (!atomic_read(&dev_priv->mm.wedged))
178 return 0;
179
180 /* GPU is hung, bump the completion count to account for
181 * the token we just consumed so that we never hit zero and
182 * end up waiting upon a subsequent completion event that
183 * will never happen.
184 */
185 spin_lock_irqsave(&x->wait.lock, flags);
186 x->done++;
187 spin_unlock_irqrestore(&x->wait.lock, flags);
188 return -EIO;
189}
190
Chris Wilson76c1dec2010-09-25 11:22:51 +0100191static int i915_mutex_lock_interruptible(struct drm_device *dev)
192{
193 struct drm_i915_private *dev_priv = dev->dev_private;
194 int ret;
195
196 ret = i915_gem_check_is_wedged(dev);
197 if (ret)
198 return ret;
199
200 ret = mutex_lock_interruptible(&dev->struct_mutex);
201 if (ret)
202 return ret;
203
204 if (atomic_read(&dev_priv->mm.wedged)) {
205 mutex_unlock(&dev->struct_mutex);
206 return -EAGAIN;
207 }
208
Chris Wilson23bc5982010-09-29 16:10:57 +0100209 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100210 return 0;
211}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100212
Chris Wilson7d1c4802010-08-07 21:45:03 +0100213static inline bool
214i915_gem_object_is_inactive(struct drm_i915_gem_object *obj_priv)
215{
216 return obj_priv->gtt_space &&
217 !obj_priv->active &&
218 obj_priv->pin_count == 0;
219}
220
Chris Wilson73aa8082010-09-30 11:46:12 +0100221int i915_gem_do_init(struct drm_device *dev,
222 unsigned long start,
Daniel Vetter53984632010-09-22 23:44:24 +0200223 unsigned long mappable_end,
Jesse Barnes79e53942008-11-07 14:24:08 -0800224 unsigned long end)
225{
226 drm_i915_private_t *dev_priv = dev->dev_private;
227
228 if (start >= end ||
229 (start & (PAGE_SIZE - 1)) != 0 ||
230 (end & (PAGE_SIZE - 1)) != 0) {
231 return -EINVAL;
232 }
233
234 drm_mm_init(&dev_priv->mm.gtt_space, start,
235 end - start);
236
Chris Wilson73aa8082010-09-30 11:46:12 +0100237 dev_priv->mm.gtt_total = end - start;
Daniel Vetterfb7d5162010-10-01 22:05:20 +0200238 dev_priv->mm.mappable_gtt_total = min(end, mappable_end) - start;
Daniel Vetter53984632010-09-22 23:44:24 +0200239 dev_priv->mm.gtt_mappable_end = mappable_end;
Jesse Barnes79e53942008-11-07 14:24:08 -0800240
241 return 0;
242}
Keith Packard6dbe2772008-10-14 21:41:13 -0700243
Eric Anholt673a3942008-07-30 12:06:12 -0700244int
245i915_gem_init_ioctl(struct drm_device *dev, void *data,
246 struct drm_file *file_priv)
247{
Eric Anholt673a3942008-07-30 12:06:12 -0700248 struct drm_i915_gem_init *args = data;
Jesse Barnes79e53942008-11-07 14:24:08 -0800249 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700250
251 mutex_lock(&dev->struct_mutex);
Daniel Vetter53984632010-09-22 23:44:24 +0200252 ret = i915_gem_do_init(dev, args->gtt_start, args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700253 mutex_unlock(&dev->struct_mutex);
254
Jesse Barnes79e53942008-11-07 14:24:08 -0800255 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700256}
257
Eric Anholt5a125c32008-10-22 21:40:13 -0700258int
259i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
260 struct drm_file *file_priv)
261{
Chris Wilson73aa8082010-09-30 11:46:12 +0100262 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700263 struct drm_i915_gem_get_aperture *args = data;
Eric Anholt5a125c32008-10-22 21:40:13 -0700264
265 if (!(dev->driver->driver_features & DRIVER_GEM))
266 return -ENODEV;
267
Chris Wilson73aa8082010-09-30 11:46:12 +0100268 mutex_lock(&dev->struct_mutex);
269 args->aper_size = dev_priv->mm.gtt_total;
270 args->aper_available_size = args->aper_size - dev_priv->mm.pin_memory;
271 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700272
273 return 0;
274}
275
Eric Anholt673a3942008-07-30 12:06:12 -0700276
277/**
278 * Creates a new mm object and returns a handle to it.
279 */
280int
281i915_gem_create_ioctl(struct drm_device *dev, void *data,
282 struct drm_file *file_priv)
283{
284 struct drm_i915_gem_create *args = data;
285 struct drm_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300286 int ret;
287 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700288
289 args->size = roundup(args->size, PAGE_SIZE);
290
291 /* Allocate the new object */
Daniel Vetterac52bc52010-04-09 19:05:06 +0000292 obj = i915_gem_alloc_object(dev, args->size);
Eric Anholt673a3942008-07-30 12:06:12 -0700293 if (obj == NULL)
294 return -ENOMEM;
295
296 ret = drm_gem_handle_create(file_priv, obj, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100297 if (ret) {
Chris Wilson202f2fe2010-10-14 13:20:40 +0100298 drm_gem_object_release(obj);
299 i915_gem_info_remove_obj(dev->dev_private, obj->size);
300 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700301 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100302 }
303
Chris Wilson202f2fe2010-10-14 13:20:40 +0100304 /* drop reference from allocate - handle holds it now */
305 drm_gem_object_unreference(obj);
306 trace_i915_gem_object_create(obj);
307
Eric Anholt673a3942008-07-30 12:06:12 -0700308 args->handle = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700309 return 0;
310}
311
Eric Anholt280b7132009-03-12 16:56:27 -0700312static int i915_gem_object_needs_bit17_swizzle(struct drm_gem_object *obj)
313{
314 drm_i915_private_t *dev_priv = obj->dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +0100315 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt280b7132009-03-12 16:56:27 -0700316
317 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
318 obj_priv->tiling_mode != I915_TILING_NONE;
319}
320
Chris Wilson99a03df2010-05-27 14:15:34 +0100321static inline void
Eric Anholt40123c12009-03-09 13:42:30 -0700322slow_shmem_copy(struct page *dst_page,
323 int dst_offset,
324 struct page *src_page,
325 int src_offset,
326 int length)
327{
328 char *dst_vaddr, *src_vaddr;
329
Chris Wilson99a03df2010-05-27 14:15:34 +0100330 dst_vaddr = kmap(dst_page);
331 src_vaddr = kmap(src_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700332
333 memcpy(dst_vaddr + dst_offset, src_vaddr + src_offset, length);
334
Chris Wilson99a03df2010-05-27 14:15:34 +0100335 kunmap(src_page);
336 kunmap(dst_page);
Eric Anholt40123c12009-03-09 13:42:30 -0700337}
338
Chris Wilson99a03df2010-05-27 14:15:34 +0100339static inline void
Eric Anholt280b7132009-03-12 16:56:27 -0700340slow_shmem_bit17_copy(struct page *gpu_page,
341 int gpu_offset,
342 struct page *cpu_page,
343 int cpu_offset,
344 int length,
345 int is_read)
346{
347 char *gpu_vaddr, *cpu_vaddr;
348
349 /* Use the unswizzled path if this page isn't affected. */
350 if ((page_to_phys(gpu_page) & (1 << 17)) == 0) {
351 if (is_read)
352 return slow_shmem_copy(cpu_page, cpu_offset,
353 gpu_page, gpu_offset, length);
354 else
355 return slow_shmem_copy(gpu_page, gpu_offset,
356 cpu_page, cpu_offset, length);
357 }
358
Chris Wilson99a03df2010-05-27 14:15:34 +0100359 gpu_vaddr = kmap(gpu_page);
360 cpu_vaddr = kmap(cpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700361
362 /* Copy the data, XORing A6 with A17 (1). The user already knows he's
363 * XORing with the other bits (A9 for Y, A9 and A10 for X)
364 */
365 while (length > 0) {
366 int cacheline_end = ALIGN(gpu_offset + 1, 64);
367 int this_length = min(cacheline_end - gpu_offset, length);
368 int swizzled_gpu_offset = gpu_offset ^ 64;
369
370 if (is_read) {
371 memcpy(cpu_vaddr + cpu_offset,
372 gpu_vaddr + swizzled_gpu_offset,
373 this_length);
374 } else {
375 memcpy(gpu_vaddr + swizzled_gpu_offset,
376 cpu_vaddr + cpu_offset,
377 this_length);
378 }
379 cpu_offset += this_length;
380 gpu_offset += this_length;
381 length -= this_length;
382 }
383
Chris Wilson99a03df2010-05-27 14:15:34 +0100384 kunmap(cpu_page);
385 kunmap(gpu_page);
Eric Anholt280b7132009-03-12 16:56:27 -0700386}
387
Eric Anholt673a3942008-07-30 12:06:12 -0700388/**
Eric Anholteb014592009-03-10 11:44:52 -0700389 * This is the fast shmem pread path, which attempts to copy_from_user directly
390 * from the backing pages of the object to the user's address space. On a
391 * fault, it fails so we can fall back to i915_gem_shmem_pwrite_slow().
392 */
393static int
394i915_gem_shmem_pread_fast(struct drm_device *dev, struct drm_gem_object *obj,
395 struct drm_i915_gem_pread *args,
396 struct drm_file *file_priv)
397{
Daniel Vetter23010e42010-03-08 13:35:02 +0100398 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100399 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Eric Anholteb014592009-03-10 11:44:52 -0700400 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100401 loff_t offset;
Eric Anholteb014592009-03-10 11:44:52 -0700402 char __user *user_data;
403 int page_offset, page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700404
405 user_data = (char __user *) (uintptr_t) args->data_ptr;
406 remain = args->size;
407
Daniel Vetter23010e42010-03-08 13:35:02 +0100408 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700409 offset = args->offset;
410
411 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100412 struct page *page;
413 char *vaddr;
414 int ret;
415
Eric Anholteb014592009-03-10 11:44:52 -0700416 /* Operation in this page
417 *
Eric Anholteb014592009-03-10 11:44:52 -0700418 * page_offset = offset within page
419 * page_length = bytes to copy for this page
420 */
Eric Anholteb014592009-03-10 11:44:52 -0700421 page_offset = offset & (PAGE_SIZE-1);
422 page_length = remain;
423 if ((page_offset + remain) > PAGE_SIZE)
424 page_length = PAGE_SIZE - page_offset;
425
Chris Wilsone5281cc2010-10-28 13:45:36 +0100426 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
427 GFP_HIGHUSER | __GFP_RECLAIMABLE);
428 if (IS_ERR(page))
429 return PTR_ERR(page);
430
431 vaddr = kmap_atomic(page);
432 ret = __copy_to_user_inatomic(user_data,
433 vaddr + page_offset,
434 page_length);
435 kunmap_atomic(vaddr);
436
437 mark_page_accessed(page);
438 page_cache_release(page);
439 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100440 return -EFAULT;
Eric Anholteb014592009-03-10 11:44:52 -0700441
442 remain -= page_length;
443 user_data += page_length;
444 offset += page_length;
445 }
446
Chris Wilson4f27b752010-10-14 15:26:45 +0100447 return 0;
Eric Anholteb014592009-03-10 11:44:52 -0700448}
449
450/**
451 * This is the fallback shmem pread path, which allocates temporary storage
452 * in kernel space to copy_to_user into outside of the struct_mutex, so we
453 * can copy out of the object's backing pages while holding the struct mutex
454 * and not take page faults.
455 */
456static int
457i915_gem_shmem_pread_slow(struct drm_device *dev, struct drm_gem_object *obj,
458 struct drm_i915_gem_pread *args,
459 struct drm_file *file_priv)
460{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100461 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100462 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700463 struct mm_struct *mm = current->mm;
464 struct page **user_pages;
465 ssize_t remain;
466 loff_t offset, pinned_pages, i;
467 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100468 int shmem_page_offset;
469 int data_page_index, data_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700470 int page_length;
471 int ret;
472 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700473 int do_bit17_swizzling;
Eric Anholteb014592009-03-10 11:44:52 -0700474
475 remain = args->size;
476
477 /* Pin the user pages containing the data. We can't fault while
478 * holding the struct mutex, yet we want to hold it while
479 * dereferencing the user data.
480 */
481 first_data_page = data_ptr / PAGE_SIZE;
482 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
483 num_pages = last_data_page - first_data_page + 1;
484
Chris Wilson4f27b752010-10-14 15:26:45 +0100485 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholteb014592009-03-10 11:44:52 -0700486 if (user_pages == NULL)
487 return -ENOMEM;
488
Chris Wilson4f27b752010-10-14 15:26:45 +0100489 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700490 down_read(&mm->mmap_sem);
491 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
Eric Anholte5e9ecd2009-04-07 16:01:22 -0700492 num_pages, 1, 0, user_pages, NULL);
Eric Anholteb014592009-03-10 11:44:52 -0700493 up_read(&mm->mmap_sem);
Chris Wilson4f27b752010-10-14 15:26:45 +0100494 mutex_lock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700495 if (pinned_pages < num_pages) {
496 ret = -EFAULT;
Chris Wilson4f27b752010-10-14 15:26:45 +0100497 goto out;
Eric Anholteb014592009-03-10 11:44:52 -0700498 }
499
Chris Wilson4f27b752010-10-14 15:26:45 +0100500 ret = i915_gem_object_set_cpu_read_domain_range(obj,
501 args->offset,
Eric Anholteb014592009-03-10 11:44:52 -0700502 args->size);
Chris Wilson4f27b752010-10-14 15:26:45 +0100503 if (ret)
504 goto out;
505
506 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700507
Daniel Vetter23010e42010-03-08 13:35:02 +0100508 obj_priv = to_intel_bo(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700509 offset = args->offset;
510
511 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100512 struct page *page;
513
Eric Anholteb014592009-03-10 11:44:52 -0700514 /* Operation in this page
515 *
Eric Anholteb014592009-03-10 11:44:52 -0700516 * shmem_page_offset = offset within page in shmem file
517 * data_page_index = page number in get_user_pages return
518 * data_page_offset = offset with data_page_index page.
519 * page_length = bytes to copy for this page
520 */
Eric Anholteb014592009-03-10 11:44:52 -0700521 shmem_page_offset = offset & ~PAGE_MASK;
522 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
523 data_page_offset = data_ptr & ~PAGE_MASK;
524
525 page_length = remain;
526 if ((shmem_page_offset + page_length) > PAGE_SIZE)
527 page_length = PAGE_SIZE - shmem_page_offset;
528 if ((data_page_offset + page_length) > PAGE_SIZE)
529 page_length = PAGE_SIZE - data_page_offset;
530
Chris Wilsone5281cc2010-10-28 13:45:36 +0100531 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
532 GFP_HIGHUSER | __GFP_RECLAIMABLE);
533 if (IS_ERR(page))
534 return PTR_ERR(page);
535
Eric Anholt280b7132009-03-12 16:56:27 -0700536 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100537 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700538 shmem_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100539 user_pages[data_page_index],
540 data_page_offset,
541 page_length,
542 1);
543 } else {
544 slow_shmem_copy(user_pages[data_page_index],
545 data_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100546 page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100547 shmem_page_offset,
548 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700549 }
Eric Anholteb014592009-03-10 11:44:52 -0700550
Chris Wilsone5281cc2010-10-28 13:45:36 +0100551 mark_page_accessed(page);
552 page_cache_release(page);
553
Eric Anholteb014592009-03-10 11:44:52 -0700554 remain -= page_length;
555 data_ptr += page_length;
556 offset += page_length;
557 }
558
Chris Wilson4f27b752010-10-14 15:26:45 +0100559out:
Eric Anholteb014592009-03-10 11:44:52 -0700560 for (i = 0; i < pinned_pages; i++) {
561 SetPageDirty(user_pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100562 mark_page_accessed(user_pages[i]);
Eric Anholteb014592009-03-10 11:44:52 -0700563 page_cache_release(user_pages[i]);
564 }
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700565 drm_free_large(user_pages);
Eric Anholteb014592009-03-10 11:44:52 -0700566
567 return ret;
568}
569
Eric Anholt673a3942008-07-30 12:06:12 -0700570/**
571 * Reads data from the object referenced by handle.
572 *
573 * On error, the contents of *data are undefined.
574 */
575int
576i915_gem_pread_ioctl(struct drm_device *dev, void *data,
577 struct drm_file *file_priv)
578{
579 struct drm_i915_gem_pread *args = data;
580 struct drm_gem_object *obj;
581 struct drm_i915_gem_object *obj_priv;
Chris Wilson35b62a82010-09-26 20:23:38 +0100582 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700583
Chris Wilson4f27b752010-10-14 15:26:45 +0100584 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100585 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100586 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700587
588 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100589 if (obj == NULL) {
590 ret = -ENOENT;
591 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100592 }
Daniel Vetter23010e42010-03-08 13:35:02 +0100593 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700594
Chris Wilson7dcd2492010-09-26 20:21:44 +0100595 /* Bounds check source. */
596 if (args->offset > obj->size || args->size > obj->size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100597 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100598 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100599 }
600
Chris Wilson35b62a82010-09-26 20:23:38 +0100601 if (args->size == 0)
602 goto out;
603
Chris Wilsonce9d4192010-09-26 20:50:05 +0100604 if (!access_ok(VERIFY_WRITE,
605 (char __user *)(uintptr_t)args->data_ptr,
606 args->size)) {
607 ret = -EFAULT;
Chris Wilson35b62a82010-09-26 20:23:38 +0100608 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -0700609 }
610
Chris Wilsonb5e4feb2010-10-14 13:47:43 +0100611 ret = fault_in_pages_writeable((char __user *)(uintptr_t)args->data_ptr,
612 args->size);
613 if (ret) {
614 ret = -EFAULT;
615 goto out;
616 }
617
Chris Wilson4f27b752010-10-14 15:26:45 +0100618 ret = i915_gem_object_set_cpu_read_domain_range(obj,
619 args->offset,
620 args->size);
621 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +0100622 goto out;
Chris Wilson4f27b752010-10-14 15:26:45 +0100623
624 ret = -EFAULT;
625 if (!i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -0700626 ret = i915_gem_shmem_pread_fast(dev, obj, args, file_priv);
Chris Wilson4f27b752010-10-14 15:26:45 +0100627 if (ret == -EFAULT)
628 ret = i915_gem_shmem_pread_slow(dev, obj, args, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -0700629
Chris Wilson35b62a82010-09-26 20:23:38 +0100630out:
Chris Wilson4f27b752010-10-14 15:26:45 +0100631 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100632unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100633 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700634 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700635}
636
Keith Packard0839ccb2008-10-30 19:38:48 -0700637/* This is the fast write path which cannot handle
638 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700639 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700640
Keith Packard0839ccb2008-10-30 19:38:48 -0700641static inline int
642fast_user_write(struct io_mapping *mapping,
643 loff_t page_base, int page_offset,
644 char __user *user_data,
645 int length)
646{
647 char *vaddr_atomic;
648 unsigned long unwritten;
649
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700650 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Keith Packard0839ccb2008-10-30 19:38:48 -0700651 unwritten = __copy_from_user_inatomic_nocache(vaddr_atomic + page_offset,
652 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700653 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100654 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700655}
656
657/* Here's the write path which can sleep for
658 * page faults
659 */
660
Chris Wilsonab34c222010-05-27 14:15:35 +0100661static inline void
Eric Anholt3de09aa2009-03-09 09:42:23 -0700662slow_kernel_write(struct io_mapping *mapping,
663 loff_t gtt_base, int gtt_offset,
664 struct page *user_page, int user_offset,
665 int length)
Keith Packard0839ccb2008-10-30 19:38:48 -0700666{
Chris Wilsonab34c222010-05-27 14:15:35 +0100667 char __iomem *dst_vaddr;
668 char *src_vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700669
Chris Wilsonab34c222010-05-27 14:15:35 +0100670 dst_vaddr = io_mapping_map_wc(mapping, gtt_base);
671 src_vaddr = kmap(user_page);
672
673 memcpy_toio(dst_vaddr + gtt_offset,
674 src_vaddr + user_offset,
675 length);
676
677 kunmap(user_page);
678 io_mapping_unmap(dst_vaddr);
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700679}
680
Eric Anholt3de09aa2009-03-09 09:42:23 -0700681/**
682 * This is the fast pwrite path, where we copy the data directly from the
683 * user into the GTT, uncached.
684 */
Eric Anholt673a3942008-07-30 12:06:12 -0700685static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700686i915_gem_gtt_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
687 struct drm_i915_gem_pwrite *args,
688 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700689{
Daniel Vetter23010e42010-03-08 13:35:02 +0100690 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Keith Packard0839ccb2008-10-30 19:38:48 -0700691 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700692 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700693 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700694 char __user *user_data;
Keith Packard0839ccb2008-10-30 19:38:48 -0700695 int page_offset, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700696
697 user_data = (char __user *) (uintptr_t) args->data_ptr;
698 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700699
Daniel Vetter23010e42010-03-08 13:35:02 +0100700 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700701 offset = obj_priv->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700702
703 while (remain > 0) {
704 /* Operation in this page
705 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700706 * page_base = page offset within aperture
707 * page_offset = offset within page
708 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700709 */
Keith Packard0839ccb2008-10-30 19:38:48 -0700710 page_base = (offset & ~(PAGE_SIZE-1));
711 page_offset = offset & (PAGE_SIZE-1);
712 page_length = remain;
713 if ((page_offset + remain) > PAGE_SIZE)
714 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700715
Keith Packard0839ccb2008-10-30 19:38:48 -0700716 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700717 * source page isn't available. Return the error and we'll
718 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700719 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100720 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
721 page_offset, user_data, page_length))
722
723 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700724
Keith Packard0839ccb2008-10-30 19:38:48 -0700725 remain -= page_length;
726 user_data += page_length;
727 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700728 }
Eric Anholt673a3942008-07-30 12:06:12 -0700729
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100730 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700731}
732
Eric Anholt3de09aa2009-03-09 09:42:23 -0700733/**
734 * This is the fallback GTT pwrite path, which uses get_user_pages to pin
735 * the memory and maps it using kmap_atomic for copying.
736 *
737 * This code resulted in x11perf -rgb10text consuming about 10% more CPU
738 * than using i915_gem_gtt_pwrite_fast on a G45 (32-bit).
739 */
Eric Anholt3043c602008-10-02 12:24:47 -0700740static int
Eric Anholt3de09aa2009-03-09 09:42:23 -0700741i915_gem_gtt_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
742 struct drm_i915_gem_pwrite *args,
743 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700744{
Daniel Vetter23010e42010-03-08 13:35:02 +0100745 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700746 drm_i915_private_t *dev_priv = dev->dev_private;
747 ssize_t remain;
748 loff_t gtt_page_base, offset;
749 loff_t first_data_page, last_data_page, num_pages;
750 loff_t pinned_pages, i;
751 struct page **user_pages;
752 struct mm_struct *mm = current->mm;
753 int gtt_page_offset, data_page_offset, data_page_index, page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700754 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700755 uint64_t data_ptr = args->data_ptr;
756
757 remain = args->size;
758
759 /* Pin the user pages containing the data. We can't fault while
760 * holding the struct mutex, and all of the pwrite implementations
761 * want to hold it while dereferencing the user data.
762 */
763 first_data_page = data_ptr / PAGE_SIZE;
764 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
765 num_pages = last_data_page - first_data_page + 1;
766
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100767 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt3de09aa2009-03-09 09:42:23 -0700768 if (user_pages == NULL)
769 return -ENOMEM;
770
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100771 mutex_unlock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700772 down_read(&mm->mmap_sem);
773 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
774 num_pages, 0, 0, user_pages, NULL);
775 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100776 mutex_lock(&dev->struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700777 if (pinned_pages < num_pages) {
778 ret = -EFAULT;
779 goto out_unpin_pages;
780 }
781
Eric Anholt3de09aa2009-03-09 09:42:23 -0700782 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
783 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100784 goto out_unpin_pages;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700785
Daniel Vetter23010e42010-03-08 13:35:02 +0100786 obj_priv = to_intel_bo(obj);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700787 offset = obj_priv->gtt_offset + args->offset;
788
789 while (remain > 0) {
790 /* Operation in this page
791 *
792 * gtt_page_base = page offset within aperture
793 * gtt_page_offset = offset within page in aperture
794 * data_page_index = page number in get_user_pages return
795 * data_page_offset = offset with data_page_index page.
796 * page_length = bytes to copy for this page
797 */
798 gtt_page_base = offset & PAGE_MASK;
799 gtt_page_offset = offset & ~PAGE_MASK;
800 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
801 data_page_offset = data_ptr & ~PAGE_MASK;
802
803 page_length = remain;
804 if ((gtt_page_offset + page_length) > PAGE_SIZE)
805 page_length = PAGE_SIZE - gtt_page_offset;
806 if ((data_page_offset + page_length) > PAGE_SIZE)
807 page_length = PAGE_SIZE - data_page_offset;
808
Chris Wilsonab34c222010-05-27 14:15:35 +0100809 slow_kernel_write(dev_priv->mm.gtt_mapping,
810 gtt_page_base, gtt_page_offset,
811 user_pages[data_page_index],
812 data_page_offset,
813 page_length);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700814
815 remain -= page_length;
816 offset += page_length;
817 data_ptr += page_length;
818 }
819
Eric Anholt3de09aa2009-03-09 09:42:23 -0700820out_unpin_pages:
821 for (i = 0; i < pinned_pages; i++)
822 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -0700823 drm_free_large(user_pages);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700824
825 return ret;
826}
827
Eric Anholt40123c12009-03-09 13:42:30 -0700828/**
829 * This is the fast shmem pwrite path, which attempts to directly
830 * copy_from_user into the kmapped pages backing the object.
831 */
Eric Anholt673a3942008-07-30 12:06:12 -0700832static int
Eric Anholt40123c12009-03-09 13:42:30 -0700833i915_gem_shmem_pwrite_fast(struct drm_device *dev, struct drm_gem_object *obj,
834 struct drm_i915_gem_pwrite *args,
835 struct drm_file *file_priv)
Eric Anholt673a3942008-07-30 12:06:12 -0700836{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100837 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100838 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700839 ssize_t remain;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100840 loff_t offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700841 char __user *user_data;
842 int page_offset, page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700843
844 user_data = (char __user *) (uintptr_t) args->data_ptr;
845 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700846
Daniel Vetter23010e42010-03-08 13:35:02 +0100847 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700848 offset = args->offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700849 obj_priv->dirty = 1;
Eric Anholt673a3942008-07-30 12:06:12 -0700850
Eric Anholt40123c12009-03-09 13:42:30 -0700851 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100852 struct page *page;
853 char *vaddr;
854 int ret;
855
Eric Anholt40123c12009-03-09 13:42:30 -0700856 /* Operation in this page
857 *
Eric Anholt40123c12009-03-09 13:42:30 -0700858 * page_offset = offset within page
859 * page_length = bytes to copy for this page
860 */
Eric Anholt40123c12009-03-09 13:42:30 -0700861 page_offset = offset & (PAGE_SIZE-1);
862 page_length = remain;
863 if ((page_offset + remain) > PAGE_SIZE)
864 page_length = PAGE_SIZE - page_offset;
865
Chris Wilsone5281cc2010-10-28 13:45:36 +0100866 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
867 GFP_HIGHUSER | __GFP_RECLAIMABLE);
868 if (IS_ERR(page))
869 return PTR_ERR(page);
870
871 vaddr = kmap_atomic(page, KM_USER0);
872 ret = __copy_from_user_inatomic(vaddr + page_offset,
873 user_data,
874 page_length);
875 kunmap_atomic(vaddr, KM_USER0);
876
877 set_page_dirty(page);
878 mark_page_accessed(page);
879 page_cache_release(page);
880
881 /* If we get a fault while copying data, then (presumably) our
882 * source page isn't available. Return the error and we'll
883 * retry in the slow path.
884 */
885 if (ret)
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100886 return -EFAULT;
Eric Anholt40123c12009-03-09 13:42:30 -0700887
888 remain -= page_length;
889 user_data += page_length;
890 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700891 }
892
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100893 return 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700894}
895
896/**
897 * This is the fallback shmem pwrite path, which uses get_user_pages to pin
898 * the memory and maps it using kmap_atomic for copying.
899 *
900 * This avoids taking mmap_sem for faulting on the user's address while the
901 * struct_mutex is held.
902 */
903static int
904i915_gem_shmem_pwrite_slow(struct drm_device *dev, struct drm_gem_object *obj,
905 struct drm_i915_gem_pwrite *args,
906 struct drm_file *file_priv)
907{
Chris Wilsone5281cc2010-10-28 13:45:36 +0100908 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter23010e42010-03-08 13:35:02 +0100909 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700910 struct mm_struct *mm = current->mm;
911 struct page **user_pages;
912 ssize_t remain;
913 loff_t offset, pinned_pages, i;
914 loff_t first_data_page, last_data_page, num_pages;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100915 int shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700916 int data_page_index, data_page_offset;
917 int page_length;
918 int ret;
919 uint64_t data_ptr = args->data_ptr;
Eric Anholt280b7132009-03-12 16:56:27 -0700920 int do_bit17_swizzling;
Eric Anholt40123c12009-03-09 13:42:30 -0700921
922 remain = args->size;
923
924 /* Pin the user pages containing the data. We can't fault while
925 * holding the struct mutex, and all of the pwrite implementations
926 * want to hold it while dereferencing the user data.
927 */
928 first_data_page = data_ptr / PAGE_SIZE;
929 last_data_page = (data_ptr + args->size - 1) / PAGE_SIZE;
930 num_pages = last_data_page - first_data_page + 1;
931
Chris Wilson4f27b752010-10-14 15:26:45 +0100932 user_pages = drm_malloc_ab(num_pages, sizeof(struct page *));
Eric Anholt40123c12009-03-09 13:42:30 -0700933 if (user_pages == NULL)
934 return -ENOMEM;
935
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100936 mutex_unlock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700937 down_read(&mm->mmap_sem);
938 pinned_pages = get_user_pages(current, mm, (uintptr_t)args->data_ptr,
939 num_pages, 0, 0, user_pages, NULL);
940 up_read(&mm->mmap_sem);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100941 mutex_lock(&dev->struct_mutex);
Eric Anholt40123c12009-03-09 13:42:30 -0700942 if (pinned_pages < num_pages) {
943 ret = -EFAULT;
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100944 goto out;
Eric Anholt40123c12009-03-09 13:42:30 -0700945 }
946
Eric Anholt40123c12009-03-09 13:42:30 -0700947 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100948 if (ret)
949 goto out;
950
951 do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700952
Daniel Vetter23010e42010-03-08 13:35:02 +0100953 obj_priv = to_intel_bo(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700954 offset = args->offset;
955 obj_priv->dirty = 1;
956
957 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100958 struct page *page;
959
Eric Anholt40123c12009-03-09 13:42:30 -0700960 /* Operation in this page
961 *
Eric Anholt40123c12009-03-09 13:42:30 -0700962 * shmem_page_offset = offset within page in shmem file
963 * data_page_index = page number in get_user_pages return
964 * data_page_offset = offset with data_page_index page.
965 * page_length = bytes to copy for this page
966 */
Eric Anholt40123c12009-03-09 13:42:30 -0700967 shmem_page_offset = offset & ~PAGE_MASK;
968 data_page_index = data_ptr / PAGE_SIZE - first_data_page;
969 data_page_offset = data_ptr & ~PAGE_MASK;
970
971 page_length = remain;
972 if ((shmem_page_offset + page_length) > PAGE_SIZE)
973 page_length = PAGE_SIZE - shmem_page_offset;
974 if ((data_page_offset + page_length) > PAGE_SIZE)
975 page_length = PAGE_SIZE - data_page_offset;
976
Chris Wilsone5281cc2010-10-28 13:45:36 +0100977 page = read_cache_page_gfp(mapping, offset >> PAGE_SHIFT,
978 GFP_HIGHUSER | __GFP_RECLAIMABLE);
979 if (IS_ERR(page)) {
980 ret = PTR_ERR(page);
981 goto out;
982 }
983
Eric Anholt280b7132009-03-12 16:56:27 -0700984 if (do_bit17_swizzling) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100985 slow_shmem_bit17_copy(page,
Eric Anholt280b7132009-03-12 16:56:27 -0700986 shmem_page_offset,
987 user_pages[data_page_index],
988 data_page_offset,
Chris Wilson99a03df2010-05-27 14:15:34 +0100989 page_length,
990 0);
991 } else {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100992 slow_shmem_copy(page,
Chris Wilson99a03df2010-05-27 14:15:34 +0100993 shmem_page_offset,
994 user_pages[data_page_index],
995 data_page_offset,
996 page_length);
Eric Anholt280b7132009-03-12 16:56:27 -0700997 }
Eric Anholt40123c12009-03-09 13:42:30 -0700998
Chris Wilsone5281cc2010-10-28 13:45:36 +0100999 set_page_dirty(page);
1000 mark_page_accessed(page);
1001 page_cache_release(page);
1002
Eric Anholt40123c12009-03-09 13:42:30 -07001003 remain -= page_length;
1004 data_ptr += page_length;
1005 offset += page_length;
1006 }
1007
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001008out:
Eric Anholt40123c12009-03-09 13:42:30 -07001009 for (i = 0; i < pinned_pages; i++)
1010 page_cache_release(user_pages[i]);
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001011 drm_free_large(user_pages);
Eric Anholt40123c12009-03-09 13:42:30 -07001012
1013 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001014}
1015
1016/**
1017 * Writes data to the object referenced by handle.
1018 *
1019 * On error, the contents of the buffer that were to be modified are undefined.
1020 */
1021int
1022i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001023 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001024{
1025 struct drm_i915_gem_pwrite *args = data;
1026 struct drm_gem_object *obj;
1027 struct drm_i915_gem_object *obj_priv;
1028 int ret = 0;
1029
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001030 ret = i915_mutex_lock_interruptible(dev);
1031 if (ret)
1032 return ret;
1033
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001034 obj = drm_gem_object_lookup(dev, file, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001035 if (obj == NULL) {
1036 ret = -ENOENT;
1037 goto unlock;
1038 }
Daniel Vetter23010e42010-03-08 13:35:02 +01001039 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001040
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001041
Chris Wilson7dcd2492010-09-26 20:21:44 +01001042 /* Bounds check destination. */
1043 if (args->offset > obj->size || args->size > obj->size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001044 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001045 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001046 }
1047
Chris Wilson35b62a82010-09-26 20:23:38 +01001048 if (args->size == 0)
1049 goto out;
1050
Chris Wilsonce9d4192010-09-26 20:50:05 +01001051 if (!access_ok(VERIFY_READ,
1052 (char __user *)(uintptr_t)args->data_ptr,
1053 args->size)) {
1054 ret = -EFAULT;
Chris Wilson35b62a82010-09-26 20:23:38 +01001055 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07001056 }
1057
Chris Wilsonb5e4feb2010-10-14 13:47:43 +01001058 ret = fault_in_pages_readable((char __user *)(uintptr_t)args->data_ptr,
1059 args->size);
1060 if (ret) {
1061 ret = -EFAULT;
1062 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07001063 }
1064
1065 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1066 * it would end up going through the fenced access, and we'll get
1067 * different detiling behavior between reading and writing.
1068 * pread/pwrite currently are reading and writing from the CPU
1069 * perspective, requiring manual detiling by the client.
1070 */
Dave Airlie71acb5e2008-12-30 20:31:46 +10001071 if (obj_priv->phys_obj)
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001072 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Dave Airlie71acb5e2008-12-30 20:31:46 +10001073 else if (obj_priv->tiling_mode == I915_TILING_NONE &&
Chris Wilson5cdf5882010-09-27 15:51:07 +01001074 obj_priv->gtt_space &&
Chris Wilson9b8c4a02010-05-27 14:21:01 +01001075 obj->write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001076 ret = i915_gem_object_pin(obj, 0, true);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001077 if (ret)
1078 goto out;
1079
1080 ret = i915_gem_object_set_to_gtt_domain(obj, 1);
1081 if (ret)
1082 goto out_unpin;
1083
1084 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
1085 if (ret == -EFAULT)
1086 ret = i915_gem_gtt_pwrite_slow(dev, obj, args, file);
1087
1088out_unpin:
1089 i915_gem_object_unpin(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001090 } else {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001091 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
1092 if (ret)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001093 goto out;
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001094
1095 ret = -EFAULT;
1096 if (!i915_gem_object_needs_bit17_swizzle(obj))
1097 ret = i915_gem_shmem_pwrite_fast(dev, obj, args, file);
1098 if (ret == -EFAULT)
1099 ret = i915_gem_shmem_pwrite_slow(dev, obj, args, file);
Eric Anholt40123c12009-03-09 13:42:30 -07001100 }
Eric Anholt673a3942008-07-30 12:06:12 -07001101
Chris Wilson35b62a82010-09-26 20:23:38 +01001102out:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001103 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001104unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001105 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001106 return ret;
1107}
1108
1109/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001110 * Called when user space prepares to use an object with the CPU, either
1111 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001112 */
1113int
1114i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
1115 struct drm_file *file_priv)
1116{
Eric Anholta09ba7f2009-08-29 12:49:51 -07001117 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001118 struct drm_i915_gem_set_domain *args = data;
1119 struct drm_gem_object *obj;
Jesse Barnes652c3932009-08-17 13:31:43 -07001120 struct drm_i915_gem_object *obj_priv;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001121 uint32_t read_domains = args->read_domains;
1122 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001123 int ret;
1124
1125 if (!(dev->driver->driver_features & DRIVER_GEM))
1126 return -ENODEV;
1127
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001128 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001129 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001130 return -EINVAL;
1131
Chris Wilson21d509e2009-06-06 09:46:02 +01001132 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001133 return -EINVAL;
1134
1135 /* Having something in the write domain implies it's in the read
1136 * domain, and only that read domain. Enforce that in the request.
1137 */
1138 if (write_domain != 0 && read_domains != write_domain)
1139 return -EINVAL;
1140
Chris Wilson76c1dec2010-09-25 11:22:51 +01001141 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001142 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001143 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001144
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001145 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1146 if (obj == NULL) {
1147 ret = -ENOENT;
1148 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001149 }
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001150 obj_priv = to_intel_bo(obj);
Jesse Barnes652c3932009-08-17 13:31:43 -07001151
1152 intel_mark_busy(dev, obj);
1153
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001154 if (read_domains & I915_GEM_DOMAIN_GTT) {
1155 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001156
Eric Anholta09ba7f2009-08-29 12:49:51 -07001157 /* Update the LRU on the fence for the CPU access that's
1158 * about to occur.
1159 */
1160 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001161 struct drm_i915_fence_reg *reg =
1162 &dev_priv->fence_regs[obj_priv->fence_reg];
1163 list_move_tail(&reg->lru_list,
Eric Anholta09ba7f2009-08-29 12:49:51 -07001164 &dev_priv->mm.fence_list);
1165 }
1166
Eric Anholt02354392008-11-26 13:58:13 -08001167 /* Silently promote "you're not bound, there was nothing to do"
1168 * to success, since the client was just asking us to
1169 * make sure everything was done.
1170 */
1171 if (ret == -EINVAL)
1172 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001173 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001174 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001175 }
1176
Chris Wilson7d1c4802010-08-07 21:45:03 +01001177 /* Maintain LRU order of "inactive" objects */
1178 if (ret == 0 && i915_gem_object_is_inactive(obj_priv))
Chris Wilson69dc4982010-10-19 10:36:51 +01001179 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001180
Eric Anholt673a3942008-07-30 12:06:12 -07001181 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001182unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001183 mutex_unlock(&dev->struct_mutex);
1184 return ret;
1185}
1186
1187/**
1188 * Called when user space has done writes to this buffer
1189 */
1190int
1191i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
1192 struct drm_file *file_priv)
1193{
1194 struct drm_i915_gem_sw_finish *args = data;
1195 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001196 int ret = 0;
1197
1198 if (!(dev->driver->driver_features & DRIVER_GEM))
1199 return -ENODEV;
1200
Chris Wilson76c1dec2010-09-25 11:22:51 +01001201 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001202 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001203 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001204
Eric Anholt673a3942008-07-30 12:06:12 -07001205 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1206 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001207 ret = -ENOENT;
1208 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001209 }
1210
Eric Anholt673a3942008-07-30 12:06:12 -07001211 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson3d2a8122010-09-29 11:39:53 +01001212 if (to_intel_bo(obj)->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001213 i915_gem_object_flush_cpu_write_domain(obj);
1214
Eric Anholt673a3942008-07-30 12:06:12 -07001215 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001216unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001217 mutex_unlock(&dev->struct_mutex);
1218 return ret;
1219}
1220
1221/**
1222 * Maps the contents of an object, returning the address it is mapped
1223 * into.
1224 *
1225 * While the mapping holds a reference on the contents of the object, it doesn't
1226 * imply a ref on the object itself.
1227 */
1228int
1229i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
1230 struct drm_file *file_priv)
1231{
Chris Wilsonda761a62010-10-27 17:37:08 +01001232 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001233 struct drm_i915_gem_mmap *args = data;
1234 struct drm_gem_object *obj;
1235 loff_t offset;
1236 unsigned long addr;
1237
1238 if (!(dev->driver->driver_features & DRIVER_GEM))
1239 return -ENODEV;
1240
1241 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
1242 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001243 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001244
Chris Wilsonda761a62010-10-27 17:37:08 +01001245 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1246 drm_gem_object_unreference_unlocked(obj);
1247 return -E2BIG;
1248 }
1249
Eric Anholt673a3942008-07-30 12:06:12 -07001250 offset = args->offset;
1251
1252 down_write(&current->mm->mmap_sem);
1253 addr = do_mmap(obj->filp, 0, args->size,
1254 PROT_READ | PROT_WRITE, MAP_SHARED,
1255 args->offset);
1256 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001257 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001258 if (IS_ERR((void *)addr))
1259 return addr;
1260
1261 args->addr_ptr = (uint64_t) addr;
1262
1263 return 0;
1264}
1265
Jesse Barnesde151cf2008-11-12 10:03:55 -08001266/**
1267 * i915_gem_fault - fault a page into the GTT
1268 * vma: VMA in question
1269 * vmf: fault info
1270 *
1271 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1272 * from userspace. The fault handler takes care of binding the object to
1273 * the GTT (if needed), allocating and programming a fence register (again,
1274 * only if needed based on whether the old reg is still valid or the object
1275 * is tiled) and inserting a new PTE into the faulting process.
1276 *
1277 * Note that the faulting process may involve evicting existing objects
1278 * from the GTT and/or fence registers to make room. So performance may
1279 * suffer if the GTT working set is large or there are few fence registers
1280 * left.
1281 */
1282int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1283{
1284 struct drm_gem_object *obj = vma->vm_private_data;
1285 struct drm_device *dev = obj->dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001286 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001287 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001288 pgoff_t page_offset;
1289 unsigned long pfn;
1290 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001291 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001292
1293 /* We don't use vmf->pgoff since that has the fake offset */
1294 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1295 PAGE_SHIFT;
1296
1297 /* Now bind it into the GTT if needed */
1298 mutex_lock(&dev->struct_mutex);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001299 BUG_ON(obj_priv->pin_count && !obj_priv->pin_mappable);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001300
1301 if (obj_priv->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001302 if (!obj_priv->map_and_fenceable) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01001303 ret = i915_gem_object_unbind(obj);
1304 if (ret)
1305 goto unlock;
1306 }
1307 }
Daniel Vetter16e809a2010-09-16 19:37:04 +02001308
Jesse Barnesde151cf2008-11-12 10:03:55 -08001309 if (!obj_priv->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001310 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001311 if (ret)
1312 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001313 }
1314
Chris Wilson4a684a42010-10-28 14:44:08 +01001315 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1316 if (ret)
1317 goto unlock;
1318
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001319 if (!obj_priv->fault_mappable) {
1320 obj_priv->fault_mappable = true;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001321 i915_gem_info_update_mappable(dev_priv, obj_priv, true);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001322 }
1323
Jesse Barnesde151cf2008-11-12 10:03:55 -08001324 /* Need a new fence register? */
Eric Anholta09ba7f2009-08-29 12:49:51 -07001325 if (obj_priv->tiling_mode != I915_TILING_NONE) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01001326 ret = i915_gem_object_get_fence_reg(obj, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001327 if (ret)
1328 goto unlock;
Eric Anholtd9ddcb92009-01-27 10:33:49 -08001329 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001330
Chris Wilson7d1c4802010-08-07 21:45:03 +01001331 if (i915_gem_object_is_inactive(obj_priv))
Chris Wilson69dc4982010-10-19 10:36:51 +01001332 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001333
Jesse Barnesde151cf2008-11-12 10:03:55 -08001334 pfn = ((dev->agp->base + obj_priv->gtt_offset) >> PAGE_SHIFT) +
1335 page_offset;
1336
1337 /* Finally, remap it using the new GTT offset */
1338 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001339unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001340 mutex_unlock(&dev->struct_mutex);
1341
1342 switch (ret) {
Chris Wilson045e7692010-11-07 09:18:22 +00001343 case -EAGAIN:
1344 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001345 case 0:
1346 case -ERESTARTSYS:
1347 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001348 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001349 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001350 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001351 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001352 }
1353}
1354
1355/**
1356 * i915_gem_create_mmap_offset - create a fake mmap offset for an object
1357 * @obj: obj in question
1358 *
1359 * GEM memory mapping works by handing back to userspace a fake mmap offset
1360 * it can use in a subsequent mmap(2) call. The DRM core code then looks
1361 * up the object based on the offset and sets up the various memory mapping
1362 * structures.
1363 *
1364 * This routine allocates and attaches a fake offset for @obj.
1365 */
1366static int
1367i915_gem_create_mmap_offset(struct drm_gem_object *obj)
1368{
1369 struct drm_device *dev = obj->dev;
1370 struct drm_gem_mm *mm = dev->mm_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001371 struct drm_map_list *list;
Benjamin Herrenschmidtf77d3902009-02-02 16:55:46 +11001372 struct drm_local_map *map;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001373 int ret = 0;
1374
1375 /* Set the object up for mmap'ing */
1376 list = &obj->map_list;
Eric Anholt9a298b22009-03-24 12:23:04 -07001377 list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001378 if (!list->map)
1379 return -ENOMEM;
1380
1381 map = list->map;
1382 map->type = _DRM_GEM;
1383 map->size = obj->size;
1384 map->handle = obj;
1385
1386 /* Get a DRM GEM mmap offset allocated... */
1387 list->file_offset_node = drm_mm_search_free(&mm->offset_manager,
1388 obj->size / PAGE_SIZE, 0, 0);
1389 if (!list->file_offset_node) {
1390 DRM_ERROR("failed to allocate offset for bo %d\n", obj->name);
Chris Wilson9e0ae532010-09-21 15:05:24 +01001391 ret = -ENOSPC;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001392 goto out_free_list;
1393 }
1394
1395 list->file_offset_node = drm_mm_get_block(list->file_offset_node,
1396 obj->size / PAGE_SIZE, 0);
1397 if (!list->file_offset_node) {
1398 ret = -ENOMEM;
1399 goto out_free_list;
1400 }
1401
1402 list->hash.key = list->file_offset_node->start;
Chris Wilson9e0ae532010-09-21 15:05:24 +01001403 ret = drm_ht_insert_item(&mm->offset_hash, &list->hash);
1404 if (ret) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001405 DRM_ERROR("failed to add to map hash\n");
1406 goto out_free_mm;
1407 }
1408
Jesse Barnesde151cf2008-11-12 10:03:55 -08001409 return 0;
1410
1411out_free_mm:
1412 drm_mm_put_block(list->file_offset_node);
1413out_free_list:
Eric Anholt9a298b22009-03-24 12:23:04 -07001414 kfree(list->map);
Chris Wilson39a01d12010-10-28 13:03:06 +01001415 list->map = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001416
1417 return ret;
1418}
1419
Chris Wilson901782b2009-07-10 08:18:50 +01001420/**
1421 * i915_gem_release_mmap - remove physical page mappings
1422 * @obj: obj in question
1423 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001424 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001425 * relinquish ownership of the pages back to the system.
1426 *
1427 * It is vital that we remove the page mapping if we have mapped a tiled
1428 * object through the GTT and then lose the fence register due to
1429 * resource pressure. Similarly if the object has been moved out of the
1430 * aperture, than pages mapped into userspace must be revoked. Removing the
1431 * mapping will then trigger a page fault on the next user access, allowing
1432 * fixup by i915_gem_fault().
1433 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001434void
Chris Wilson901782b2009-07-10 08:18:50 +01001435i915_gem_release_mmap(struct drm_gem_object *obj)
1436{
1437 struct drm_device *dev = obj->dev;
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001438 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001439 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson901782b2009-07-10 08:18:50 +01001440
Chris Wilson39a01d12010-10-28 13:03:06 +01001441 if (unlikely(obj->map_list.map && dev->dev_mapping))
Chris Wilson901782b2009-07-10 08:18:50 +01001442 unmap_mapping_range(dev->dev_mapping,
Chris Wilson39a01d12010-10-28 13:03:06 +01001443 (loff_t)obj->map_list.hash.key<<PAGE_SHIFT,
1444 obj->size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001445
1446 if (obj_priv->fault_mappable) {
1447 obj_priv->fault_mappable = false;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001448 i915_gem_info_update_mappable(dev_priv, obj_priv, false);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001449 }
Chris Wilson901782b2009-07-10 08:18:50 +01001450}
1451
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001452static void
1453i915_gem_free_mmap_offset(struct drm_gem_object *obj)
1454{
1455 struct drm_device *dev = obj->dev;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001456 struct drm_gem_mm *mm = dev->mm_private;
Chris Wilson39a01d12010-10-28 13:03:06 +01001457 struct drm_map_list *list = &obj->map_list;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001458
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001459 drm_ht_remove_item(&mm->offset_hash, &list->hash);
Chris Wilson39a01d12010-10-28 13:03:06 +01001460 drm_mm_put_block(list->file_offset_node);
1461 kfree(list->map);
1462 list->map = NULL;
Jesse Barnesab00b3e2009-02-11 14:01:46 -08001463}
1464
Jesse Barnesde151cf2008-11-12 10:03:55 -08001465/**
1466 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1467 * @obj: object to check
1468 *
1469 * Return the required GTT alignment for an object, taking into account
1470 * potential fence register mapping if needed.
1471 */
1472static uint32_t
Chris Wilsona00b10c2010-09-24 21:15:47 +01001473i915_gem_get_gtt_alignment(struct drm_i915_gem_object *obj_priv)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001474{
Chris Wilsona00b10c2010-09-24 21:15:47 +01001475 struct drm_device *dev = obj_priv->base.dev;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001476
1477 /*
1478 * Minimum alignment is 4k (GTT page size), but might be greater
1479 * if a fence register is needed for the object.
1480 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001481 if (INTEL_INFO(dev)->gen >= 4 ||
1482 obj_priv->tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001483 return 4096;
1484
1485 /*
1486 * Previous chips need to be aligned to the size of the smallest
1487 * fence register that can contain the object.
1488 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001489 return i915_gem_get_gtt_size(obj_priv);
1490}
1491
1492static uint32_t
1493i915_gem_get_gtt_size(struct drm_i915_gem_object *obj_priv)
1494{
1495 struct drm_device *dev = obj_priv->base.dev;
1496 uint32_t size;
1497
1498 /*
1499 * Minimum alignment is 4k (GTT page size), but might be greater
1500 * if a fence register is needed for the object.
1501 */
1502 if (INTEL_INFO(dev)->gen >= 4)
1503 return obj_priv->base.size;
1504
1505 /*
1506 * Previous chips need to be aligned to the size of the smallest
1507 * fence register that can contain the object.
1508 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001509 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsona00b10c2010-09-24 21:15:47 +01001510 size = 1024*1024;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001511 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01001512 size = 512*1024;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001513
Chris Wilsona00b10c2010-09-24 21:15:47 +01001514 while (size < obj_priv->base.size)
1515 size <<= 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001516
Chris Wilsona00b10c2010-09-24 21:15:47 +01001517 return size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001518}
1519
1520/**
1521 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1522 * @dev: DRM device
1523 * @data: GTT mapping ioctl data
1524 * @file_priv: GEM object info
1525 *
1526 * Simply returns the fake offset to userspace so it can mmap it.
1527 * The mmap call will end up in drm_gem_mmap(), which will set things
1528 * up so we can get faults in the handler above.
1529 *
1530 * The fault handler will take care of binding the object into the GTT
1531 * (since it may have been evicted to make room for something), allocating
1532 * a fence register, and mapping the appropriate aperture address into
1533 * userspace.
1534 */
1535int
1536i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1537 struct drm_file *file_priv)
1538{
Chris Wilsonda761a62010-10-27 17:37:08 +01001539 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001540 struct drm_i915_gem_mmap_gtt *args = data;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001541 struct drm_gem_object *obj;
1542 struct drm_i915_gem_object *obj_priv;
1543 int ret;
1544
1545 if (!(dev->driver->driver_features & DRIVER_GEM))
1546 return -ENODEV;
1547
Chris Wilson76c1dec2010-09-25 11:22:51 +01001548 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001549 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001550 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001551
Jesse Barnesde151cf2008-11-12 10:03:55 -08001552 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001553 if (obj == NULL) {
1554 ret = -ENOENT;
1555 goto unlock;
1556 }
Daniel Vetter23010e42010-03-08 13:35:02 +01001557 obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001558
Chris Wilsonda761a62010-10-27 17:37:08 +01001559 if (obj->size > dev_priv->mm.gtt_mappable_end) {
1560 ret = -E2BIG;
1561 goto unlock;
1562 }
1563
Chris Wilsonab182822009-09-22 18:46:17 +01001564 if (obj_priv->madv != I915_MADV_WILLNEED) {
1565 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001566 ret = -EINVAL;
1567 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001568 }
1569
Chris Wilson39a01d12010-10-28 13:03:06 +01001570 if (!obj->map_list.map) {
Jesse Barnesde151cf2008-11-12 10:03:55 -08001571 ret = i915_gem_create_mmap_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001572 if (ret)
1573 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001574 }
1575
Chris Wilson39a01d12010-10-28 13:03:06 +01001576 args->offset = (u64)obj->map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001577
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001578out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001579 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001580unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001581 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001582 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001583}
1584
Chris Wilsone5281cc2010-10-28 13:45:36 +01001585static int
1586i915_gem_object_get_pages_gtt(struct drm_gem_object *obj,
1587 gfp_t gfpmask)
1588{
1589 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
1590 int page_count, i;
1591 struct address_space *mapping;
1592 struct inode *inode;
1593 struct page *page;
1594
1595 /* Get the list of pages out of our struct file. They'll be pinned
1596 * at this point until we release them.
1597 */
1598 page_count = obj->size / PAGE_SIZE;
1599 BUG_ON(obj_priv->pages != NULL);
1600 obj_priv->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1601 if (obj_priv->pages == NULL)
1602 return -ENOMEM;
1603
1604 inode = obj->filp->f_path.dentry->d_inode;
1605 mapping = inode->i_mapping;
1606 for (i = 0; i < page_count; i++) {
1607 page = read_cache_page_gfp(mapping, i,
1608 GFP_HIGHUSER |
1609 __GFP_COLD |
1610 __GFP_RECLAIMABLE |
1611 gfpmask);
1612 if (IS_ERR(page))
1613 goto err_pages;
1614
1615 obj_priv->pages[i] = page;
1616 }
1617
1618 if (obj_priv->tiling_mode != I915_TILING_NONE)
1619 i915_gem_object_do_bit_17_swizzle(obj);
1620
1621 return 0;
1622
1623err_pages:
1624 while (i--)
1625 page_cache_release(obj_priv->pages[i]);
1626
1627 drm_free_large(obj_priv->pages);
1628 obj_priv->pages = NULL;
1629 return PTR_ERR(page);
1630}
1631
Chris Wilson5cdf5882010-09-27 15:51:07 +01001632static void
Chris Wilsone5281cc2010-10-28 13:45:36 +01001633i915_gem_object_put_pages_gtt(struct drm_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001634{
Daniel Vetter23010e42010-03-08 13:35:02 +01001635 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001636 int page_count = obj->size / PAGE_SIZE;
1637 int i;
1638
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001639 BUG_ON(obj_priv->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001640
Eric Anholt280b7132009-03-12 16:56:27 -07001641 if (obj_priv->tiling_mode != I915_TILING_NONE)
1642 i915_gem_object_save_bit_17_swizzle(obj);
1643
Chris Wilson3ef94da2009-09-14 16:50:29 +01001644 if (obj_priv->madv == I915_MADV_DONTNEED)
Chris Wilson13a05fd2009-09-20 23:03:19 +01001645 obj_priv->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001646
1647 for (i = 0; i < page_count; i++) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01001648 if (obj_priv->dirty)
1649 set_page_dirty(obj_priv->pages[i]);
1650
1651 if (obj_priv->madv == I915_MADV_WILLNEED)
Eric Anholt856fa192009-03-19 14:10:50 -07001652 mark_page_accessed(obj_priv->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001653
1654 page_cache_release(obj_priv->pages[i]);
1655 }
Eric Anholt673a3942008-07-30 12:06:12 -07001656 obj_priv->dirty = 0;
1657
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07001658 drm_free_large(obj_priv->pages);
Eric Anholt856fa192009-03-19 14:10:50 -07001659 obj_priv->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001660}
1661
Chris Wilsona56ba562010-09-28 10:07:56 +01001662static uint32_t
1663i915_gem_next_request_seqno(struct drm_device *dev,
1664 struct intel_ring_buffer *ring)
1665{
1666 drm_i915_private_t *dev_priv = dev->dev_private;
1667
1668 ring->outstanding_lazy_request = true;
1669 return dev_priv->next_seqno;
1670}
1671
Eric Anholt673a3942008-07-30 12:06:12 -07001672static void
Daniel Vetter617dbe22010-02-11 22:16:02 +01001673i915_gem_object_move_to_active(struct drm_gem_object *obj,
Zou Nan hai852835f2010-05-21 09:08:56 +08001674 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001675{
1676 struct drm_device *dev = obj->dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001677 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001678 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona56ba562010-09-28 10:07:56 +01001679 uint32_t seqno = i915_gem_next_request_seqno(dev, ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001680
Zou Nan hai852835f2010-05-21 09:08:56 +08001681 BUG_ON(ring == NULL);
1682 obj_priv->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001683
1684 /* Add a reference if we're newly entering the active list. */
1685 if (!obj_priv->active) {
1686 drm_gem_object_reference(obj);
1687 obj_priv->active = 1;
1688 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001689
Eric Anholt673a3942008-07-30 12:06:12 -07001690 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson69dc4982010-10-19 10:36:51 +01001691 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.active_list);
1692 list_move_tail(&obj_priv->ring_list, &ring->active_list);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001693 obj_priv->last_rendering_seqno = seqno;
Eric Anholt673a3942008-07-30 12:06:12 -07001694}
1695
Eric Anholtce44b0e2008-11-06 16:00:31 -08001696static void
1697i915_gem_object_move_to_flushing(struct drm_gem_object *obj)
1698{
1699 struct drm_device *dev = obj->dev;
1700 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001701 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001702
1703 BUG_ON(!obj_priv->active);
Chris Wilson69dc4982010-10-19 10:36:51 +01001704 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.flushing_list);
1705 list_del_init(&obj_priv->ring_list);
Eric Anholtce44b0e2008-11-06 16:00:31 -08001706 obj_priv->last_rendering_seqno = 0;
1707}
Eric Anholt673a3942008-07-30 12:06:12 -07001708
Chris Wilson963b4832009-09-20 23:03:54 +01001709/* Immediately discard the backing storage */
1710static void
1711i915_gem_object_truncate(struct drm_gem_object *obj)
1712{
Daniel Vetter23010e42010-03-08 13:35:02 +01001713 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001714 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001715
Chris Wilsonae9fed62010-08-07 11:01:30 +01001716 /* Our goal here is to return as much of the memory as
1717 * is possible back to the system as we are called from OOM.
1718 * To do this we must instruct the shmfs to drop all of its
1719 * backing pages, *now*. Here we mirror the actions taken
1720 * when by shmem_delete_inode() to release the backing store.
1721 */
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001722 inode = obj->filp->f_path.dentry->d_inode;
Chris Wilsonae9fed62010-08-07 11:01:30 +01001723 truncate_inode_pages(inode->i_mapping, 0);
1724 if (inode->i_op->truncate_range)
1725 inode->i_op->truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001726
1727 obj_priv->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001728}
1729
1730static inline int
1731i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj_priv)
1732{
1733 return obj_priv->madv == I915_MADV_DONTNEED;
1734}
1735
Eric Anholt673a3942008-07-30 12:06:12 -07001736static void
1737i915_gem_object_move_to_inactive(struct drm_gem_object *obj)
1738{
1739 struct drm_device *dev = obj->dev;
1740 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01001741 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001742
Eric Anholt673a3942008-07-30 12:06:12 -07001743 if (obj_priv->pin_count != 0)
Chris Wilson69dc4982010-10-19 10:36:51 +01001744 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001745 else
Chris Wilson69dc4982010-10-19 10:36:51 +01001746 list_move_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
1747 list_del_init(&obj_priv->ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001748
Daniel Vetter99fcb762010-02-07 16:20:18 +01001749 BUG_ON(!list_empty(&obj_priv->gpu_write_list));
1750
Eric Anholtce44b0e2008-11-06 16:00:31 -08001751 obj_priv->last_rendering_seqno = 0;
Zou Nan hai852835f2010-05-21 09:08:56 +08001752 obj_priv->ring = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001753 if (obj_priv->active) {
1754 obj_priv->active = 0;
1755 drm_gem_object_unreference(obj);
1756 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001757 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001758}
1759
Daniel Vetter63560392010-02-19 11:51:59 +01001760static void
1761i915_gem_process_flushing_list(struct drm_device *dev,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001762 uint32_t flush_domains,
Zou Nan hai852835f2010-05-21 09:08:56 +08001763 struct intel_ring_buffer *ring)
Daniel Vetter63560392010-02-19 11:51:59 +01001764{
1765 drm_i915_private_t *dev_priv = dev->dev_private;
1766 struct drm_i915_gem_object *obj_priv, *next;
1767
1768 list_for_each_entry_safe(obj_priv, next,
Chris Wilson64193402010-10-24 12:38:05 +01001769 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001770 gpu_write_list) {
Daniel Vettera8089e82010-04-09 19:05:09 +00001771 struct drm_gem_object *obj = &obj_priv->base;
Daniel Vetter63560392010-02-19 11:51:59 +01001772
Chris Wilson64193402010-10-24 12:38:05 +01001773 if (obj->write_domain & flush_domains) {
Daniel Vetter63560392010-02-19 11:51:59 +01001774 uint32_t old_write_domain = obj->write_domain;
1775
1776 obj->write_domain = 0;
1777 list_del_init(&obj_priv->gpu_write_list);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001778 i915_gem_object_move_to_active(obj, ring);
Daniel Vetter63560392010-02-19 11:51:59 +01001779
1780 /* update the fence lru list */
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001781 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
1782 struct drm_i915_fence_reg *reg =
1783 &dev_priv->fence_regs[obj_priv->fence_reg];
1784 list_move_tail(&reg->lru_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001785 &dev_priv->mm.fence_list);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02001786 }
Daniel Vetter63560392010-02-19 11:51:59 +01001787
1788 trace_i915_gem_object_change_domain(obj,
1789 obj->read_domains,
1790 old_write_domain);
1791 }
1792 }
1793}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001794
Chris Wilson3cce4692010-10-27 16:11:02 +01001795int
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001796i915_add_request(struct drm_device *dev,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001797 struct drm_file *file,
Chris Wilson8dc5d142010-08-12 12:36:12 +01001798 struct drm_i915_gem_request *request,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001799 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001800{
1801 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001802 struct drm_i915_file_private *file_priv = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001803 uint32_t seqno;
1804 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001805 int ret;
1806
1807 BUG_ON(request == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07001808
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001809 if (file != NULL)
1810 file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001811
Chris Wilson3cce4692010-10-27 16:11:02 +01001812 ret = ring->add_request(ring, &seqno);
1813 if (ret)
1814 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001815
Chris Wilsona56ba562010-09-28 10:07:56 +01001816 ring->outstanding_lazy_request = false;
Eric Anholt673a3942008-07-30 12:06:12 -07001817
1818 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001819 request->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001820 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001821 was_empty = list_empty(&ring->request_list);
1822 list_add_tail(&request->list, &ring->request_list);
1823
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001824 if (file_priv) {
Chris Wilson1c255952010-09-26 11:03:27 +01001825 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001826 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001827 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001828 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001829 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001830 }
Eric Anholt673a3942008-07-30 12:06:12 -07001831
Ben Gamarif65d9422009-09-14 17:48:44 -04001832 if (!dev_priv->mm.suspended) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001833 mod_timer(&dev_priv->hangcheck_timer,
1834 jiffies + msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
Ben Gamarif65d9422009-09-14 17:48:44 -04001835 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001836 queue_delayed_work(dev_priv->wq,
1837 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001838 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001839 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001840}
1841
1842/**
1843 * Command execution barrier
1844 *
1845 * Ensures that all commands in the ring are finished
1846 * before signalling the CPU
1847 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01001848static void
Zou Nan hai852835f2010-05-21 09:08:56 +08001849i915_retire_commands(struct drm_device *dev, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001850{
Eric Anholt673a3942008-07-30 12:06:12 -07001851 uint32_t flush_domains = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001852
1853 /* The sampler always gets flushed on i965 (sigh) */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001854 if (INTEL_INFO(dev)->gen >= 4)
Eric Anholt673a3942008-07-30 12:06:12 -07001855 flush_domains |= I915_GEM_DOMAIN_SAMPLER;
Zou Nan hai852835f2010-05-21 09:08:56 +08001856
Chris Wilson78501ea2010-10-27 12:18:21 +01001857 ring->flush(ring, I915_GEM_DOMAIN_COMMAND, flush_domains);
Eric Anholt673a3942008-07-30 12:06:12 -07001858}
1859
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001860static inline void
1861i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001862{
Chris Wilson1c255952010-09-26 11:03:27 +01001863 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001864
Chris Wilson1c255952010-09-26 11:03:27 +01001865 if (!file_priv)
1866 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001867
Chris Wilson1c255952010-09-26 11:03:27 +01001868 spin_lock(&file_priv->mm.lock);
1869 list_del(&request->client_list);
1870 request->file_priv = NULL;
1871 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001872}
1873
Chris Wilsondfaae392010-09-22 10:31:52 +01001874static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1875 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001876{
Chris Wilsondfaae392010-09-22 10:31:52 +01001877 while (!list_empty(&ring->request_list)) {
1878 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001879
Chris Wilsondfaae392010-09-22 10:31:52 +01001880 request = list_first_entry(&ring->request_list,
1881 struct drm_i915_gem_request,
1882 list);
1883
1884 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001885 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001886 kfree(request);
1887 }
1888
1889 while (!list_empty(&ring->active_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001890 struct drm_i915_gem_object *obj_priv;
1891
Chris Wilsondfaae392010-09-22 10:31:52 +01001892 obj_priv = list_first_entry(&ring->active_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001893 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001894 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001895
Chris Wilsondfaae392010-09-22 10:31:52 +01001896 obj_priv->base.write_domain = 0;
1897 list_del_init(&obj_priv->gpu_write_list);
1898 i915_gem_object_move_to_inactive(&obj_priv->base);
Eric Anholt673a3942008-07-30 12:06:12 -07001899 }
Eric Anholt673a3942008-07-30 12:06:12 -07001900}
1901
Chris Wilson069efc12010-09-30 16:53:18 +01001902void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001903{
Chris Wilsondfaae392010-09-22 10:31:52 +01001904 struct drm_i915_private *dev_priv = dev->dev_private;
1905 struct drm_i915_gem_object *obj_priv;
Chris Wilson069efc12010-09-30 16:53:18 +01001906 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001907
Chris Wilsondfaae392010-09-22 10:31:52 +01001908 i915_gem_reset_ring_lists(dev_priv, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01001909 i915_gem_reset_ring_lists(dev_priv, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01001910 i915_gem_reset_ring_lists(dev_priv, &dev_priv->blt_ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01001911
1912 /* Remove anything from the flushing lists. The GPU cache is likely
1913 * to be lost on reset along with the data, so simply move the
1914 * lost bo to the inactive list.
1915 */
1916 while (!list_empty(&dev_priv->mm.flushing_list)) {
Chris Wilson9375e442010-09-19 12:21:28 +01001917 obj_priv = list_first_entry(&dev_priv->mm.flushing_list,
1918 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001919 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001920
1921 obj_priv->base.write_domain = 0;
Chris Wilsondfaae392010-09-22 10:31:52 +01001922 list_del_init(&obj_priv->gpu_write_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001923 i915_gem_object_move_to_inactive(&obj_priv->base);
1924 }
Chris Wilson9375e442010-09-19 12:21:28 +01001925
Chris Wilsondfaae392010-09-22 10:31:52 +01001926 /* Move everything out of the GPU domains to ensure we do any
1927 * necessary invalidation upon reuse.
1928 */
Chris Wilson77f01232010-09-19 12:31:36 +01001929 list_for_each_entry(obj_priv,
1930 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001931 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001932 {
1933 obj_priv->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
1934 }
Chris Wilson069efc12010-09-30 16:53:18 +01001935
1936 /* The fence registers are invalidated so clear them out */
1937 for (i = 0; i < 16; i++) {
1938 struct drm_i915_fence_reg *reg;
1939
1940 reg = &dev_priv->fence_regs[i];
1941 if (!reg->obj)
1942 continue;
1943
1944 i915_gem_clear_fence_reg(reg->obj);
1945 }
Eric Anholt673a3942008-07-30 12:06:12 -07001946}
1947
1948/**
1949 * This function clears the request list as sequence numbers are passed.
1950 */
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001951static void
1952i915_gem_retire_requests_ring(struct drm_device *dev,
1953 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001954{
1955 drm_i915_private_t *dev_priv = dev->dev_private;
1956 uint32_t seqno;
1957
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001958 if (!ring->status_page.page_addr ||
1959 list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001960 return;
1961
Chris Wilson23bc5982010-09-29 16:10:57 +01001962 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001963
Chris Wilson78501ea2010-10-27 12:18:21 +01001964 seqno = ring->get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08001965 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001966 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001967
Zou Nan hai852835f2010-05-21 09:08:56 +08001968 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001969 struct drm_i915_gem_request,
1970 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001971
Chris Wilsondfaae392010-09-22 10:31:52 +01001972 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001973 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001974
1975 trace_i915_gem_request_retire(dev, request->seqno);
1976
1977 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001978 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001979 kfree(request);
1980 }
1981
1982 /* Move any buffers on the active list that are no longer referenced
1983 * by the ringbuffer to the flushing/inactive lists as appropriate.
1984 */
1985 while (!list_empty(&ring->active_list)) {
1986 struct drm_gem_object *obj;
1987 struct drm_i915_gem_object *obj_priv;
1988
1989 obj_priv = list_first_entry(&ring->active_list,
1990 struct drm_i915_gem_object,
Chris Wilson69dc4982010-10-19 10:36:51 +01001991 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001992
Chris Wilsondfaae392010-09-22 10:31:52 +01001993 if (!i915_seqno_passed(seqno, obj_priv->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001994 break;
1995
1996 obj = &obj_priv->base;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001997 if (obj->write_domain != 0)
1998 i915_gem_object_move_to_flushing(obj);
1999 else
2000 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002001 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002002
2003 if (unlikely (dev_priv->trace_irq_seqno &&
2004 i915_seqno_passed(dev_priv->trace_irq_seqno, seqno))) {
Chris Wilson78501ea2010-10-27 12:18:21 +01002005 ring->user_irq_put(ring);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002006 dev_priv->trace_irq_seqno = 0;
2007 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002008
2009 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002010}
2011
2012void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002013i915_gem_retire_requests(struct drm_device *dev)
2014{
2015 drm_i915_private_t *dev_priv = dev->dev_private;
2016
Chris Wilsonbe726152010-07-23 23:18:50 +01002017 if (!list_empty(&dev_priv->mm.deferred_free_list)) {
2018 struct drm_i915_gem_object *obj_priv, *tmp;
2019
2020 /* We must be careful that during unbind() we do not
2021 * accidentally infinitely recurse into retire requests.
2022 * Currently:
2023 * retire -> free -> unbind -> wait -> retire_ring
2024 */
2025 list_for_each_entry_safe(obj_priv, tmp,
2026 &dev_priv->mm.deferred_free_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01002027 mm_list)
Chris Wilsonbe726152010-07-23 23:18:50 +01002028 i915_gem_free_object_tail(&obj_priv->base);
2029 }
2030
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002031 i915_gem_retire_requests_ring(dev, &dev_priv->render_ring);
Chris Wilson87acb0a2010-10-19 10:13:00 +01002032 i915_gem_retire_requests_ring(dev, &dev_priv->bsd_ring);
Chris Wilson549f7362010-10-19 11:19:32 +01002033 i915_gem_retire_requests_ring(dev, &dev_priv->blt_ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002034}
2035
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002036static void
Eric Anholt673a3942008-07-30 12:06:12 -07002037i915_gem_retire_work_handler(struct work_struct *work)
2038{
2039 drm_i915_private_t *dev_priv;
2040 struct drm_device *dev;
2041
2042 dev_priv = container_of(work, drm_i915_private_t,
2043 mm.retire_work.work);
2044 dev = dev_priv->dev;
2045
Chris Wilson891b48c2010-09-29 12:26:37 +01002046 /* Come back later if the device is busy... */
2047 if (!mutex_trylock(&dev->struct_mutex)) {
2048 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
2049 return;
2050 }
2051
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002052 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002053
Keith Packard6dbe2772008-10-14 21:41:13 -07002054 if (!dev_priv->mm.suspended &&
Zou Nan haid1b851f2010-05-21 09:08:57 +08002055 (!list_empty(&dev_priv->render_ring.request_list) ||
Chris Wilson549f7362010-10-19 11:19:32 +01002056 !list_empty(&dev_priv->bsd_ring.request_list) ||
2057 !list_empty(&dev_priv->blt_ring.request_list)))
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07002058 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Eric Anholt673a3942008-07-30 12:06:12 -07002059 mutex_unlock(&dev->struct_mutex);
2060}
2061
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02002062int
Zou Nan hai852835f2010-05-21 09:08:56 +08002063i915_do_wait_request(struct drm_device *dev, uint32_t seqno,
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002064 bool interruptible, struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002065{
2066 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002067 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07002068 int ret = 0;
2069
2070 BUG_ON(seqno == 0);
2071
Ben Gamariba1234d2009-09-14 17:48:47 -04002072 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002073 return -EAGAIN;
Ben Gamariffed1d02009-09-14 17:48:41 -04002074
Chris Wilsona56ba562010-09-28 10:07:56 +01002075 if (ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01002076 struct drm_i915_gem_request *request;
2077
2078 request = kzalloc(sizeof(*request), GFP_KERNEL);
2079 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01002080 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01002081
2082 ret = i915_add_request(dev, NULL, request, ring);
2083 if (ret) {
2084 kfree(request);
2085 return ret;
2086 }
2087
2088 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01002089 }
Chris Wilsona56ba562010-09-28 10:07:56 +01002090 BUG_ON(seqno == dev_priv->next_seqno);
Daniel Vettere35a41d2010-02-11 22:13:59 +01002091
Chris Wilson78501ea2010-10-27 12:18:21 +01002092 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Eric Anholtbad720f2009-10-22 16:11:14 -07002093 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002094 ier = I915_READ(DEIER) | I915_READ(GTIER);
2095 else
2096 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07002097 if (!ier) {
2098 DRM_ERROR("something (likely vbetool) disabled "
2099 "interrupts, re-enabling\n");
2100 i915_driver_irq_preinstall(dev);
2101 i915_driver_irq_postinstall(dev);
2102 }
2103
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002104 trace_i915_gem_request_wait_begin(dev, seqno);
2105
Chris Wilsonb2223492010-10-27 15:27:33 +01002106 ring->waiting_seqno = seqno;
Chris Wilson78501ea2010-10-27 12:18:21 +01002107 ring->user_irq_get(ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002108 if (interruptible)
Zou Nan hai852835f2010-05-21 09:08:56 +08002109 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002110 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002111 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002112 else
Zou Nan hai852835f2010-05-21 09:08:56 +08002113 wait_event(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01002114 i915_seqno_passed(ring->get_seqno(ring), seqno)
Zou Nan hai852835f2010-05-21 09:08:56 +08002115 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02002116
Chris Wilson78501ea2010-10-27 12:18:21 +01002117 ring->user_irq_put(ring);
Chris Wilsonb2223492010-10-27 15:27:33 +01002118 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002119
2120 trace_i915_gem_request_wait_end(dev, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002121 }
Ben Gamariba1234d2009-09-14 17:48:47 -04002122 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01002123 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07002124
2125 if (ret && ret != -ERESTARTSYS)
Daniel Vetter8bff9172010-02-11 22:19:40 +01002126 DRM_ERROR("%s returns %d (awaiting %d at %d, next %d)\n",
Chris Wilson78501ea2010-10-27 12:18:21 +01002127 __func__, ret, seqno, ring->get_seqno(ring),
Daniel Vetter8bff9172010-02-11 22:19:40 +01002128 dev_priv->next_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002129
2130 /* Directly dispatch request retiring. While we have the work queue
2131 * to handle this, the waiter on a request often wants an associated
2132 * buffer to have made it to the inactive list, and we would need
2133 * a separate wait queue to handle that.
2134 */
2135 if (ret == 0)
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002136 i915_gem_retire_requests_ring(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07002137
2138 return ret;
2139}
2140
Daniel Vetter48764bf2009-09-15 22:57:32 +02002141/**
2142 * Waits for a sequence number to be signaled, and cleans up the
2143 * request and object lists appropriately for that event.
2144 */
2145static int
Zou Nan hai852835f2010-05-21 09:08:56 +08002146i915_wait_request(struct drm_device *dev, uint32_t seqno,
Chris Wilsona56ba562010-09-28 10:07:56 +01002147 struct intel_ring_buffer *ring)
Daniel Vetter48764bf2009-09-15 22:57:32 +02002148{
Zou Nan hai852835f2010-05-21 09:08:56 +08002149 return i915_do_wait_request(dev, seqno, 1, ring);
Daniel Vetter48764bf2009-09-15 22:57:32 +02002150}
2151
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002152static void
Chris Wilson92204342010-09-18 11:02:01 +01002153i915_gem_flush_ring(struct drm_device *dev,
Chris Wilsonc78ec302010-09-20 12:50:23 +01002154 struct drm_file *file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002155 struct intel_ring_buffer *ring,
2156 uint32_t invalidate_domains,
2157 uint32_t flush_domains)
2158{
Chris Wilson78501ea2010-10-27 12:18:21 +01002159 ring->flush(ring, invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002160 i915_gem_process_flushing_list(dev, flush_domains, ring);
2161}
2162
2163static void
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002164i915_gem_flush(struct drm_device *dev,
Chris Wilsonc78ec302010-09-20 12:50:23 +01002165 struct drm_file *file_priv,
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002166 uint32_t invalidate_domains,
Chris Wilson92204342010-09-18 11:02:01 +01002167 uint32_t flush_domains,
2168 uint32_t flush_rings)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002169{
2170 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter8bff9172010-02-11 22:19:40 +01002171
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002172 if (flush_domains & I915_GEM_DOMAIN_CPU)
2173 drm_agp_chipset_flush(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002174
Chris Wilson92204342010-09-18 11:02:01 +01002175 if ((flush_domains | invalidate_domains) & I915_GEM_GPU_DOMAINS) {
2176 if (flush_rings & RING_RENDER)
Chris Wilsonc78ec302010-09-20 12:50:23 +01002177 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002178 &dev_priv->render_ring,
2179 invalidate_domains, flush_domains);
2180 if (flush_rings & RING_BSD)
Chris Wilsonc78ec302010-09-20 12:50:23 +01002181 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01002182 &dev_priv->bsd_ring,
2183 invalidate_domains, flush_domains);
Chris Wilson549f7362010-10-19 11:19:32 +01002184 if (flush_rings & RING_BLT)
2185 i915_gem_flush_ring(dev, file_priv,
2186 &dev_priv->blt_ring,
2187 invalidate_domains, flush_domains);
Chris Wilson92204342010-09-18 11:02:01 +01002188 }
Zou Nan hai8187a2b2010-05-21 09:08:55 +08002189}
2190
Eric Anholt673a3942008-07-30 12:06:12 -07002191/**
2192 * Ensures that all rendering to the object has completed and the object is
2193 * safe to unbind from the GTT or access from the CPU.
2194 */
2195static int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002196i915_gem_object_wait_rendering(struct drm_gem_object *obj,
2197 bool interruptible)
Eric Anholt673a3942008-07-30 12:06:12 -07002198{
2199 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01002200 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002201 int ret;
2202
Eric Anholte47c68e2008-11-14 13:35:19 -08002203 /* This function only exists to support waiting for existing rendering,
2204 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07002205 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002206 BUG_ON((obj->write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07002207
2208 /* If there is rendering queued on the buffer being evicted, wait for
2209 * it.
2210 */
2211 if (obj_priv->active) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002212 ret = i915_do_wait_request(dev,
2213 obj_priv->last_rendering_seqno,
2214 interruptible,
2215 obj_priv->ring);
2216 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002217 return ret;
2218 }
2219
2220 return 0;
2221}
2222
2223/**
2224 * Unbinds an object from the GTT aperture.
2225 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002226int
Eric Anholt673a3942008-07-30 12:06:12 -07002227i915_gem_object_unbind(struct drm_gem_object *obj)
2228{
2229 struct drm_device *dev = obj->dev;
Chris Wilson73aa8082010-09-30 11:46:12 +01002230 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002231 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002232 int ret = 0;
2233
Eric Anholt673a3942008-07-30 12:06:12 -07002234 if (obj_priv->gtt_space == NULL)
2235 return 0;
2236
2237 if (obj_priv->pin_count != 0) {
2238 DRM_ERROR("Attempting to unbind pinned buffer\n");
2239 return -EINVAL;
2240 }
2241
Eric Anholt5323fd02009-09-09 11:50:45 -07002242 /* blow away mappings if mapped through GTT */
2243 i915_gem_release_mmap(obj);
2244
Eric Anholt673a3942008-07-30 12:06:12 -07002245 /* Move the object to the CPU domain to ensure that
2246 * any possible CPU writes while it's not in the GTT
2247 * are flushed when we go to remap it. This will
2248 * also ensure that all pending GPU writes are finished
2249 * before we unbind.
2250 */
Eric Anholte47c68e2008-11-14 13:35:19 -08002251 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
Chris Wilson8dc17752010-07-23 23:18:51 +01002252 if (ret == -ERESTARTSYS)
Eric Anholt673a3942008-07-30 12:06:12 -07002253 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002254 /* Continue on if we fail due to EIO, the GPU is hung so we
2255 * should be safe and we need to cleanup or else we might
2256 * cause memory corruption through use-after-free.
2257 */
Chris Wilson812ed492010-09-30 15:08:57 +01002258 if (ret) {
2259 i915_gem_clflush_object(obj);
2260 obj->read_domains = obj->write_domain = I915_GEM_DOMAIN_CPU;
2261 }
Eric Anholt673a3942008-07-30 12:06:12 -07002262
Daniel Vetter96b47b62009-12-15 17:50:00 +01002263 /* release the fence reg _after_ flushing */
2264 if (obj_priv->fence_reg != I915_FENCE_REG_NONE)
2265 i915_gem_clear_fence_reg(obj);
2266
Chris Wilson73aa8082010-09-30 11:46:12 +01002267 drm_unbind_agp(obj_priv->agp_mem);
2268 drm_free_agp(obj_priv->agp_mem, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002269
Chris Wilsone5281cc2010-10-28 13:45:36 +01002270 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002271
Chris Wilsona00b10c2010-09-24 21:15:47 +01002272 i915_gem_info_remove_gtt(dev_priv, obj_priv);
Chris Wilson69dc4982010-10-19 10:36:51 +01002273 list_del_init(&obj_priv->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002274 /* Avoid an unnecessary call to unbind on rebind. */
2275 obj_priv->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002276
Chris Wilson73aa8082010-09-30 11:46:12 +01002277 drm_mm_put_block(obj_priv->gtt_space);
2278 obj_priv->gtt_space = NULL;
Chris Wilson9af90d12010-10-17 10:01:56 +01002279 obj_priv->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002280
Chris Wilson963b4832009-09-20 23:03:54 +01002281 if (i915_gem_object_is_purgeable(obj_priv))
2282 i915_gem_object_truncate(obj);
2283
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002284 trace_i915_gem_object_unbind(obj);
2285
Chris Wilson8dc17752010-07-23 23:18:51 +01002286 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002287}
2288
Chris Wilsona56ba562010-09-28 10:07:56 +01002289static int i915_ring_idle(struct drm_device *dev,
2290 struct intel_ring_buffer *ring)
2291{
Chris Wilson395b70b2010-10-28 21:28:46 +01002292 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002293 return 0;
2294
Chris Wilsona56ba562010-09-28 10:07:56 +01002295 i915_gem_flush_ring(dev, NULL, ring,
2296 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
2297 return i915_wait_request(dev,
2298 i915_gem_next_request_seqno(dev, ring),
2299 ring);
2300}
2301
Chris Wilsonb47eb4a2010-08-07 11:01:23 +01002302int
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002303i915_gpu_idle(struct drm_device *dev)
2304{
2305 drm_i915_private_t *dev_priv = dev->dev_private;
2306 bool lists_empty;
Zou Nan hai852835f2010-05-21 09:08:56 +08002307 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002308
Zou Nan haid1b851f2010-05-21 09:08:57 +08002309 lists_empty = (list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson395b70b2010-10-28 21:28:46 +01002310 list_empty(&dev_priv->mm.active_list));
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002311 if (lists_empty)
2312 return 0;
2313
2314 /* Flush everything onto the inactive list. */
Chris Wilsona56ba562010-09-28 10:07:56 +01002315 ret = i915_ring_idle(dev, &dev_priv->render_ring);
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002316 if (ret)
2317 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002318
Chris Wilson87acb0a2010-10-19 10:13:00 +01002319 ret = i915_ring_idle(dev, &dev_priv->bsd_ring);
2320 if (ret)
2321 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002322
Chris Wilson549f7362010-10-19 11:19:32 +01002323 ret = i915_ring_idle(dev, &dev_priv->blt_ring);
2324 if (ret)
2325 return ret;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002326
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002327 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002328}
2329
Chris Wilsona00b10c2010-09-24 21:15:47 +01002330static void sandybridge_write_fence_reg(struct drm_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002331{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002332 struct drm_device *dev = obj->dev;
2333 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002334 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002335 u32 size = i915_gem_get_gtt_size(obj_priv);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002336 int regnum = obj_priv->fence_reg;
2337 uint64_t val;
2338
Chris Wilsona00b10c2010-09-24 21:15:47 +01002339 val = (uint64_t)((obj_priv->gtt_offset + size - 4096) &
Eric Anholt4e901fd2009-10-26 16:44:17 -07002340 0xfffff000) << 32;
2341 val |= obj_priv->gtt_offset & 0xfffff000;
2342 val |= (uint64_t)((obj_priv->stride / 128) - 1) <<
2343 SANDYBRIDGE_FENCE_PITCH_SHIFT;
2344
2345 if (obj_priv->tiling_mode == I915_TILING_Y)
2346 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2347 val |= I965_FENCE_REG_VALID;
2348
2349 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (regnum * 8), val);
2350}
2351
Chris Wilsona00b10c2010-09-24 21:15:47 +01002352static void i965_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002353{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002354 struct drm_device *dev = obj->dev;
2355 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002356 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002357 u32 size = i915_gem_get_gtt_size(obj_priv);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002358 int regnum = obj_priv->fence_reg;
2359 uint64_t val;
2360
Chris Wilsona00b10c2010-09-24 21:15:47 +01002361 val = (uint64_t)((obj_priv->gtt_offset + size - 4096) &
Jesse Barnesde151cf2008-11-12 10:03:55 -08002362 0xfffff000) << 32;
2363 val |= obj_priv->gtt_offset & 0xfffff000;
2364 val |= ((obj_priv->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2365 if (obj_priv->tiling_mode == I915_TILING_Y)
2366 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2367 val |= I965_FENCE_REG_VALID;
2368
2369 I915_WRITE64(FENCE_REG_965_0 + (regnum * 8), val);
2370}
2371
Chris Wilsona00b10c2010-09-24 21:15:47 +01002372static void i915_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002373{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002374 struct drm_device *dev = obj->dev;
2375 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002376 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002377 u32 size = i915_gem_get_gtt_size(obj_priv);
2378 uint32_t fence_reg, val, pitch_val;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002379 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002380
2381 if ((obj_priv->gtt_offset & ~I915_FENCE_START_MASK) ||
Chris Wilsona00b10c2010-09-24 21:15:47 +01002382 (obj_priv->gtt_offset & (size - 1))) {
2383 WARN(1, "%s: object 0x%08x [fenceable? %d] not 1M or size (0x%08x) aligned [gtt_space offset=%lx, size=%lx]\n",
Daniel Vetter75e9e912010-11-04 17:11:09 +01002384 __func__, obj_priv->gtt_offset, obj_priv->map_and_fenceable, size,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002385 obj_priv->gtt_space->start, obj_priv->gtt_space->size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002386 return;
2387 }
2388
Jesse Barnes0f973f22009-01-26 17:10:45 -08002389 if (obj_priv->tiling_mode == I915_TILING_Y &&
2390 HAS_128_BYTE_Y_TILING(dev))
2391 tile_width = 128;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002392 else
Jesse Barnes0f973f22009-01-26 17:10:45 -08002393 tile_width = 512;
2394
2395 /* Note: pitch better be a power of two tile widths */
2396 pitch_val = obj_priv->stride / tile_width;
2397 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002398
Daniel Vetterc36a2a62010-04-17 15:12:03 +02002399 if (obj_priv->tiling_mode == I915_TILING_Y &&
2400 HAS_128_BYTE_Y_TILING(dev))
2401 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2402 else
2403 WARN_ON(pitch_val > I915_FENCE_MAX_PITCH_VAL);
2404
Jesse Barnesde151cf2008-11-12 10:03:55 -08002405 val = obj_priv->gtt_offset;
2406 if (obj_priv->tiling_mode == I915_TILING_Y)
2407 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002408 val |= I915_FENCE_SIZE_BITS(size);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002409 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2410 val |= I830_FENCE_REG_VALID;
2411
Chris Wilsona00b10c2010-09-24 21:15:47 +01002412 fence_reg = obj_priv->fence_reg;
2413 if (fence_reg < 8)
2414 fence_reg = FENCE_REG_830_0 + fence_reg * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002415 else
Chris Wilsona00b10c2010-09-24 21:15:47 +01002416 fence_reg = FENCE_REG_945_8 + (fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002417 I915_WRITE(fence_reg, val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002418}
2419
Chris Wilsona00b10c2010-09-24 21:15:47 +01002420static void i830_write_fence_reg(struct drm_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002421{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002422 struct drm_device *dev = obj->dev;
2423 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002424 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002425 u32 size = i915_gem_get_gtt_size(obj_priv);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002426 int regnum = obj_priv->fence_reg;
2427 uint32_t val;
2428 uint32_t pitch_val;
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002429 uint32_t fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002430
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002431 if ((obj_priv->gtt_offset & ~I830_FENCE_START_MASK) ||
Jesse Barnesde151cf2008-11-12 10:03:55 -08002432 (obj_priv->gtt_offset & (obj->size - 1))) {
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002433 WARN(1, "%s: object 0x%08x not 512K or size aligned\n",
Jesse Barnes0f973f22009-01-26 17:10:45 -08002434 __func__, obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002435 return;
2436 }
2437
Eric Anholte76a16d2009-05-26 17:44:56 -07002438 pitch_val = obj_priv->stride / 128;
2439 pitch_val = ffs(pitch_val) - 1;
2440 WARN_ON(pitch_val > I830_FENCE_MAX_PITCH_VAL);
2441
Jesse Barnesde151cf2008-11-12 10:03:55 -08002442 val = obj_priv->gtt_offset;
2443 if (obj_priv->tiling_mode == I915_TILING_Y)
2444 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002445 fence_size_bits = I830_FENCE_SIZE_BITS(size);
Daniel Vetter8d7773a2009-03-29 14:09:41 +02002446 WARN_ON(fence_size_bits & ~0x00000f00);
2447 val |= fence_size_bits;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002448 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2449 val |= I830_FENCE_REG_VALID;
2450
2451 I915_WRITE(FENCE_REG_830_0 + (regnum * 4), val);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002452}
2453
Chris Wilson2cf34d72010-09-14 13:03:28 +01002454static int i915_find_fence_reg(struct drm_device *dev,
2455 bool interruptible)
Daniel Vetterae3db242010-02-19 11:51:58 +01002456{
Daniel Vetterae3db242010-02-19 11:51:58 +01002457 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002458 struct drm_i915_fence_reg *reg;
2459 struct drm_i915_gem_object *obj_priv = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002460 int i, avail, ret;
2461
2462 /* First try to find a free reg */
2463 avail = 0;
2464 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2465 reg = &dev_priv->fence_regs[i];
2466 if (!reg->obj)
2467 return i;
2468
Daniel Vetter23010e42010-03-08 13:35:02 +01002469 obj_priv = to_intel_bo(reg->obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002470 if (!obj_priv->pin_count)
2471 avail++;
2472 }
2473
2474 if (avail == 0)
2475 return -ENOSPC;
2476
2477 /* None available, try to steal one or wait for a user to finish */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002478 avail = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002479 list_for_each_entry(reg, &dev_priv->mm.fence_list,
2480 lru_list) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01002481 obj_priv = to_intel_bo(reg->obj);
Daniel Vetterae3db242010-02-19 11:51:58 +01002482 if (obj_priv->pin_count)
2483 continue;
2484
2485 /* found one! */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002486 avail = obj_priv->fence_reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002487 break;
2488 }
2489
Chris Wilsona00b10c2010-09-24 21:15:47 +01002490 BUG_ON(avail == I915_FENCE_REG_NONE);
Daniel Vetterae3db242010-02-19 11:51:58 +01002491
2492 /* We only have a reference on obj from the active list. put_fence_reg
2493 * might drop that one, causing a use-after-free in it. So hold a
2494 * private reference to obj like the other callers of put_fence_reg
2495 * (set_tiling ioctl) do. */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002496 drm_gem_object_reference(&obj_priv->base);
2497 ret = i915_gem_object_put_fence_reg(&obj_priv->base, interruptible);
2498 drm_gem_object_unreference(&obj_priv->base);
Daniel Vetterae3db242010-02-19 11:51:58 +01002499 if (ret != 0)
2500 return ret;
2501
Chris Wilsona00b10c2010-09-24 21:15:47 +01002502 return avail;
Daniel Vetterae3db242010-02-19 11:51:58 +01002503}
2504
Jesse Barnesde151cf2008-11-12 10:03:55 -08002505/**
2506 * i915_gem_object_get_fence_reg - set up a fence reg for an object
2507 * @obj: object to map through a fence reg
2508 *
2509 * When mapping objects through the GTT, userspace wants to be able to write
2510 * to them without having to worry about swizzling if the object is tiled.
2511 *
2512 * This function walks the fence regs looking for a free one for @obj,
2513 * stealing one if it can't find any.
2514 *
2515 * It then sets up the reg based on the object's properties: address, pitch
2516 * and tiling format.
2517 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002518int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002519i915_gem_object_get_fence_reg(struct drm_gem_object *obj,
2520 bool interruptible)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002521{
2522 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002523 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002524 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002525 struct drm_i915_fence_reg *reg = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002526 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002527
Eric Anholta09ba7f2009-08-29 12:49:51 -07002528 /* Just update our place in the LRU if our fence is getting used. */
2529 if (obj_priv->fence_reg != I915_FENCE_REG_NONE) {
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002530 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
2531 list_move_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002532 return 0;
2533 }
2534
Jesse Barnesde151cf2008-11-12 10:03:55 -08002535 switch (obj_priv->tiling_mode) {
2536 case I915_TILING_NONE:
2537 WARN(1, "allocating a fence for non-tiled object?\n");
2538 break;
2539 case I915_TILING_X:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002540 if (!obj_priv->stride)
2541 return -EINVAL;
2542 WARN((obj_priv->stride & (512 - 1)),
2543 "object 0x%08x is X tiled but has non-512B pitch\n",
2544 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002545 break;
2546 case I915_TILING_Y:
Jesse Barnes0f973f22009-01-26 17:10:45 -08002547 if (!obj_priv->stride)
2548 return -EINVAL;
2549 WARN((obj_priv->stride & (128 - 1)),
2550 "object 0x%08x is Y tiled but has non-128B pitch\n",
2551 obj_priv->gtt_offset);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002552 break;
2553 }
2554
Chris Wilson2cf34d72010-09-14 13:03:28 +01002555 ret = i915_find_fence_reg(dev, interruptible);
Daniel Vetterae3db242010-02-19 11:51:58 +01002556 if (ret < 0)
2557 return ret;
Chris Wilsonfc7170b2009-02-11 14:26:46 +00002558
Daniel Vetterae3db242010-02-19 11:51:58 +01002559 obj_priv->fence_reg = ret;
2560 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002561 list_add_tail(&reg->lru_list, &dev_priv->mm.fence_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07002562
Jesse Barnesde151cf2008-11-12 10:03:55 -08002563 reg->obj = obj;
2564
Chris Wilsone259bef2010-09-17 00:32:02 +01002565 switch (INTEL_INFO(dev)->gen) {
2566 case 6:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002567 sandybridge_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002568 break;
2569 case 5:
2570 case 4:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002571 i965_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002572 break;
2573 case 3:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002574 i915_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002575 break;
2576 case 2:
Chris Wilsona00b10c2010-09-24 21:15:47 +01002577 i830_write_fence_reg(obj);
Chris Wilsone259bef2010-09-17 00:32:02 +01002578 break;
2579 }
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002580
Chris Wilsona00b10c2010-09-24 21:15:47 +01002581 trace_i915_gem_object_get_fence(obj,
2582 obj_priv->fence_reg,
2583 obj_priv->tiling_mode);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002584
Eric Anholtd9ddcb92009-01-27 10:33:49 -08002585 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002586}
2587
2588/**
2589 * i915_gem_clear_fence_reg - clear out fence register info
2590 * @obj: object to clear
2591 *
2592 * Zeroes out the fence register itself and clears out the associated
2593 * data structures in dev_priv and obj_priv.
2594 */
2595static void
2596i915_gem_clear_fence_reg(struct drm_gem_object *obj)
2597{
2598 struct drm_device *dev = obj->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002599 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002600 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002601 struct drm_i915_fence_reg *reg =
2602 &dev_priv->fence_regs[obj_priv->fence_reg];
Chris Wilsone259bef2010-09-17 00:32:02 +01002603 uint32_t fence_reg;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002604
Chris Wilsone259bef2010-09-17 00:32:02 +01002605 switch (INTEL_INFO(dev)->gen) {
2606 case 6:
Eric Anholt4e901fd2009-10-26 16:44:17 -07002607 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 +
2608 (obj_priv->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002609 break;
2610 case 5:
2611 case 4:
Jesse Barnesde151cf2008-11-12 10:03:55 -08002612 I915_WRITE64(FENCE_REG_965_0 + (obj_priv->fence_reg * 8), 0);
Chris Wilsone259bef2010-09-17 00:32:02 +01002613 break;
2614 case 3:
Chris Wilson9b74f732010-09-22 19:10:44 +01002615 if (obj_priv->fence_reg >= 8)
Chris Wilsone259bef2010-09-17 00:32:02 +01002616 fence_reg = FENCE_REG_945_8 + (obj_priv->fence_reg - 8) * 4;
Eric Anholtdc529a42009-03-10 22:34:49 -07002617 else
Chris Wilsone259bef2010-09-17 00:32:02 +01002618 case 2:
2619 fence_reg = FENCE_REG_830_0 + obj_priv->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 reg->obj = NULL;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002626 obj_priv->fence_reg = I915_FENCE_REG_NONE;
Daniel Vetter007cc8a2010-04-28 11:02:31 +02002627 list_del_init(&reg->lru_list);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002628}
2629
Eric Anholt673a3942008-07-30 12:06:12 -07002630/**
Chris Wilson52dc7d32009-06-06 09:46:01 +01002631 * i915_gem_object_put_fence_reg - waits on outstanding fenced access
2632 * to the buffer to finish, and then resets the fence register.
2633 * @obj: tiled object holding a fence register.
Chris Wilson2cf34d72010-09-14 13:03:28 +01002634 * @bool: whether the wait upon the fence is interruptible
Chris Wilson52dc7d32009-06-06 09:46:01 +01002635 *
2636 * Zeroes out the fence register itself and clears out the associated
2637 * data structures in dev_priv and obj_priv.
2638 */
2639int
Chris Wilson2cf34d72010-09-14 13:03:28 +01002640i915_gem_object_put_fence_reg(struct drm_gem_object *obj,
2641 bool interruptible)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002642{
2643 struct drm_device *dev = obj->dev;
Chris Wilson53640e12010-09-20 11:40:50 +01002644 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002645 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson53640e12010-09-20 11:40:50 +01002646 struct drm_i915_fence_reg *reg;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002647
2648 if (obj_priv->fence_reg == I915_FENCE_REG_NONE)
2649 return 0;
2650
Daniel Vetter10ae9bd2010-02-01 13:59:17 +01002651 /* If we've changed tiling, GTT-mappings of the object
2652 * need to re-fault to ensure that the correct fence register
2653 * setup is in place.
2654 */
2655 i915_gem_release_mmap(obj);
2656
Chris Wilson52dc7d32009-06-06 09:46:01 +01002657 /* On the i915, GPU access to tiled buffers is via a fence,
2658 * therefore we must wait for any outstanding access to complete
2659 * before clearing the fence.
2660 */
Chris Wilson53640e12010-09-20 11:40:50 +01002661 reg = &dev_priv->fence_regs[obj_priv->fence_reg];
2662 if (reg->gpu) {
Chris Wilson52dc7d32009-06-06 09:46:01 +01002663 int ret;
2664
Chris Wilson2cf34d72010-09-14 13:03:28 +01002665 ret = i915_gem_object_flush_gpu_write_domain(obj, true);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002666 if (ret)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002667 return ret;
2668
Chris Wilson2cf34d72010-09-14 13:03:28 +01002669 ret = i915_gem_object_wait_rendering(obj, interruptible);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002670 if (ret)
Chris Wilson52dc7d32009-06-06 09:46:01 +01002671 return ret;
Chris Wilson53640e12010-09-20 11:40:50 +01002672
2673 reg->gpu = false;
Chris Wilson52dc7d32009-06-06 09:46:01 +01002674 }
2675
Daniel Vetter4a726612010-02-01 13:59:16 +01002676 i915_gem_object_flush_gtt_write_domain(obj);
Chris Wilson0bc23aa2010-09-14 10:22:23 +01002677 i915_gem_clear_fence_reg(obj);
Chris Wilson52dc7d32009-06-06 09:46:01 +01002678
2679 return 0;
2680}
2681
2682/**
Eric Anholt673a3942008-07-30 12:06:12 -07002683 * Finds free space in the GTT aperture and binds the object there.
2684 */
2685static int
Daniel Vetter920afa72010-09-16 17:54:23 +02002686i915_gem_object_bind_to_gtt(struct drm_gem_object *obj,
2687 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002688 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002689{
2690 struct drm_device *dev = obj->dev;
2691 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01002692 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002693 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002694 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
2695 u32 size, fence_size, fence_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002696 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002697 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002698
Chris Wilsonbb6baf72009-09-22 14:24:13 +01002699 if (obj_priv->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002700 DRM_ERROR("Attempting to bind a purgeable object\n");
2701 return -EINVAL;
2702 }
2703
Chris Wilsona00b10c2010-09-24 21:15:47 +01002704 fence_size = i915_gem_get_gtt_size(obj_priv);
2705 fence_alignment = i915_gem_get_gtt_alignment(obj_priv);
2706
Eric Anholt673a3942008-07-30 12:06:12 -07002707 if (alignment == 0)
Daniel Vetter75e9e912010-11-04 17:11:09 +01002708 alignment = map_and_fenceable ? fence_alignment : 4096;
2709 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002710 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2711 return -EINVAL;
2712 }
2713
Daniel Vetter75e9e912010-11-04 17:11:09 +01002714 size = map_and_fenceable ? fence_size : obj->size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002715
Chris Wilson654fc602010-05-27 13:18:21 +01002716 /* If the object is bigger than the entire aperture, reject it early
2717 * before evicting everything in a vain attempt to find space.
2718 */
Daniel Vetter920afa72010-09-16 17:54:23 +02002719 if (obj->size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002720 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002721 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2722 return -E2BIG;
2723 }
2724
Eric Anholt673a3942008-07-30 12:06:12 -07002725 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002726 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002727 free_space =
2728 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002729 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002730 dev_priv->mm.gtt_mappable_end,
2731 0);
2732 else
2733 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002734 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002735
2736 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002737 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002738 obj_priv->gtt_space =
2739 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002740 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002741 dev_priv->mm.gtt_mappable_end,
2742 0);
2743 else
2744 obj_priv->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002745 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002746 }
Eric Anholt673a3942008-07-30 12:06:12 -07002747 if (obj_priv->gtt_space == NULL) {
2748 /* If the gtt is empty and we're still having trouble
2749 * fitting our object in, we're out of memory.
2750 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002751 ret = i915_gem_evict_something(dev, size, alignment,
2752 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002753 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002754 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002755
Eric Anholt673a3942008-07-30 12:06:12 -07002756 goto search_free;
2757 }
2758
Chris Wilsone5281cc2010-10-28 13:45:36 +01002759 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002760 if (ret) {
2761 drm_mm_put_block(obj_priv->gtt_space);
2762 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002763
2764 if (ret == -ENOMEM) {
2765 /* first try to clear up some space from the GTT */
Chris Wilsona00b10c2010-09-24 21:15:47 +01002766 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002767 alignment,
2768 map_and_fenceable);
Chris Wilson07f73f62009-09-14 16:50:30 +01002769 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002770 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002771 if (gfpmask) {
2772 gfpmask = 0;
2773 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002774 }
2775
2776 return ret;
2777 }
2778
2779 goto search_free;
2780 }
2781
Eric Anholt673a3942008-07-30 12:06:12 -07002782 return ret;
2783 }
2784
Eric Anholt673a3942008-07-30 12:06:12 -07002785 /* Create an AGP memory structure pointing at our pages, and bind it
2786 * into the GTT.
2787 */
2788 obj_priv->agp_mem = drm_agp_bind_pages(dev,
Eric Anholt856fa192009-03-19 14:10:50 -07002789 obj_priv->pages,
Chris Wilson07f73f62009-09-14 16:50:30 +01002790 obj->size >> PAGE_SHIFT,
Chris Wilson9af90d12010-10-17 10:01:56 +01002791 obj_priv->gtt_space->start,
Keith Packardba1eb1d2008-10-14 19:55:10 -07002792 obj_priv->agp_type);
Eric Anholt673a3942008-07-30 12:06:12 -07002793 if (obj_priv->agp_mem == NULL) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002794 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002795 drm_mm_put_block(obj_priv->gtt_space);
2796 obj_priv->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002797
Chris Wilsona00b10c2010-09-24 21:15:47 +01002798 ret = i915_gem_evict_something(dev, size,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002799 alignment, map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002800 if (ret)
Chris Wilson07f73f62009-09-14 16:50:30 +01002801 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002802
2803 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002804 }
Eric Anholt673a3942008-07-30 12:06:12 -07002805
Daniel Vetterfb7d5162010-10-01 22:05:20 +02002806 obj_priv->gtt_offset = obj_priv->gtt_space->start;
2807
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002808 /* keep track of bounds object by adding it to the inactive list */
Chris Wilson69dc4982010-10-19 10:36:51 +01002809 list_add_tail(&obj_priv->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002810 i915_gem_info_add_gtt(dev_priv, obj_priv);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002811
Eric Anholt673a3942008-07-30 12:06:12 -07002812 /* Assert that the object is not currently in any GPU domain. As it
2813 * wasn't in the GTT, there shouldn't be any way it could have been in
2814 * a GPU cache
2815 */
Chris Wilson21d509e2009-06-06 09:46:02 +01002816 BUG_ON(obj->read_domains & I915_GEM_GPU_DOMAINS);
2817 BUG_ON(obj->write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002818
Daniel Vetter75e9e912010-11-04 17:11:09 +01002819 trace_i915_gem_object_bind(obj, obj_priv->gtt_offset, map_and_fenceable);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002820
Daniel Vetter75e9e912010-11-04 17:11:09 +01002821 fenceable =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002822 obj_priv->gtt_space->size == fence_size &&
2823 (obj_priv->gtt_space->start & (fence_alignment -1)) == 0;
2824
Daniel Vetter75e9e912010-11-04 17:11:09 +01002825 mappable =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002826 obj_priv->gtt_offset + obj->size <= dev_priv->mm.gtt_mappable_end;
2827
Daniel Vetter75e9e912010-11-04 17:11:09 +01002828 obj_priv->map_and_fenceable = mappable && fenceable;
2829
Eric Anholt673a3942008-07-30 12:06:12 -07002830 return 0;
2831}
2832
2833void
2834i915_gem_clflush_object(struct drm_gem_object *obj)
2835{
Daniel Vetter23010e42010-03-08 13:35:02 +01002836 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002837
2838 /* If we don't have a page list set up, then we're not pinned
2839 * to GPU, and we can ignore the cache flush because it'll happen
2840 * again at bind time.
2841 */
Eric Anholt856fa192009-03-19 14:10:50 -07002842 if (obj_priv->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002843 return;
2844
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002845 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002846
Eric Anholt856fa192009-03-19 14:10:50 -07002847 drm_clflush_pages(obj_priv->pages, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002848}
2849
Eric Anholte47c68e2008-11-14 13:35:19 -08002850/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002851static int
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002852i915_gem_object_flush_gpu_write_domain(struct drm_gem_object *obj,
2853 bool pipelined)
Eric Anholte47c68e2008-11-14 13:35:19 -08002854{
2855 struct drm_device *dev = obj->dev;
Eric Anholte47c68e2008-11-14 13:35:19 -08002856
2857 if ((obj->write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002858 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002859
2860 /* Queue the GPU write cache flushing we need. */
Chris Wilsonc78ec302010-09-20 12:50:23 +01002861 i915_gem_flush_ring(dev, NULL,
Chris Wilson92204342010-09-18 11:02:01 +01002862 to_intel_bo(obj)->ring,
2863 0, obj->write_domain);
Chris Wilson48b956c2010-09-14 12:50:34 +01002864 BUG_ON(obj->write_domain);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002865
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002866 if (pipelined)
2867 return 0;
2868
Chris Wilson2cf34d72010-09-14 13:03:28 +01002869 return i915_gem_object_wait_rendering(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08002870}
2871
2872/** Flushes the GTT write domain for the object if it's dirty. */
2873static void
2874i915_gem_object_flush_gtt_write_domain(struct drm_gem_object *obj)
2875{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002876 uint32_t old_write_domain;
2877
Eric Anholte47c68e2008-11-14 13:35:19 -08002878 if (obj->write_domain != I915_GEM_DOMAIN_GTT)
2879 return;
2880
2881 /* No actual flushing is required for the GTT write domain. Writes
2882 * to it immediately go to main memory as far as we know, so there's
2883 * no chipset flush. It also doesn't land in render cache.
2884 */
Chris Wilson4a684a42010-10-28 14:44:08 +01002885 i915_gem_release_mmap(obj);
2886
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002887 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002888 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002889
2890 trace_i915_gem_object_change_domain(obj,
2891 obj->read_domains,
2892 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002893}
2894
2895/** Flushes the CPU write domain for the object if it's dirty. */
2896static void
2897i915_gem_object_flush_cpu_write_domain(struct drm_gem_object *obj)
2898{
2899 struct drm_device *dev = obj->dev;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002900 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002901
2902 if (obj->write_domain != I915_GEM_DOMAIN_CPU)
2903 return;
2904
2905 i915_gem_clflush_object(obj);
2906 drm_agp_chipset_flush(dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002907 old_write_domain = obj->write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002908 obj->write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002909
2910 trace_i915_gem_object_change_domain(obj,
2911 obj->read_domains,
2912 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002913}
2914
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002915/**
2916 * Moves a single object to the GTT read, and possibly write domain.
2917 *
2918 * This function returns when the move is complete, including waiting on
2919 * flushes to occur.
2920 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002921int
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002922i915_gem_object_set_to_gtt_domain(struct drm_gem_object *obj, int write)
2923{
Daniel Vetter23010e42010-03-08 13:35:02 +01002924 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002925 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002926 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002927
Eric Anholt02354392008-11-26 13:58:13 -08002928 /* Not valid to be called on unbound objects. */
2929 if (obj_priv->gtt_space == NULL)
2930 return -EINVAL;
2931
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002932 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002933 if (ret != 0)
2934 return ret;
2935
Chris Wilson72133422010-09-13 23:56:38 +01002936 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002937
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002938 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01002939 ret = i915_gem_object_wait_rendering(obj, true);
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002940 if (ret)
2941 return ret;
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002942 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002943
2944 old_write_domain = obj->write_domain;
2945 old_read_domains = obj->read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002946
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002947 /* It should now be out of any other write domains, and we can update
2948 * the domain values for our changes.
2949 */
2950 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2951 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002952 if (write) {
Chris Wilson72133422010-09-13 23:56:38 +01002953 obj->read_domains = I915_GEM_DOMAIN_GTT;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002954 obj->write_domain = I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002955 obj_priv->dirty = 1;
2956 }
2957
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002958 trace_i915_gem_object_change_domain(obj,
2959 old_read_domains,
2960 old_write_domain);
2961
Eric Anholte47c68e2008-11-14 13:35:19 -08002962 return 0;
2963}
2964
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002965/*
2966 * Prepare buffer for display plane. Use uninterruptible for possible flush
2967 * wait, as in modesetting process we're not supposed to be interrupted.
2968 */
2969int
Chris Wilson48b956c2010-09-14 12:50:34 +01002970i915_gem_object_set_to_display_plane(struct drm_gem_object *obj,
2971 bool pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002972{
Daniel Vetter23010e42010-03-08 13:35:02 +01002973 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002974 uint32_t old_read_domains;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002975 int ret;
2976
2977 /* Not valid to be called on unbound objects. */
2978 if (obj_priv->gtt_space == NULL)
2979 return -EINVAL;
2980
Chris Wilsonced270f2010-09-26 22:47:46 +01002981 ret = i915_gem_object_flush_gpu_write_domain(obj, true);
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002982 if (ret)
2983 return ret;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002984
Chris Wilsonced270f2010-09-26 22:47:46 +01002985 /* Currently, we are always called from an non-interruptible context. */
2986 if (!pipelined) {
2987 ret = i915_gem_object_wait_rendering(obj, false);
2988 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002989 return ret;
2990 }
2991
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002992 i915_gem_object_flush_cpu_write_domain(obj);
2993
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002994 old_read_domains = obj->read_domains;
Chris Wilsonc78ec302010-09-20 12:50:23 +01002995 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002996
2997 trace_i915_gem_object_change_domain(obj,
2998 old_read_domains,
Daniel Vetterba3d8d72010-02-11 22:37:04 +01002999 obj->write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003000
3001 return 0;
3002}
3003
Eric Anholte47c68e2008-11-14 13:35:19 -08003004/**
3005 * Moves a single object to the CPU read, and possibly write domain.
3006 *
3007 * This function returns when the move is complete, including waiting on
3008 * flushes to occur.
3009 */
3010static int
3011i915_gem_object_set_to_cpu_domain(struct drm_gem_object *obj, int write)
3012{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003013 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003014 int ret;
3015
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003016 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003017 if (ret != 0)
3018 return ret;
3019
3020 i915_gem_object_flush_gtt_write_domain(obj);
3021
3022 /* If we have a partially-valid cache of the object in the CPU,
3023 * finish invalidating it and free the per-page flags.
3024 */
3025 i915_gem_object_set_to_full_cpu_read_domain(obj);
3026
Chris Wilson72133422010-09-13 23:56:38 +01003027 if (write) {
Chris Wilson2cf34d72010-09-14 13:03:28 +01003028 ret = i915_gem_object_wait_rendering(obj, true);
Chris Wilson72133422010-09-13 23:56:38 +01003029 if (ret)
3030 return ret;
3031 }
3032
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003033 old_write_domain = obj->write_domain;
3034 old_read_domains = obj->read_domains;
3035
Eric Anholte47c68e2008-11-14 13:35:19 -08003036 /* Flush the CPU cache if it's still invalid. */
3037 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
3038 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003039
3040 obj->read_domains |= I915_GEM_DOMAIN_CPU;
3041 }
3042
3043 /* It should now be out of any other write domains, and we can update
3044 * the domain values for our changes.
3045 */
3046 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
3047
3048 /* If we're writing through the CPU, then the GPU read domains will
3049 * need to be invalidated at next use.
3050 */
3051 if (write) {
Chris Wilsonc78ec302010-09-20 12:50:23 +01003052 obj->read_domains = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003053 obj->write_domain = I915_GEM_DOMAIN_CPU;
3054 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003055
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003056 trace_i915_gem_object_change_domain(obj,
3057 old_read_domains,
3058 old_write_domain);
3059
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003060 return 0;
3061}
3062
Eric Anholt673a3942008-07-30 12:06:12 -07003063/*
3064 * Set the next domain for the specified object. This
3065 * may not actually perform the necessary flushing/invaliding though,
3066 * as that may want to be batched with other set_domain operations
3067 *
3068 * This is (we hope) the only really tricky part of gem. The goal
3069 * is fairly simple -- track which caches hold bits of the object
3070 * and make sure they remain coherent. A few concrete examples may
3071 * help to explain how it works. For shorthand, we use the notation
3072 * (read_domains, write_domain), e.g. (CPU, CPU) to indicate the
3073 * a pair of read and write domain masks.
3074 *
3075 * Case 1: the batch buffer
3076 *
3077 * 1. Allocated
3078 * 2. Written by CPU
3079 * 3. Mapped to GTT
3080 * 4. Read by GPU
3081 * 5. Unmapped from GTT
3082 * 6. Freed
3083 *
3084 * Let's take these a step at a time
3085 *
3086 * 1. Allocated
3087 * Pages allocated from the kernel may still have
3088 * cache contents, so we set them to (CPU, CPU) always.
3089 * 2. Written by CPU (using pwrite)
3090 * The pwrite function calls set_domain (CPU, CPU) and
3091 * this function does nothing (as nothing changes)
3092 * 3. Mapped by GTT
3093 * This function asserts that the object is not
3094 * currently in any GPU-based read or write domains
3095 * 4. Read by GPU
3096 * i915_gem_execbuffer calls set_domain (COMMAND, 0).
3097 * As write_domain is zero, this function adds in the
3098 * current read domains (CPU+COMMAND, 0).
3099 * flush_domains is set to CPU.
3100 * invalidate_domains is set to COMMAND
3101 * clflush is run to get data out of the CPU caches
3102 * then i915_dev_set_domain calls i915_gem_flush to
3103 * emit an MI_FLUSH and drm_agp_chipset_flush
3104 * 5. Unmapped from GTT
3105 * i915_gem_object_unbind calls set_domain (CPU, CPU)
3106 * flush_domains and invalidate_domains end up both zero
3107 * so no flushing/invalidating happens
3108 * 6. Freed
3109 * yay, done
3110 *
3111 * Case 2: The shared render buffer
3112 *
3113 * 1. Allocated
3114 * 2. Mapped to GTT
3115 * 3. Read/written by GPU
3116 * 4. set_domain to (CPU,CPU)
3117 * 5. Read/written by CPU
3118 * 6. Read/written by GPU
3119 *
3120 * 1. Allocated
3121 * Same as last example, (CPU, CPU)
3122 * 2. Mapped to GTT
3123 * Nothing changes (assertions find that it is not in the GPU)
3124 * 3. Read/written by GPU
3125 * execbuffer calls set_domain (RENDER, RENDER)
3126 * flush_domains gets CPU
3127 * invalidate_domains gets GPU
3128 * clflush (obj)
3129 * MI_FLUSH and drm_agp_chipset_flush
3130 * 4. set_domain (CPU, CPU)
3131 * flush_domains gets GPU
3132 * invalidate_domains gets CPU
3133 * wait_rendering (obj) to make sure all drawing is complete.
3134 * This will include an MI_FLUSH to get the data from GPU
3135 * to memory
3136 * clflush (obj) to invalidate the CPU cache
3137 * Another MI_FLUSH in i915_gem_flush (eliminate this somehow?)
3138 * 5. Read/written by CPU
3139 * cache lines are loaded and dirtied
3140 * 6. Read written by GPU
3141 * Same as last GPU access
3142 *
3143 * Case 3: The constant buffer
3144 *
3145 * 1. Allocated
3146 * 2. Written by CPU
3147 * 3. Read by GPU
3148 * 4. Updated (written) by CPU again
3149 * 5. Read by GPU
3150 *
3151 * 1. Allocated
3152 * (CPU, CPU)
3153 * 2. Written by CPU
3154 * (CPU, CPU)
3155 * 3. Read by GPU
3156 * (CPU+RENDER, 0)
3157 * flush_domains = CPU
3158 * invalidate_domains = RENDER
3159 * clflush (obj)
3160 * MI_FLUSH
3161 * drm_agp_chipset_flush
3162 * 4. Updated (written) by CPU again
3163 * (CPU, CPU)
3164 * flush_domains = 0 (no previous write domain)
3165 * invalidate_domains = 0 (no new read domains)
3166 * 5. Read by GPU
3167 * (CPU+RENDER, 0)
3168 * flush_domains = CPU
3169 * invalidate_domains = RENDER
3170 * clflush (obj)
3171 * MI_FLUSH
3172 * drm_agp_chipset_flush
3173 */
Keith Packardc0d90822008-11-20 23:11:08 -08003174static void
Chris Wilsonb6651452010-10-23 10:15:06 +01003175i915_gem_object_set_to_gpu_domain(struct drm_gem_object *obj,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003176 struct intel_ring_buffer *ring,
3177 struct change_domains *cd)
Eric Anholt673a3942008-07-30 12:06:12 -07003178{
Daniel Vetter23010e42010-03-08 13:35:02 +01003179 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003180 uint32_t invalidate_domains = 0;
3181 uint32_t flush_domains = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003182
Eric Anholt673a3942008-07-30 12:06:12 -07003183 /*
3184 * If the object isn't moving to a new write domain,
3185 * let the object stay in multiple read domains
3186 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003187 if (obj->pending_write_domain == 0)
3188 obj->pending_read_domains |= obj->read_domains;
Eric Anholt673a3942008-07-30 12:06:12 -07003189
3190 /*
3191 * Flush the current write domain if
3192 * the new read domains don't match. Invalidate
3193 * any read domains which differ from the old
3194 * write domain
3195 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003196 if (obj->write_domain &&
Chris Wilson13b29282010-11-01 12:22:48 +00003197 (obj->write_domain != obj->pending_read_domains ||
3198 obj_priv->ring != ring)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003199 flush_domains |= obj->write_domain;
Eric Anholt8b0e3782009-02-19 14:40:50 -08003200 invalidate_domains |=
3201 obj->pending_read_domains & ~obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003202 }
3203 /*
3204 * Invalidate any read caches which may have
3205 * stale data. That is, any new read domains.
3206 */
Eric Anholt8b0e3782009-02-19 14:40:50 -08003207 invalidate_domains |= obj->pending_read_domains & ~obj->read_domains;
Chris Wilson3d2a8122010-09-29 11:39:53 +01003208 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_CPU)
Eric Anholt673a3942008-07-30 12:06:12 -07003209 i915_gem_clflush_object(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07003210
Chris Wilson4a684a42010-10-28 14:44:08 +01003211 /* blow away mappings if mapped through GTT */
3212 if ((flush_domains | invalidate_domains) & I915_GEM_DOMAIN_GTT)
3213 i915_gem_release_mmap(obj);
3214
Eric Anholtefbeed92009-02-19 14:54:51 -08003215 /* The actual obj->write_domain will be updated with
3216 * pending_write_domain after we emit the accumulated flush for all
3217 * of our domain changes in execbuffers (which clears objects'
3218 * write_domains). So if we have a current write domain that we
3219 * aren't changing, set pending_write_domain to that.
3220 */
3221 if (flush_domains == 0 && obj->pending_write_domain == 0)
3222 obj->pending_write_domain = obj->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07003223
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003224 cd->invalidate_domains |= invalidate_domains;
3225 cd->flush_domains |= flush_domains;
Chris Wilsonb6651452010-10-23 10:15:06 +01003226 if (flush_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003227 cd->flush_rings |= obj_priv->ring->id;
Chris Wilsonb6651452010-10-23 10:15:06 +01003228 if (invalidate_domains & I915_GEM_GPU_DOMAINS)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003229 cd->flush_rings |= ring->id;
Eric Anholt673a3942008-07-30 12:06:12 -07003230}
3231
3232/**
Eric Anholte47c68e2008-11-14 13:35:19 -08003233 * Moves the object from a partially CPU read to a full one.
Eric Anholt673a3942008-07-30 12:06:12 -07003234 *
Eric Anholte47c68e2008-11-14 13:35:19 -08003235 * Note that this only resolves i915_gem_object_set_cpu_read_domain_range(),
3236 * and doesn't handle transitioning from !(read_domains & I915_GEM_DOMAIN_CPU).
3237 */
3238static void
3239i915_gem_object_set_to_full_cpu_read_domain(struct drm_gem_object *obj)
3240{
Daniel Vetter23010e42010-03-08 13:35:02 +01003241 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003242
3243 if (!obj_priv->page_cpu_valid)
3244 return;
3245
3246 /* If we're partially in the CPU read domain, finish moving it in.
3247 */
3248 if (obj->read_domains & I915_GEM_DOMAIN_CPU) {
3249 int i;
3250
3251 for (i = 0; i <= (obj->size - 1) / PAGE_SIZE; i++) {
3252 if (obj_priv->page_cpu_valid[i])
3253 continue;
Eric Anholt856fa192009-03-19 14:10:50 -07003254 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholte47c68e2008-11-14 13:35:19 -08003255 }
Eric Anholte47c68e2008-11-14 13:35:19 -08003256 }
3257
3258 /* Free the page_cpu_valid mappings which are now stale, whether
3259 * or not we've got I915_GEM_DOMAIN_CPU.
3260 */
Eric Anholt9a298b22009-03-24 12:23:04 -07003261 kfree(obj_priv->page_cpu_valid);
Eric Anholte47c68e2008-11-14 13:35:19 -08003262 obj_priv->page_cpu_valid = NULL;
3263}
3264
3265/**
3266 * Set the CPU read domain on a range of the object.
3267 *
3268 * The object ends up with I915_GEM_DOMAIN_CPU in its read flags although it's
3269 * not entirely valid. The page_cpu_valid member of the object flags which
3270 * pages have been flushed, and will be respected by
3271 * i915_gem_object_set_to_cpu_domain() if it's called on to get a valid mapping
3272 * of the whole object.
3273 *
3274 * This function returns when the move is complete, including waiting on
3275 * flushes to occur.
Eric Anholt673a3942008-07-30 12:06:12 -07003276 */
3277static int
Eric Anholte47c68e2008-11-14 13:35:19 -08003278i915_gem_object_set_cpu_read_domain_range(struct drm_gem_object *obj,
3279 uint64_t offset, uint64_t size)
Eric Anholt673a3942008-07-30 12:06:12 -07003280{
Daniel Vetter23010e42010-03-08 13:35:02 +01003281 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003282 uint32_t old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003283 int i, ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003284
Eric Anholte47c68e2008-11-14 13:35:19 -08003285 if (offset == 0 && size == obj->size)
3286 return i915_gem_object_set_to_cpu_domain(obj, 0);
3287
Daniel Vetterba3d8d72010-02-11 22:37:04 +01003288 ret = i915_gem_object_flush_gpu_write_domain(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003289 if (ret != 0)
3290 return ret;
3291 i915_gem_object_flush_gtt_write_domain(obj);
3292
3293 /* If we're already fully in the CPU read domain, we're done. */
3294 if (obj_priv->page_cpu_valid == NULL &&
3295 (obj->read_domains & I915_GEM_DOMAIN_CPU) != 0)
Eric Anholt673a3942008-07-30 12:06:12 -07003296 return 0;
3297
Eric Anholte47c68e2008-11-14 13:35:19 -08003298 /* Otherwise, create/clear the per-page CPU read domain flag if we're
3299 * newly adding I915_GEM_DOMAIN_CPU
3300 */
Eric Anholt673a3942008-07-30 12:06:12 -07003301 if (obj_priv->page_cpu_valid == NULL) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003302 obj_priv->page_cpu_valid = kzalloc(obj->size / PAGE_SIZE,
3303 GFP_KERNEL);
Eric Anholte47c68e2008-11-14 13:35:19 -08003304 if (obj_priv->page_cpu_valid == NULL)
3305 return -ENOMEM;
3306 } else if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0)
3307 memset(obj_priv->page_cpu_valid, 0, obj->size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07003308
3309 /* Flush the cache on any pages that are still invalid from the CPU's
3310 * perspective.
3311 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003312 for (i = offset / PAGE_SIZE; i <= (offset + size - 1) / PAGE_SIZE;
3313 i++) {
Eric Anholt673a3942008-07-30 12:06:12 -07003314 if (obj_priv->page_cpu_valid[i])
3315 continue;
3316
Eric Anholt856fa192009-03-19 14:10:50 -07003317 drm_clflush_pages(obj_priv->pages + i, 1);
Eric Anholt673a3942008-07-30 12:06:12 -07003318
3319 obj_priv->page_cpu_valid[i] = 1;
3320 }
3321
Eric Anholte47c68e2008-11-14 13:35:19 -08003322 /* It should now be out of any other write domains, and we can update
3323 * the domain values for our changes.
3324 */
3325 BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
3326
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003327 old_read_domains = obj->read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003328 obj->read_domains |= I915_GEM_DOMAIN_CPU;
3329
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003330 trace_i915_gem_object_change_domain(obj,
3331 old_read_domains,
3332 obj->write_domain);
3333
Eric Anholt673a3942008-07-30 12:06:12 -07003334 return 0;
3335}
3336
3337/**
Eric Anholt673a3942008-07-30 12:06:12 -07003338 * Pin an object to the GTT and evaluate the relocations landing in it.
3339 */
3340static int
Chris Wilson9af90d12010-10-17 10:01:56 +01003341i915_gem_execbuffer_relocate(struct drm_i915_gem_object *obj,
3342 struct drm_file *file_priv,
3343 struct drm_i915_gem_exec_object2 *entry)
Eric Anholt673a3942008-07-30 12:06:12 -07003344{
Chris Wilson9af90d12010-10-17 10:01:56 +01003345 struct drm_device *dev = obj->base.dev;
Keith Packard0839ccb2008-10-30 19:38:48 -07003346 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson2549d6c2010-10-14 12:10:41 +01003347 struct drm_i915_gem_relocation_entry __user *user_relocs;
Chris Wilson9af90d12010-10-17 10:01:56 +01003348 struct drm_gem_object *target_obj = NULL;
3349 uint32_t target_handle = 0;
3350 int i, ret = 0;
Jesse Barnes76446ca2009-12-17 22:05:42 -05003351
Chris Wilson2549d6c2010-10-14 12:10:41 +01003352 user_relocs = (void __user *)(uintptr_t)entry->relocs_ptr;
Eric Anholt673a3942008-07-30 12:06:12 -07003353 for (i = 0; i < entry->relocation_count; i++) {
Chris Wilson2549d6c2010-10-14 12:10:41 +01003354 struct drm_i915_gem_relocation_entry reloc;
Chris Wilson9af90d12010-10-17 10:01:56 +01003355 uint32_t target_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003356
Chris Wilson9af90d12010-10-17 10:01:56 +01003357 if (__copy_from_user_inatomic(&reloc,
3358 user_relocs+i,
3359 sizeof(reloc))) {
3360 ret = -EFAULT;
3361 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003362 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003363
Chris Wilson9af90d12010-10-17 10:01:56 +01003364 if (reloc.target_handle != target_handle) {
3365 drm_gem_object_unreference(target_obj);
3366
3367 target_obj = drm_gem_object_lookup(dev, file_priv,
3368 reloc.target_handle);
3369 if (target_obj == NULL) {
3370 ret = -ENOENT;
3371 break;
3372 }
3373
3374 target_handle = reloc.target_handle;
Eric Anholt673a3942008-07-30 12:06:12 -07003375 }
Chris Wilson9af90d12010-10-17 10:01:56 +01003376 target_offset = to_intel_bo(target_obj)->gtt_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003377
Chris Wilson8542a0b2009-09-09 21:15:15 +01003378#if WATCH_RELOC
3379 DRM_INFO("%s: obj %p offset %08x target %d "
3380 "read %08x write %08x gtt %08x "
3381 "presumed %08x delta %08x\n",
3382 __func__,
3383 obj,
Chris Wilson2549d6c2010-10-14 12:10:41 +01003384 (int) reloc.offset,
3385 (int) reloc.target_handle,
3386 (int) reloc.read_domains,
3387 (int) reloc.write_domain,
Chris Wilson9af90d12010-10-17 10:01:56 +01003388 (int) target_offset,
Chris Wilson2549d6c2010-10-14 12:10:41 +01003389 (int) reloc.presumed_offset,
3390 reloc.delta);
Chris Wilson8542a0b2009-09-09 21:15:15 +01003391#endif
3392
Eric Anholt673a3942008-07-30 12:06:12 -07003393 /* The target buffer should have appeared before us in the
3394 * exec_object list, so it should have a GTT space bound by now.
3395 */
Chris Wilson9af90d12010-10-17 10:01:56 +01003396 if (target_offset == 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07003397 DRM_ERROR("No GTT space found for object %d\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003398 reloc.target_handle);
Chris Wilson9af90d12010-10-17 10:01:56 +01003399 ret = -EINVAL;
3400 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003401 }
3402
Chris Wilson8542a0b2009-09-09 21:15:15 +01003403 /* Validate that the target is in a valid r/w GPU domain */
Chris Wilson2549d6c2010-10-14 12:10:41 +01003404 if (reloc.write_domain & (reloc.write_domain - 1)) {
Daniel Vetter16edd552010-02-19 11:52:02 +01003405 DRM_ERROR("reloc with multiple write domains: "
3406 "obj %p target %d offset %d "
3407 "read %08x write %08x",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003408 obj, reloc.target_handle,
3409 (int) reloc.offset,
3410 reloc.read_domains,
3411 reloc.write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003412 ret = -EINVAL;
3413 break;
Daniel Vetter16edd552010-02-19 11:52:02 +01003414 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003415 if (reloc.write_domain & I915_GEM_DOMAIN_CPU ||
3416 reloc.read_domains & I915_GEM_DOMAIN_CPU) {
Chris Wilson8542a0b2009-09-09 21:15:15 +01003417 DRM_ERROR("reloc with read/write CPU domains: "
3418 "obj %p target %d offset %d "
3419 "read %08x write %08x",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003420 obj, reloc.target_handle,
3421 (int) reloc.offset,
3422 reloc.read_domains,
3423 reloc.write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003424 ret = -EINVAL;
3425 break;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003426 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003427 if (reloc.write_domain && target_obj->pending_write_domain &&
3428 reloc.write_domain != target_obj->pending_write_domain) {
Chris Wilson8542a0b2009-09-09 21:15:15 +01003429 DRM_ERROR("Write domain conflict: "
3430 "obj %p target %d offset %d "
3431 "new %08x old %08x\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003432 obj, reloc.target_handle,
3433 (int) reloc.offset,
3434 reloc.write_domain,
Chris Wilson8542a0b2009-09-09 21:15:15 +01003435 target_obj->pending_write_domain);
Chris Wilson9af90d12010-10-17 10:01:56 +01003436 ret = -EINVAL;
3437 break;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003438 }
3439
Chris Wilson2549d6c2010-10-14 12:10:41 +01003440 target_obj->pending_read_domains |= reloc.read_domains;
Chris Wilson878a3c32010-10-22 10:48:12 +01003441 target_obj->pending_write_domain |= reloc.write_domain;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003442
3443 /* If the relocation already has the right value in it, no
3444 * more work needs to be done.
3445 */
Chris Wilson9af90d12010-10-17 10:01:56 +01003446 if (target_offset == reloc.presumed_offset)
Chris Wilson8542a0b2009-09-09 21:15:15 +01003447 continue;
Chris Wilson8542a0b2009-09-09 21:15:15 +01003448
3449 /* Check that the relocation address is valid... */
Chris Wilson9af90d12010-10-17 10:01:56 +01003450 if (reloc.offset > obj->base.size - 4) {
Eric Anholt673a3942008-07-30 12:06:12 -07003451 DRM_ERROR("Relocation beyond object bounds: "
3452 "obj %p target %d offset %d size %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003453 obj, reloc.target_handle,
Chris Wilson9af90d12010-10-17 10:01:56 +01003454 (int) reloc.offset, (int) obj->base.size);
3455 ret = -EINVAL;
3456 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003457 }
Chris Wilson2549d6c2010-10-14 12:10:41 +01003458 if (reloc.offset & 3) {
Eric Anholt673a3942008-07-30 12:06:12 -07003459 DRM_ERROR("Relocation not 4-byte aligned: "
3460 "obj %p target %d offset %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003461 obj, reloc.target_handle,
3462 (int) reloc.offset);
Chris Wilson9af90d12010-10-17 10:01:56 +01003463 ret = -EINVAL;
3464 break;
Eric Anholt673a3942008-07-30 12:06:12 -07003465 }
3466
Chris Wilson8542a0b2009-09-09 21:15:15 +01003467 /* and points to somewhere within the target object. */
Chris Wilson2549d6c2010-10-14 12:10:41 +01003468 if (reloc.delta >= target_obj->size) {
Chris Wilsoncd0b9fb2009-09-15 23:23:18 +01003469 DRM_ERROR("Relocation beyond target object bounds: "
3470 "obj %p target %d delta %d size %d.\n",
Chris Wilson2549d6c2010-10-14 12:10:41 +01003471 obj, reloc.target_handle,
3472 (int) reloc.delta, (int) target_obj->size);
Chris Wilson9af90d12010-10-17 10:01:56 +01003473 ret = -EINVAL;
3474 break;
Eric Anholte47c68e2008-11-14 13:35:19 -08003475 }
3476
Chris Wilson9af90d12010-10-17 10:01:56 +01003477 reloc.delta += target_offset;
3478 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU) {
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003479 uint32_t page_offset = reloc.offset & ~PAGE_MASK;
3480 char *vaddr;
3481
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003482 vaddr = kmap_atomic(obj->pages[reloc.offset >> PAGE_SHIFT]);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003483 *(uint32_t *)(vaddr + page_offset) = reloc.delta;
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003484 kunmap_atomic(vaddr);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003485 } else {
3486 uint32_t __iomem *reloc_entry;
3487 void __iomem *reloc_page;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003488
Chris Wilson9af90d12010-10-17 10:01:56 +01003489 ret = i915_gem_object_set_to_gtt_domain(&obj->base, 1);
3490 if (ret)
3491 break;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003492
3493 /* Map the page containing the relocation we're going to perform. */
Chris Wilson9af90d12010-10-17 10:01:56 +01003494 reloc.offset += obj->gtt_offset;
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003495 reloc_page = io_mapping_map_atomic_wc(dev_priv->mm.gtt_mapping,
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003496 reloc.offset & PAGE_MASK);
Chris Wilsonf0c43d92010-10-14 12:44:48 +01003497 reloc_entry = (uint32_t __iomem *)
3498 (reloc_page + (reloc.offset & ~PAGE_MASK));
3499 iowrite32(reloc.delta, reloc_entry);
Linus Torvaldsc48c43e2010-10-26 18:57:59 -07003500 io_mapping_unmap_atomic(reloc_page);
Eric Anholt673a3942008-07-30 12:06:12 -07003501 }
3502
Chris Wilsonb5dc6082010-10-20 20:59:57 +01003503 /* and update the user's relocation entry */
3504 reloc.presumed_offset = target_offset;
3505 if (__copy_to_user_inatomic(&user_relocs[i].presumed_offset,
3506 &reloc.presumed_offset,
3507 sizeof(reloc.presumed_offset))) {
3508 ret = -EFAULT;
3509 break;
3510 }
Eric Anholt673a3942008-07-30 12:06:12 -07003511 }
3512
Chris Wilson9af90d12010-10-17 10:01:56 +01003513 drm_gem_object_unreference(target_obj);
3514 return ret;
3515}
3516
3517static int
3518i915_gem_execbuffer_pin(struct drm_device *dev,
3519 struct drm_file *file,
3520 struct drm_gem_object **object_list,
3521 struct drm_i915_gem_exec_object2 *exec_list,
3522 int count)
3523{
3524 struct drm_i915_private *dev_priv = dev->dev_private;
3525 int ret, i, retry;
3526
3527 /* attempt to pin all of the buffers into the GTT */
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003528 retry = 0;
3529 do {
Chris Wilson9af90d12010-10-17 10:01:56 +01003530 ret = 0;
3531 for (i = 0; i < count; i++) {
3532 struct drm_i915_gem_exec_object2 *entry = &exec_list[i];
Daniel Vetter16e809a2010-09-16 19:37:04 +02003533 struct drm_i915_gem_object *obj = to_intel_bo(object_list[i]);
Chris Wilson9af90d12010-10-17 10:01:56 +01003534 bool need_fence =
3535 entry->flags & EXEC_OBJECT_NEEDS_FENCE &&
3536 obj->tiling_mode != I915_TILING_NONE;
3537
Daniel Vetter16e809a2010-09-16 19:37:04 +02003538 /* g33/pnv can't fence buffers in the unmappable part */
3539 bool need_mappable =
3540 entry->relocation_count ? true : need_fence;
3541
Chris Wilson9af90d12010-10-17 10:01:56 +01003542 /* Check fence reg constraints and rebind if necessary */
Daniel Vetter75e9e912010-11-04 17:11:09 +01003543 if (need_mappable && !obj->map_and_fenceable) {
Chris Wilson9af90d12010-10-17 10:01:56 +01003544 ret = i915_gem_object_unbind(&obj->base);
3545 if (ret)
3546 break;
3547 }
3548
Daniel Vetter920afa72010-09-16 17:54:23 +02003549 ret = i915_gem_object_pin(&obj->base,
Daniel Vetter16e809a2010-09-16 19:37:04 +02003550 entry->alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003551 need_mappable);
Chris Wilson9af90d12010-10-17 10:01:56 +01003552 if (ret)
3553 break;
3554
3555 /*
3556 * Pre-965 chips need a fence register set up in order
3557 * to properly handle blits to/from tiled surfaces.
3558 */
3559 if (need_fence) {
3560 ret = i915_gem_object_get_fence_reg(&obj->base, true);
3561 if (ret) {
3562 i915_gem_object_unpin(&obj->base);
3563 break;
3564 }
3565
3566 dev_priv->fence_regs[obj->fence_reg].gpu = true;
3567 }
3568
3569 entry->offset = obj->gtt_offset;
3570 }
3571
3572 while (i--)
3573 i915_gem_object_unpin(object_list[i]);
3574
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003575 if (ret != -ENOSPC || retry > 1)
Chris Wilson9af90d12010-10-17 10:01:56 +01003576 return ret;
3577
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003578 /* First attempt, just clear anything that is purgeable.
3579 * Second attempt, clear the entire GTT.
3580 */
3581 ret = i915_gem_evict_everything(dev, retry == 0);
Chris Wilson9af90d12010-10-17 10:01:56 +01003582 if (ret)
3583 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003584
Chris Wilson5eac3ab2010-10-31 08:49:47 +00003585 retry++;
3586 } while (1);
Eric Anholt673a3942008-07-30 12:06:12 -07003587}
3588
Chris Wilson13b29282010-11-01 12:22:48 +00003589static int
3590i915_gem_execbuffer_move_to_gpu(struct drm_device *dev,
3591 struct drm_file *file,
3592 struct intel_ring_buffer *ring,
3593 struct drm_gem_object **objects,
3594 int count)
3595{
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003596 struct change_domains cd;
Chris Wilson13b29282010-11-01 12:22:48 +00003597 int ret, i;
3598
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003599 cd.invalidate_domains = 0;
3600 cd.flush_domains = 0;
3601 cd.flush_rings = 0;
Chris Wilson13b29282010-11-01 12:22:48 +00003602 for (i = 0; i < count; i++)
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003603 i915_gem_object_set_to_gpu_domain(objects[i], ring, &cd);
Chris Wilson13b29282010-11-01 12:22:48 +00003604
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003605 if (cd.invalidate_domains | cd.flush_domains) {
Chris Wilson13b29282010-11-01 12:22:48 +00003606#if WATCH_EXEC
3607 DRM_INFO("%s: invalidate_domains %08x flush_domains %08x\n",
3608 __func__,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003609 cd.invalidate_domains,
3610 cd.flush_domains);
Chris Wilson13b29282010-11-01 12:22:48 +00003611#endif
3612 i915_gem_flush(dev, file,
Chris Wilson0f8c6d72010-11-01 12:38:44 +00003613 cd.invalidate_domains,
3614 cd.flush_domains,
3615 cd.flush_rings);
Chris Wilson13b29282010-11-01 12:22:48 +00003616 }
3617
3618 for (i = 0; i < count; i++) {
3619 struct drm_i915_gem_object *obj = to_intel_bo(objects[i]);
3620 /* XXX replace with semaphores */
3621 if (obj->ring && ring != obj->ring) {
3622 ret = i915_gem_object_wait_rendering(&obj->base, true);
3623 if (ret)
3624 return ret;
3625 }
3626 }
3627
3628 return 0;
3629}
3630
Eric Anholt673a3942008-07-30 12:06:12 -07003631/* Throttle our rendering by waiting until the ring has completed our requests
3632 * emitted over 20 msec ago.
3633 *
Eric Anholtb9624422009-06-03 07:27:35 +00003634 * Note that if we were to use the current jiffies each time around the loop,
3635 * we wouldn't escape the function with any frames outstanding if the time to
3636 * render a frame was over 20ms.
3637 *
Eric Anholt673a3942008-07-30 12:06:12 -07003638 * This should get us reasonable parallelism between CPU and GPU but also
3639 * relatively low latency when blocking on a particular request to finish.
3640 */
3641static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003642i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003643{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003644 struct drm_i915_private *dev_priv = dev->dev_private;
3645 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003646 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003647 struct drm_i915_gem_request *request;
3648 struct intel_ring_buffer *ring = NULL;
3649 u32 seqno = 0;
3650 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003651
Chris Wilson1c255952010-09-26 11:03:27 +01003652 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003653 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003654 if (time_after_eq(request->emitted_jiffies, recent_enough))
3655 break;
3656
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003657 ring = request->ring;
3658 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003659 }
Chris Wilson1c255952010-09-26 11:03:27 +01003660 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003661
3662 if (seqno == 0)
3663 return 0;
3664
3665 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003666 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003667 /* And wait for the seqno passing without holding any locks and
3668 * causing extra latency for others. This is safe as the irq
3669 * generation is designed to be run atomically and so is
3670 * lockless.
3671 */
Chris Wilson78501ea2010-10-27 12:18:21 +01003672 ring->user_irq_get(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003673 ret = wait_event_interruptible(ring->irq_queue,
Chris Wilson78501ea2010-10-27 12:18:21 +01003674 i915_seqno_passed(ring->get_seqno(ring), seqno)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003675 || atomic_read(&dev_priv->mm.wedged));
Chris Wilson78501ea2010-10-27 12:18:21 +01003676 ring->user_irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003677
3678 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3679 ret = -EIO;
3680 }
3681
3682 if (ret == 0)
3683 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003684
Eric Anholt673a3942008-07-30 12:06:12 -07003685 return ret;
3686}
3687
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003688static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003689i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec,
3690 uint64_t exec_offset)
Chris Wilson83d60792009-06-06 09:45:57 +01003691{
3692 uint32_t exec_start, exec_len;
3693
3694 exec_start = (uint32_t) exec_offset + exec->batch_start_offset;
3695 exec_len = (uint32_t) exec->batch_len;
3696
3697 if ((exec_start | exec_len) & 0x7)
3698 return -EINVAL;
3699
3700 if (!exec_start)
3701 return -EINVAL;
3702
3703 return 0;
3704}
3705
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003706static int
Chris Wilson2549d6c2010-10-14 12:10:41 +01003707validate_exec_list(struct drm_i915_gem_exec_object2 *exec,
3708 int count)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003709{
Chris Wilson2549d6c2010-10-14 12:10:41 +01003710 int i;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003711
Chris Wilson2549d6c2010-10-14 12:10:41 +01003712 for (i = 0; i < count; i++) {
3713 char __user *ptr = (char __user *)(uintptr_t)exec[i].relocs_ptr;
3714 size_t length = exec[i].relocation_count * sizeof(struct drm_i915_gem_relocation_entry);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003715
Chris Wilson2549d6c2010-10-14 12:10:41 +01003716 if (!access_ok(VERIFY_READ, ptr, length))
3717 return -EFAULT;
3718
Chris Wilsonb5dc6082010-10-20 20:59:57 +01003719 /* we may also need to update the presumed offsets */
3720 if (!access_ok(VERIFY_WRITE, ptr, length))
3721 return -EFAULT;
3722
Chris Wilson2549d6c2010-10-14 12:10:41 +01003723 if (fault_in_pages_readable(ptr, length))
3724 return -EFAULT;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003725 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003726
Chris Wilson2549d6c2010-10-14 12:10:41 +01003727 return 0;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003728}
3729
Chris Wilson2549d6c2010-10-14 12:10:41 +01003730static int
Jesse Barnes76446ca2009-12-17 22:05:42 -05003731i915_gem_do_execbuffer(struct drm_device *dev, void *data,
Chris Wilson9af90d12010-10-17 10:01:56 +01003732 struct drm_file *file,
Jesse Barnes76446ca2009-12-17 22:05:42 -05003733 struct drm_i915_gem_execbuffer2 *args,
3734 struct drm_i915_gem_exec_object2 *exec_list)
Eric Anholt673a3942008-07-30 12:06:12 -07003735{
3736 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07003737 struct drm_gem_object **object_list = NULL;
3738 struct drm_gem_object *batch_obj;
Eric Anholt201361a2009-03-11 12:30:04 -07003739 struct drm_clip_rect *cliprects = NULL;
Chris Wilson8dc5d142010-08-12 12:36:12 +01003740 struct drm_i915_gem_request *request = NULL;
Chris Wilson9af90d12010-10-17 10:01:56 +01003741 int ret, i, flips;
Eric Anholt673a3942008-07-30 12:06:12 -07003742 uint64_t exec_offset;
Eric Anholt673a3942008-07-30 12:06:12 -07003743
Zou Nan hai852835f2010-05-21 09:08:56 +08003744 struct intel_ring_buffer *ring = NULL;
3745
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003746 ret = i915_gem_check_is_wedged(dev);
3747 if (ret)
3748 return ret;
3749
Chris Wilson2549d6c2010-10-14 12:10:41 +01003750 ret = validate_exec_list(exec_list, args->buffer_count);
3751 if (ret)
3752 return ret;
3753
Eric Anholt673a3942008-07-30 12:06:12 -07003754#if WATCH_EXEC
3755 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
3756 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
3757#endif
Chris Wilson549f7362010-10-19 11:19:32 +01003758 switch (args->flags & I915_EXEC_RING_MASK) {
3759 case I915_EXEC_DEFAULT:
3760 case I915_EXEC_RENDER:
3761 ring = &dev_priv->render_ring;
3762 break;
3763 case I915_EXEC_BSD:
Zou Nan haid1b851f2010-05-21 09:08:57 +08003764 if (!HAS_BSD(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01003765 DRM_ERROR("execbuf with invalid ring (BSD)\n");
Zou Nan haid1b851f2010-05-21 09:08:57 +08003766 return -EINVAL;
3767 }
3768 ring = &dev_priv->bsd_ring;
Chris Wilson549f7362010-10-19 11:19:32 +01003769 break;
3770 case I915_EXEC_BLT:
3771 if (!HAS_BLT(dev)) {
3772 DRM_ERROR("execbuf with invalid ring (BLT)\n");
3773 return -EINVAL;
3774 }
3775 ring = &dev_priv->blt_ring;
3776 break;
3777 default:
3778 DRM_ERROR("execbuf with unknown ring: %d\n",
3779 (int)(args->flags & I915_EXEC_RING_MASK));
3780 return -EINVAL;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003781 }
3782
Eric Anholt4f481ed2008-09-10 14:22:49 -07003783 if (args->buffer_count < 1) {
3784 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
3785 return -EINVAL;
3786 }
Eric Anholtc8e0f932009-11-22 03:49:37 +01003787 object_list = drm_malloc_ab(sizeof(*object_list), args->buffer_count);
Jesse Barnes76446ca2009-12-17 22:05:42 -05003788 if (object_list == NULL) {
3789 DRM_ERROR("Failed to allocate object list for %d buffers\n",
Eric Anholt673a3942008-07-30 12:06:12 -07003790 args->buffer_count);
3791 ret = -ENOMEM;
3792 goto pre_mutex_err;
3793 }
Eric Anholt673a3942008-07-30 12:06:12 -07003794
Eric Anholt201361a2009-03-11 12:30:04 -07003795 if (args->num_cliprects != 0) {
Eric Anholt9a298b22009-03-24 12:23:04 -07003796 cliprects = kcalloc(args->num_cliprects, sizeof(*cliprects),
3797 GFP_KERNEL);
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003798 if (cliprects == NULL) {
3799 ret = -ENOMEM;
Eric Anholt201361a2009-03-11 12:30:04 -07003800 goto pre_mutex_err;
Owain Ainswortha40e8d32010-02-09 14:25:55 +00003801 }
Eric Anholt201361a2009-03-11 12:30:04 -07003802
3803 ret = copy_from_user(cliprects,
3804 (struct drm_clip_rect __user *)
3805 (uintptr_t) args->cliprects_ptr,
3806 sizeof(*cliprects) * args->num_cliprects);
3807 if (ret != 0) {
3808 DRM_ERROR("copy %d cliprects failed: %d\n",
3809 args->num_cliprects, ret);
Dan Carpenterc877cdc2010-06-23 19:03:01 +02003810 ret = -EFAULT;
Eric Anholt201361a2009-03-11 12:30:04 -07003811 goto pre_mutex_err;
3812 }
3813 }
3814
Chris Wilson8dc5d142010-08-12 12:36:12 +01003815 request = kzalloc(sizeof(*request), GFP_KERNEL);
3816 if (request == NULL) {
3817 ret = -ENOMEM;
Chris Wilsona198bc82009-02-06 16:55:20 +00003818 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003819 }
3820
Chris Wilson76c1dec2010-09-25 11:22:51 +01003821 ret = i915_mutex_lock_interruptible(dev);
3822 if (ret)
3823 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003824
Eric Anholt673a3942008-07-30 12:06:12 -07003825 if (dev_priv->mm.suspended) {
Eric Anholt673a3942008-07-30 12:06:12 -07003826 mutex_unlock(&dev->struct_mutex);
Chris Wilsona198bc82009-02-06 16:55:20 +00003827 ret = -EBUSY;
3828 goto pre_mutex_err;
Eric Anholt673a3942008-07-30 12:06:12 -07003829 }
3830
Keith Packardac94a962008-11-20 23:30:27 -08003831 /* Look up object handles */
Eric Anholt673a3942008-07-30 12:06:12 -07003832 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson7e318e12010-10-27 13:43:39 +01003833 struct drm_i915_gem_object *obj_priv;
3834
Chris Wilson9af90d12010-10-17 10:01:56 +01003835 object_list[i] = drm_gem_object_lookup(dev, file,
Eric Anholt673a3942008-07-30 12:06:12 -07003836 exec_list[i].handle);
3837 if (object_list[i] == NULL) {
3838 DRM_ERROR("Invalid object handle %d at index %d\n",
3839 exec_list[i].handle, i);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003840 /* prevent error path from reading uninitialized data */
3841 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003842 ret = -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07003843 goto err;
3844 }
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003845
Daniel Vetter23010e42010-03-08 13:35:02 +01003846 obj_priv = to_intel_bo(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003847 if (obj_priv->in_execbuffer) {
3848 DRM_ERROR("Object %p appears more than once in object list\n",
3849 object_list[i]);
Chris Wilson0ce907f2010-01-23 20:26:35 +00003850 /* prevent error path from reading uninitialized data */
3851 args->buffer_count = i + 1;
Chris Wilsonbf79cb92010-08-04 14:19:46 +01003852 ret = -EINVAL;
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003853 goto err;
3854 }
3855 obj_priv->in_execbuffer = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003856 }
3857
Chris Wilson9af90d12010-10-17 10:01:56 +01003858 /* Move the objects en-masse into the GTT, evicting if necessary. */
3859 ret = i915_gem_execbuffer_pin(dev, file,
3860 object_list, exec_list,
3861 args->buffer_count);
3862 if (ret)
3863 goto err;
Eric Anholt40a5f0d2009-03-12 11:23:52 -07003864
Chris Wilson9af90d12010-10-17 10:01:56 +01003865 /* The objects are in their final locations, apply the relocations. */
3866 for (i = 0; i < args->buffer_count; i++) {
3867 struct drm_i915_gem_object *obj = to_intel_bo(object_list[i]);
3868 obj->base.pending_read_domains = 0;
3869 obj->base.pending_write_domain = 0;
3870 ret = i915_gem_execbuffer_relocate(obj, file, &exec_list[i]);
Eric Anholt673a3942008-07-30 12:06:12 -07003871 if (ret)
3872 goto err;
3873 }
3874
Eric Anholt673a3942008-07-30 12:06:12 -07003875 /* Set the pending read domains for the batch buffer to COMMAND */
3876 batch_obj = object_list[args->buffer_count-1];
Chris Wilson5f26a2c2009-06-06 09:45:58 +01003877 if (batch_obj->pending_write_domain) {
3878 DRM_ERROR("Attempting to use self-modifying batch buffer\n");
3879 ret = -EINVAL;
3880 goto err;
3881 }
3882 batch_obj->pending_read_domains |= I915_GEM_DOMAIN_COMMAND;
Eric Anholt673a3942008-07-30 12:06:12 -07003883
Chris Wilson9af90d12010-10-17 10:01:56 +01003884 /* Sanity check the batch buffer */
3885 exec_offset = to_intel_bo(batch_obj)->gtt_offset;
3886 ret = i915_gem_check_execbuffer(args, exec_offset);
Chris Wilson83d60792009-06-06 09:45:57 +01003887 if (ret != 0) {
3888 DRM_ERROR("execbuf with invalid offset/length\n");
3889 goto err;
3890 }
3891
Chris Wilson13b29282010-11-01 12:22:48 +00003892 ret = i915_gem_execbuffer_move_to_gpu(dev, file, ring,
3893 object_list, args->buffer_count);
3894 if (ret)
3895 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07003896
Eric Anholt673a3942008-07-30 12:06:12 -07003897#if WATCH_COHERENCY
3898 for (i = 0; i < args->buffer_count; i++) {
3899 i915_gem_object_check_coherency(object_list[i],
3900 exec_list[i].handle);
3901 }
3902#endif
3903
Eric Anholt673a3942008-07-30 12:06:12 -07003904#if WATCH_EXEC
Ben Gamari6911a9b2009-04-02 11:24:54 -07003905 i915_gem_dump_object(batch_obj,
Eric Anholt673a3942008-07-30 12:06:12 -07003906 args->batch_len,
3907 __func__,
3908 ~0);
3909#endif
3910
Chris Wilsone59f2ba2010-10-07 17:28:15 +01003911 /* Check for any pending flips. As we only maintain a flip queue depth
3912 * of 1, we can simply insert a WAIT for the next display flip prior
3913 * to executing the batch and avoid stalling the CPU.
3914 */
3915 flips = 0;
3916 for (i = 0; i < args->buffer_count; i++) {
3917 if (object_list[i]->write_domain)
3918 flips |= atomic_read(&to_intel_bo(object_list[i])->pending_flip);
3919 }
3920 if (flips) {
3921 int plane, flip_mask;
3922
3923 for (plane = 0; flips >> plane; plane++) {
3924 if (((flips >> plane) & 1) == 0)
3925 continue;
3926
3927 if (plane)
3928 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
3929 else
3930 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
3931
Chris Wilsone1f99ce2010-10-27 12:45:26 +01003932 ret = intel_ring_begin(ring, 2);
3933 if (ret)
3934 goto err;
3935
Chris Wilson78501ea2010-10-27 12:18:21 +01003936 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
3937 intel_ring_emit(ring, MI_NOOP);
3938 intel_ring_advance(ring);
Chris Wilsone59f2ba2010-10-07 17:28:15 +01003939 }
3940 }
3941
Eric Anholt673a3942008-07-30 12:06:12 -07003942 /* Exec the batchbuffer */
Chris Wilson78501ea2010-10-27 12:18:21 +01003943 ret = ring->dispatch_execbuffer(ring, args, cliprects, exec_offset);
Eric Anholt673a3942008-07-30 12:06:12 -07003944 if (ret) {
3945 DRM_ERROR("dispatch failed %d\n", ret);
3946 goto err;
3947 }
3948
Chris Wilson7e318e12010-10-27 13:43:39 +01003949 for (i = 0; i < args->buffer_count; i++) {
3950 struct drm_gem_object *obj = object_list[i];
3951
3952 obj->read_domains = obj->pending_read_domains;
3953 obj->write_domain = obj->pending_write_domain;
3954
3955 i915_gem_object_move_to_active(obj, ring);
3956 if (obj->write_domain) {
3957 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
3958 obj_priv->dirty = 1;
3959 list_move_tail(&obj_priv->gpu_write_list,
3960 &ring->gpu_write_list);
3961 intel_mark_busy(dev, obj);
3962 }
3963
3964 trace_i915_gem_object_change_domain(obj,
3965 obj->read_domains,
3966 obj->write_domain);
3967 }
3968
Eric Anholt673a3942008-07-30 12:06:12 -07003969 /*
3970 * Ensure that the commands in the batch buffer are
3971 * finished before the interrupt fires
3972 */
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003973 i915_retire_commands(dev, ring);
Eric Anholt673a3942008-07-30 12:06:12 -07003974
Chris Wilson3cce4692010-10-27 16:11:02 +01003975 if (i915_add_request(dev, file, request, ring))
3976 ring->outstanding_lazy_request = true;
3977 else
3978 request = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07003979
Eric Anholt673a3942008-07-30 12:06:12 -07003980err:
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003981 for (i = 0; i < args->buffer_count; i++) {
Chris Wilson7e318e12010-10-27 13:43:39 +01003982 if (object_list[i] == NULL)
3983 break;
3984
3985 to_intel_bo(object_list[i])->in_execbuffer = false;
Julia Lawallaad87df2008-12-21 16:28:47 +01003986 drm_gem_object_unreference(object_list[i]);
Kristian Høgsbergb70d11d2009-03-03 14:45:57 -05003987 }
Julia Lawallaad87df2008-12-21 16:28:47 +01003988
Eric Anholt673a3942008-07-30 12:06:12 -07003989 mutex_unlock(&dev->struct_mutex);
3990
Chris Wilson93533c22010-01-31 10:40:48 +00003991pre_mutex_err:
Jesse Barnes8e7d2b22009-05-08 16:13:25 -07003992 drm_free_large(object_list);
Eric Anholt9a298b22009-03-24 12:23:04 -07003993 kfree(cliprects);
Chris Wilson8dc5d142010-08-12 12:36:12 +01003994 kfree(request);
Eric Anholt673a3942008-07-30 12:06:12 -07003995
3996 return ret;
3997}
3998
Jesse Barnes76446ca2009-12-17 22:05:42 -05003999/*
4000 * Legacy execbuffer just creates an exec2 list from the original exec object
4001 * list array and passes it to the real function.
4002 */
4003int
4004i915_gem_execbuffer(struct drm_device *dev, void *data,
4005 struct drm_file *file_priv)
4006{
4007 struct drm_i915_gem_execbuffer *args = data;
4008 struct drm_i915_gem_execbuffer2 exec2;
4009 struct drm_i915_gem_exec_object *exec_list = NULL;
4010 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4011 int ret, i;
4012
4013#if WATCH_EXEC
4014 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4015 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4016#endif
4017
4018 if (args->buffer_count < 1) {
4019 DRM_ERROR("execbuf with %d buffers\n", args->buffer_count);
4020 return -EINVAL;
4021 }
4022
4023 /* Copy in the exec list from userland */
4024 exec_list = drm_malloc_ab(sizeof(*exec_list), args->buffer_count);
4025 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4026 if (exec_list == NULL || exec2_list == NULL) {
4027 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4028 args->buffer_count);
4029 drm_free_large(exec_list);
4030 drm_free_large(exec2_list);
4031 return -ENOMEM;
4032 }
4033 ret = copy_from_user(exec_list,
4034 (struct drm_i915_relocation_entry __user *)
4035 (uintptr_t) args->buffers_ptr,
4036 sizeof(*exec_list) * args->buffer_count);
4037 if (ret != 0) {
4038 DRM_ERROR("copy %d exec entries failed %d\n",
4039 args->buffer_count, ret);
4040 drm_free_large(exec_list);
4041 drm_free_large(exec2_list);
4042 return -EFAULT;
4043 }
4044
4045 for (i = 0; i < args->buffer_count; i++) {
4046 exec2_list[i].handle = exec_list[i].handle;
4047 exec2_list[i].relocation_count = exec_list[i].relocation_count;
4048 exec2_list[i].relocs_ptr = exec_list[i].relocs_ptr;
4049 exec2_list[i].alignment = exec_list[i].alignment;
4050 exec2_list[i].offset = exec_list[i].offset;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004051 if (INTEL_INFO(dev)->gen < 4)
Jesse Barnes76446ca2009-12-17 22:05:42 -05004052 exec2_list[i].flags = EXEC_OBJECT_NEEDS_FENCE;
4053 else
4054 exec2_list[i].flags = 0;
4055 }
4056
4057 exec2.buffers_ptr = args->buffers_ptr;
4058 exec2.buffer_count = args->buffer_count;
4059 exec2.batch_start_offset = args->batch_start_offset;
4060 exec2.batch_len = args->batch_len;
4061 exec2.DR1 = args->DR1;
4062 exec2.DR4 = args->DR4;
4063 exec2.num_cliprects = args->num_cliprects;
4064 exec2.cliprects_ptr = args->cliprects_ptr;
Zou Nan hai852835f2010-05-21 09:08:56 +08004065 exec2.flags = I915_EXEC_RENDER;
Jesse Barnes76446ca2009-12-17 22:05:42 -05004066
4067 ret = i915_gem_do_execbuffer(dev, data, file_priv, &exec2, exec2_list);
4068 if (!ret) {
4069 /* Copy the new buffer offsets back to the user's exec list. */
4070 for (i = 0; i < args->buffer_count; i++)
4071 exec_list[i].offset = exec2_list[i].offset;
4072 /* ... and back out to userspace */
4073 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4074 (uintptr_t) args->buffers_ptr,
4075 exec_list,
4076 sizeof(*exec_list) * args->buffer_count);
4077 if (ret) {
4078 ret = -EFAULT;
4079 DRM_ERROR("failed to copy %d exec entries "
4080 "back to user (%d)\n",
4081 args->buffer_count, ret);
4082 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004083 }
4084
4085 drm_free_large(exec_list);
4086 drm_free_large(exec2_list);
4087 return ret;
4088}
4089
4090int
4091i915_gem_execbuffer2(struct drm_device *dev, void *data,
4092 struct drm_file *file_priv)
4093{
4094 struct drm_i915_gem_execbuffer2 *args = data;
4095 struct drm_i915_gem_exec_object2 *exec2_list = NULL;
4096 int ret;
4097
4098#if WATCH_EXEC
4099 DRM_INFO("buffers_ptr %d buffer_count %d len %08x\n",
4100 (int) args->buffers_ptr, args->buffer_count, args->batch_len);
4101#endif
4102
4103 if (args->buffer_count < 1) {
4104 DRM_ERROR("execbuf2 with %d buffers\n", args->buffer_count);
4105 return -EINVAL;
4106 }
4107
4108 exec2_list = drm_malloc_ab(sizeof(*exec2_list), args->buffer_count);
4109 if (exec2_list == NULL) {
4110 DRM_ERROR("Failed to allocate exec list for %d buffers\n",
4111 args->buffer_count);
4112 return -ENOMEM;
4113 }
4114 ret = copy_from_user(exec2_list,
4115 (struct drm_i915_relocation_entry __user *)
4116 (uintptr_t) args->buffers_ptr,
4117 sizeof(*exec2_list) * args->buffer_count);
4118 if (ret != 0) {
4119 DRM_ERROR("copy %d exec entries failed %d\n",
4120 args->buffer_count, ret);
4121 drm_free_large(exec2_list);
4122 return -EFAULT;
4123 }
4124
4125 ret = i915_gem_do_execbuffer(dev, data, file_priv, args, exec2_list);
4126 if (!ret) {
4127 /* Copy the new buffer offsets back to the user's exec list. */
4128 ret = copy_to_user((struct drm_i915_relocation_entry __user *)
4129 (uintptr_t) args->buffers_ptr,
4130 exec2_list,
4131 sizeof(*exec2_list) * args->buffer_count);
4132 if (ret) {
4133 ret = -EFAULT;
4134 DRM_ERROR("failed to copy %d exec entries "
4135 "back to user (%d)\n",
4136 args->buffer_count, ret);
4137 }
4138 }
4139
4140 drm_free_large(exec2_list);
4141 return ret;
4142}
4143
Eric Anholt673a3942008-07-30 12:06:12 -07004144int
Daniel Vetter920afa72010-09-16 17:54:23 +02004145i915_gem_object_pin(struct drm_gem_object *obj, uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004146 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07004147{
4148 struct drm_device *dev = obj->dev;
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004149 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01004150 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004151 int ret;
4152
Daniel Vetter778c3542010-05-13 11:49:44 +02004153 BUG_ON(obj_priv->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Daniel Vetter75e9e912010-11-04 17:11:09 +01004154 BUG_ON(map_and_fenceable && !map_and_fenceable);
Chris Wilson23bc5982010-09-29 16:10:57 +01004155 WARN_ON(i915_verify_lists(dev));
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004156
4157 if (obj_priv->gtt_space != NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004158 if ((alignment && obj_priv->gtt_offset & (alignment - 1)) ||
Daniel Vetter75e9e912010-11-04 17:11:09 +01004159 (map_and_fenceable && !obj_priv->map_and_fenceable)) {
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004160 WARN(obj_priv->pin_count,
4161 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004162 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
4163 " obj->map_and_fenceable=%d\n",
Chris Wilsona00b10c2010-09-24 21:15:47 +01004164 obj_priv->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004165 map_and_fenceable,
4166 obj_priv->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004167 ret = i915_gem_object_unbind(obj);
4168 if (ret)
4169 return ret;
4170 }
4171 }
4172
Eric Anholt673a3942008-07-30 12:06:12 -07004173 if (obj_priv->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01004174 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01004175 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01004176 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07004177 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00004178 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004179
Chris Wilson74653782010-10-29 10:41:23 +01004180 if (obj_priv->pin_count++ == 0) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01004181 i915_gem_info_add_pin(dev_priv, obj_priv, map_and_fenceable);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004182 if (!obj_priv->active)
Chris Wilson69dc4982010-10-19 10:36:51 +01004183 list_move_tail(&obj_priv->mm_list,
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004184 &dev_priv->mm.pinned_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004185 }
Daniel Vetter75e9e912010-11-04 17:11:09 +01004186 BUG_ON(!obj_priv->pin_mappable && map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07004187
Chris Wilson23bc5982010-09-29 16:10:57 +01004188 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004189 return 0;
4190}
4191
4192void
4193i915_gem_object_unpin(struct drm_gem_object *obj)
4194{
4195 struct drm_device *dev = obj->dev;
4196 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter23010e42010-03-08 13:35:02 +01004197 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004198
Chris Wilson23bc5982010-09-29 16:10:57 +01004199 WARN_ON(i915_verify_lists(dev));
Chris Wilson74653782010-10-29 10:41:23 +01004200 BUG_ON(obj_priv->pin_count == 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004201 BUG_ON(obj_priv->gtt_space == NULL);
4202
Chris Wilson74653782010-10-29 10:41:23 +01004203 if (--obj_priv->pin_count == 0) {
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004204 if (!obj_priv->active)
Chris Wilson69dc4982010-10-19 10:36:51 +01004205 list_move_tail(&obj_priv->mm_list,
Eric Anholt673a3942008-07-30 12:06:12 -07004206 &dev_priv->mm.inactive_list);
Chris Wilsona00b10c2010-09-24 21:15:47 +01004207 i915_gem_info_remove_pin(dev_priv, obj_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004208 }
Chris Wilson23bc5982010-09-29 16:10:57 +01004209 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07004210}
4211
4212int
4213i915_gem_pin_ioctl(struct drm_device *dev, void *data,
4214 struct drm_file *file_priv)
4215{
4216 struct drm_i915_gem_pin *args = data;
4217 struct drm_gem_object *obj;
4218 struct drm_i915_gem_object *obj_priv;
4219 int ret;
4220
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004221 ret = i915_mutex_lock_interruptible(dev);
4222 if (ret)
4223 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004224
4225 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4226 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004227 ret = -ENOENT;
4228 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004229 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004230 obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004231
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004232 if (obj_priv->madv != I915_MADV_WILLNEED) {
4233 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004234 ret = -EINVAL;
4235 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004236 }
4237
Jesse Barnes79e53942008-11-07 14:24:08 -08004238 if (obj_priv->pin_filp != NULL && obj_priv->pin_filp != file_priv) {
4239 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
4240 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004241 ret = -EINVAL;
4242 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004243 }
4244
4245 obj_priv->user_pin_count++;
4246 obj_priv->pin_filp = file_priv;
4247 if (obj_priv->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01004248 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004249 if (ret)
4250 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004251 }
4252
4253 /* XXX - flush the CPU caches for pinned objects
4254 * as the X server doesn't manage domains yet
4255 */
Eric Anholte47c68e2008-11-14 13:35:19 -08004256 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004257 args->offset = obj_priv->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004258out:
Eric Anholt673a3942008-07-30 12:06:12 -07004259 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004260unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004261 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004262 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004263}
4264
4265int
4266i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
4267 struct drm_file *file_priv)
4268{
4269 struct drm_i915_gem_pin *args = data;
4270 struct drm_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08004271 struct drm_i915_gem_object *obj_priv;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004272 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004273
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004274 ret = i915_mutex_lock_interruptible(dev);
4275 if (ret)
4276 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004277
4278 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4279 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004280 ret = -ENOENT;
4281 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004282 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004283 obj_priv = to_intel_bo(obj);
Chris Wilson76c1dec2010-09-25 11:22:51 +01004284
Jesse Barnes79e53942008-11-07 14:24:08 -08004285 if (obj_priv->pin_filp != file_priv) {
4286 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
4287 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004288 ret = -EINVAL;
4289 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004290 }
4291 obj_priv->user_pin_count--;
4292 if (obj_priv->user_pin_count == 0) {
4293 obj_priv->pin_filp = NULL;
4294 i915_gem_object_unpin(obj);
4295 }
Eric Anholt673a3942008-07-30 12:06:12 -07004296
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004297out:
Eric Anholt673a3942008-07-30 12:06:12 -07004298 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004299unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004300 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004301 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004302}
4303
4304int
4305i915_gem_busy_ioctl(struct drm_device *dev, void *data,
4306 struct drm_file *file_priv)
4307{
4308 struct drm_i915_gem_busy *args = data;
4309 struct drm_gem_object *obj;
4310 struct drm_i915_gem_object *obj_priv;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004311 int ret;
4312
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004313 ret = i915_mutex_lock_interruptible(dev);
4314 if (ret)
4315 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004316
Eric Anholt673a3942008-07-30 12:06:12 -07004317 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4318 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004319 ret = -ENOENT;
4320 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004321 }
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004322 obj_priv = to_intel_bo(obj);
Zou Nan haid1b851f2010-05-21 09:08:57 +08004323
Chris Wilson0be555b2010-08-04 15:36:30 +01004324 /* Count all active objects as busy, even if they are currently not used
4325 * by the gpu. Users of this interface expect objects to eventually
4326 * become non-busy without any further actions, therefore emit any
4327 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004328 */
Chris Wilson0be555b2010-08-04 15:36:30 +01004329 args->busy = obj_priv->active;
4330 if (args->busy) {
4331 /* Unconditionally flush objects, even when the gpu still uses this
4332 * object. Userspace calling this function indicates that it wants to
4333 * use this buffer rather sooner than later, so issuing the required
4334 * flush earlier is beneficial.
4335 */
Chris Wilsonc78ec302010-09-20 12:50:23 +01004336 if (obj->write_domain & I915_GEM_GPU_DOMAINS)
4337 i915_gem_flush_ring(dev, file_priv,
Chris Wilson92204342010-09-18 11:02:01 +01004338 obj_priv->ring,
4339 0, obj->write_domain);
Chris Wilson0be555b2010-08-04 15:36:30 +01004340
4341 /* Update the active list for the hardware's current position.
4342 * Otherwise this only updates on a delayed timer or when irqs
4343 * are actually unmasked, and our working set ends up being
4344 * larger than required.
4345 */
4346 i915_gem_retire_requests_ring(dev, obj_priv->ring);
4347
4348 args->busy = obj_priv->active;
4349 }
Eric Anholt673a3942008-07-30 12:06:12 -07004350
4351 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004352unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004353 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004354 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004355}
4356
4357int
4358i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4359 struct drm_file *file_priv)
4360{
4361 return i915_gem_ring_throttle(dev, file_priv);
4362}
4363
Chris Wilson3ef94da2009-09-14 16:50:29 +01004364int
4365i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4366 struct drm_file *file_priv)
4367{
4368 struct drm_i915_gem_madvise *args = data;
4369 struct drm_gem_object *obj;
4370 struct drm_i915_gem_object *obj_priv;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004371 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004372
4373 switch (args->madv) {
4374 case I915_MADV_DONTNEED:
4375 case I915_MADV_WILLNEED:
4376 break;
4377 default:
4378 return -EINVAL;
4379 }
4380
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004381 ret = i915_mutex_lock_interruptible(dev);
4382 if (ret)
4383 return ret;
4384
Chris Wilson3ef94da2009-09-14 16:50:29 +01004385 obj = drm_gem_object_lookup(dev, file_priv, args->handle);
4386 if (obj == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004387 ret = -ENOENT;
4388 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004389 }
Daniel Vetter23010e42010-03-08 13:35:02 +01004390 obj_priv = to_intel_bo(obj);
Chris Wilson3ef94da2009-09-14 16:50:29 +01004391
4392 if (obj_priv->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004393 ret = -EINVAL;
4394 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004395 }
4396
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004397 if (obj_priv->madv != __I915_MADV_PURGED)
4398 obj_priv->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004399
Chris Wilson2d7ef392009-09-20 23:13:10 +01004400 /* if the object is no longer bound, discard its backing storage */
4401 if (i915_gem_object_is_purgeable(obj_priv) &&
4402 obj_priv->gtt_space == NULL)
4403 i915_gem_object_truncate(obj);
4404
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004405 args->retained = obj_priv->madv != __I915_MADV_PURGED;
4406
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004407out:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004408 drm_gem_object_unreference(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004409unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004410 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004411 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004412}
4413
Daniel Vetterac52bc52010-04-09 19:05:06 +00004414struct drm_gem_object * i915_gem_alloc_object(struct drm_device *dev,
4415 size_t size)
4416{
Chris Wilson73aa8082010-09-30 11:46:12 +01004417 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00004418 struct drm_i915_gem_object *obj;
4419
4420 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
4421 if (obj == NULL)
4422 return NULL;
4423
4424 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
4425 kfree(obj);
4426 return NULL;
4427 }
4428
Chris Wilson73aa8082010-09-30 11:46:12 +01004429 i915_gem_info_add_obj(dev_priv, size);
4430
Daniel Vetterc397b902010-04-09 19:05:07 +00004431 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4432 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4433
4434 obj->agp_type = AGP_USER_MEMORY;
Daniel Vetter62b8b212010-04-09 19:05:08 +00004435 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00004436 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01004437 INIT_LIST_HEAD(&obj->mm_list);
4438 INIT_LIST_HEAD(&obj->ring_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004439 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00004440 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01004441 /* Avoid an unnecessary call to unbind on the first bind. */
4442 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00004443
Daniel Vetterc397b902010-04-09 19:05:07 +00004444 return &obj->base;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004445}
4446
Eric Anholt673a3942008-07-30 12:06:12 -07004447int i915_gem_init_object(struct drm_gem_object *obj)
4448{
Daniel Vetterc397b902010-04-09 19:05:07 +00004449 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004450
Eric Anholt673a3942008-07-30 12:06:12 -07004451 return 0;
4452}
4453
Chris Wilsonbe726152010-07-23 23:18:50 +01004454static void i915_gem_free_object_tail(struct drm_gem_object *obj)
4455{
4456 struct drm_device *dev = obj->dev;
4457 drm_i915_private_t *dev_priv = dev->dev_private;
4458 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
4459 int ret;
4460
4461 ret = i915_gem_object_unbind(obj);
4462 if (ret == -ERESTARTSYS) {
Chris Wilson69dc4982010-10-19 10:36:51 +01004463 list_move(&obj_priv->mm_list,
Chris Wilsonbe726152010-07-23 23:18:50 +01004464 &dev_priv->mm.deferred_free_list);
4465 return;
4466 }
4467
Chris Wilson39a01d12010-10-28 13:03:06 +01004468 if (obj->map_list.map)
Chris Wilsonbe726152010-07-23 23:18:50 +01004469 i915_gem_free_mmap_offset(obj);
4470
4471 drm_gem_object_release(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +01004472 i915_gem_info_remove_obj(dev_priv, obj->size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004473
4474 kfree(obj_priv->page_cpu_valid);
4475 kfree(obj_priv->bit_17);
4476 kfree(obj_priv);
4477}
4478
Eric Anholt673a3942008-07-30 12:06:12 -07004479void i915_gem_free_object(struct drm_gem_object *obj)
4480{
Jesse Barnesde151cf2008-11-12 10:03:55 -08004481 struct drm_device *dev = obj->dev;
Daniel Vetter23010e42010-03-08 13:35:02 +01004482 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004483
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004484 trace_i915_gem_object_destroy(obj);
4485
Eric Anholt673a3942008-07-30 12:06:12 -07004486 while (obj_priv->pin_count > 0)
4487 i915_gem_object_unpin(obj);
4488
Dave Airlie71acb5e2008-12-30 20:31:46 +10004489 if (obj_priv->phys_obj)
4490 i915_gem_detach_phys_object(dev, obj);
4491
Chris Wilsonbe726152010-07-23 23:18:50 +01004492 i915_gem_free_object_tail(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004493}
4494
Jesse Barnes5669fca2009-02-17 15:13:31 -08004495int
Eric Anholt673a3942008-07-30 12:06:12 -07004496i915_gem_idle(struct drm_device *dev)
4497{
4498 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004499 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004500
Keith Packard6dbe2772008-10-14 21:41:13 -07004501 mutex_lock(&dev->struct_mutex);
4502
Chris Wilson87acb0a2010-10-19 10:13:00 +01004503 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004504 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004505 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004506 }
Eric Anholt673a3942008-07-30 12:06:12 -07004507
Chris Wilson29105cc2010-01-07 10:39:13 +00004508 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004509 if (ret) {
4510 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004511 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004512 }
Eric Anholt673a3942008-07-30 12:06:12 -07004513
Chris Wilson29105cc2010-01-07 10:39:13 +00004514 /* Under UMS, be paranoid and evict. */
4515 if (!drm_core_check_feature(dev, DRIVER_MODESET)) {
Chris Wilson5eac3ab2010-10-31 08:49:47 +00004516 ret = i915_gem_evict_inactive(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00004517 if (ret) {
4518 mutex_unlock(&dev->struct_mutex);
4519 return ret;
4520 }
4521 }
4522
4523 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4524 * We need to replace this with a semaphore, or something.
4525 * And not confound mm.suspended!
4526 */
4527 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02004528 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004529
4530 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004531 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004532
Keith Packard6dbe2772008-10-14 21:41:13 -07004533 mutex_unlock(&dev->struct_mutex);
4534
Chris Wilson29105cc2010-01-07 10:39:13 +00004535 /* Cancel the retire work handler, which should be idle now. */
4536 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4537
Eric Anholt673a3942008-07-30 12:06:12 -07004538 return 0;
4539}
4540
Jesse Barnese552eb72010-04-21 11:39:23 -07004541/*
4542 * 965+ support PIPE_CONTROL commands, which provide finer grained control
4543 * over cache flushing.
4544 */
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004545static int
Jesse Barnese552eb72010-04-21 11:39:23 -07004546i915_gem_init_pipe_control(struct drm_device *dev)
4547{
4548 drm_i915_private_t *dev_priv = dev->dev_private;
4549 struct drm_gem_object *obj;
4550 struct drm_i915_gem_object *obj_priv;
4551 int ret;
4552
Eric Anholt34dc4d42010-05-07 14:30:03 -07004553 obj = i915_gem_alloc_object(dev, 4096);
Jesse Barnese552eb72010-04-21 11:39:23 -07004554 if (obj == NULL) {
4555 DRM_ERROR("Failed to allocate seqno page\n");
4556 ret = -ENOMEM;
4557 goto err;
4558 }
4559 obj_priv = to_intel_bo(obj);
4560 obj_priv->agp_type = AGP_USER_CACHED_MEMORY;
4561
Daniel Vetter75e9e912010-11-04 17:11:09 +01004562 ret = i915_gem_object_pin(obj, 4096, true);
Jesse Barnese552eb72010-04-21 11:39:23 -07004563 if (ret)
4564 goto err_unref;
4565
4566 dev_priv->seqno_gfx_addr = obj_priv->gtt_offset;
4567 dev_priv->seqno_page = kmap(obj_priv->pages[0]);
4568 if (dev_priv->seqno_page == NULL)
4569 goto err_unpin;
4570
4571 dev_priv->seqno_obj = obj;
4572 memset(dev_priv->seqno_page, 0, PAGE_SIZE);
4573
4574 return 0;
4575
4576err_unpin:
4577 i915_gem_object_unpin(obj);
4578err_unref:
4579 drm_gem_object_unreference(obj);
4580err:
4581 return ret;
4582}
4583
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004584
4585static void
Jesse Barnese552eb72010-04-21 11:39:23 -07004586i915_gem_cleanup_pipe_control(struct drm_device *dev)
4587{
4588 drm_i915_private_t *dev_priv = dev->dev_private;
4589 struct drm_gem_object *obj;
4590 struct drm_i915_gem_object *obj_priv;
4591
4592 obj = dev_priv->seqno_obj;
4593 obj_priv = to_intel_bo(obj);
4594 kunmap(obj_priv->pages[0]);
4595 i915_gem_object_unpin(obj);
4596 drm_gem_object_unreference(obj);
4597 dev_priv->seqno_obj = NULL;
4598
4599 dev_priv->seqno_page = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07004600}
4601
Eric Anholt673a3942008-07-30 12:06:12 -07004602int
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004603i915_gem_init_ringbuffer(struct drm_device *dev)
4604{
4605 drm_i915_private_t *dev_priv = dev->dev_private;
4606 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004607
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004608 if (HAS_PIPE_CONTROL(dev)) {
4609 ret = i915_gem_init_pipe_control(dev);
4610 if (ret)
4611 return ret;
4612 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004613
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004614 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004615 if (ret)
4616 goto cleanup_pipe_control;
4617
4618 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004619 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004620 if (ret)
4621 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004622 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004623
Chris Wilson549f7362010-10-19 11:19:32 +01004624 if (HAS_BLT(dev)) {
4625 ret = intel_init_blt_ring_buffer(dev);
4626 if (ret)
4627 goto cleanup_bsd_ring;
4628 }
4629
Chris Wilson6f392d52010-08-07 11:01:22 +01004630 dev_priv->next_seqno = 1;
4631
Chris Wilson68f95ba2010-05-27 13:18:22 +01004632 return 0;
4633
Chris Wilson549f7362010-10-19 11:19:32 +01004634cleanup_bsd_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004635 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004636cleanup_render_ring:
Chris Wilson78501ea2010-10-27 12:18:21 +01004637 intel_cleanup_ring_buffer(&dev_priv->render_ring);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004638cleanup_pipe_control:
4639 if (HAS_PIPE_CONTROL(dev))
4640 i915_gem_cleanup_pipe_control(dev);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004641 return ret;
4642}
4643
4644void
4645i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4646{
4647 drm_i915_private_t *dev_priv = dev->dev_private;
4648
Chris Wilson78501ea2010-10-27 12:18:21 +01004649 intel_cleanup_ring_buffer(&dev_priv->render_ring);
4650 intel_cleanup_ring_buffer(&dev_priv->bsd_ring);
4651 intel_cleanup_ring_buffer(&dev_priv->blt_ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004652 if (HAS_PIPE_CONTROL(dev))
4653 i915_gem_cleanup_pipe_control(dev);
4654}
4655
4656int
Eric Anholt673a3942008-07-30 12:06:12 -07004657i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4658 struct drm_file *file_priv)
4659{
4660 drm_i915_private_t *dev_priv = dev->dev_private;
4661 int ret;
4662
Jesse Barnes79e53942008-11-07 14:24:08 -08004663 if (drm_core_check_feature(dev, DRIVER_MODESET))
4664 return 0;
4665
Ben Gamariba1234d2009-09-14 17:48:47 -04004666 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004667 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04004668 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004669 }
4670
Eric Anholt673a3942008-07-30 12:06:12 -07004671 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004672 dev_priv->mm.suspended = 0;
4673
4674 ret = i915_gem_init_ringbuffer(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004675 if (ret != 0) {
4676 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004677 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004678 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004679
Chris Wilson69dc4982010-10-19 10:36:51 +01004680 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004681 BUG_ON(!list_empty(&dev_priv->render_ring.active_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004682 BUG_ON(!list_empty(&dev_priv->bsd_ring.active_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004683 BUG_ON(!list_empty(&dev_priv->blt_ring.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004684 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
4685 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Zou Nan hai852835f2010-05-21 09:08:56 +08004686 BUG_ON(!list_empty(&dev_priv->render_ring.request_list));
Chris Wilson87acb0a2010-10-19 10:13:00 +01004687 BUG_ON(!list_empty(&dev_priv->bsd_ring.request_list));
Chris Wilson549f7362010-10-19 11:19:32 +01004688 BUG_ON(!list_empty(&dev_priv->blt_ring.request_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004689 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004690
Chris Wilson5f353082010-06-07 14:03:03 +01004691 ret = drm_irq_install(dev);
4692 if (ret)
4693 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004694
Eric Anholt673a3942008-07-30 12:06:12 -07004695 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004696
4697cleanup_ringbuffer:
4698 mutex_lock(&dev->struct_mutex);
4699 i915_gem_cleanup_ringbuffer(dev);
4700 dev_priv->mm.suspended = 1;
4701 mutex_unlock(&dev->struct_mutex);
4702
4703 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004704}
4705
4706int
4707i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4708 struct drm_file *file_priv)
4709{
Jesse Barnes79e53942008-11-07 14:24:08 -08004710 if (drm_core_check_feature(dev, DRIVER_MODESET))
4711 return 0;
4712
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004713 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07004714 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004715}
4716
4717void
4718i915_gem_lastclose(struct drm_device *dev)
4719{
4720 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004721
Eric Anholte806b492009-01-22 09:56:58 -08004722 if (drm_core_check_feature(dev, DRIVER_MODESET))
4723 return;
4724
Keith Packard6dbe2772008-10-14 21:41:13 -07004725 ret = i915_gem_idle(dev);
4726 if (ret)
4727 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004728}
4729
Chris Wilson64193402010-10-24 12:38:05 +01004730static void
4731init_ring_lists(struct intel_ring_buffer *ring)
4732{
4733 INIT_LIST_HEAD(&ring->active_list);
4734 INIT_LIST_HEAD(&ring->request_list);
4735 INIT_LIST_HEAD(&ring->gpu_write_list);
4736}
4737
Eric Anholt673a3942008-07-30 12:06:12 -07004738void
4739i915_gem_load(struct drm_device *dev)
4740{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004741 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07004742 drm_i915_private_t *dev_priv = dev->dev_private;
4743
Chris Wilson69dc4982010-10-19 10:36:51 +01004744 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004745 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
4746 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilsonf13d3f72010-09-20 17:36:15 +01004747 INIT_LIST_HEAD(&dev_priv->mm.pinned_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004748 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilsonbe726152010-07-23 23:18:50 +01004749 INIT_LIST_HEAD(&dev_priv->mm.deferred_free_list);
Chris Wilson64193402010-10-24 12:38:05 +01004750 init_ring_lists(&dev_priv->render_ring);
4751 init_ring_lists(&dev_priv->bsd_ring);
4752 init_ring_lists(&dev_priv->blt_ring);
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004753 for (i = 0; i < 16; i++)
4754 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004755 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4756 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004757 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01004758
Dave Airlie94400122010-07-20 13:15:31 +10004759 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4760 if (IS_GEN3(dev)) {
4761 u32 tmp = I915_READ(MI_ARB_STATE);
4762 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
4763 /* arb state is a masked write, so set bit + bit in mask */
4764 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
4765 I915_WRITE(MI_ARB_STATE, tmp);
4766 }
4767 }
4768
Jesse Barnesde151cf2008-11-12 10:03:55 -08004769 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004770 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4771 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004772
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004773 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004774 dev_priv->num_fence_regs = 16;
4775 else
4776 dev_priv->num_fence_regs = 8;
4777
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004778 /* Initialize fence registers to zero */
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004779 switch (INTEL_INFO(dev)->gen) {
4780 case 6:
4781 for (i = 0; i < 16; i++)
4782 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + (i * 8), 0);
4783 break;
4784 case 5:
4785 case 4:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004786 for (i = 0; i < 16; i++)
4787 I915_WRITE64(FENCE_REG_965_0 + (i * 8), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004788 break;
4789 case 3:
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004790 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4791 for (i = 0; i < 8; i++)
4792 I915_WRITE(FENCE_REG_945_8 + (i * 4), 0);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004793 case 2:
4794 for (i = 0; i < 8; i++)
4795 I915_WRITE(FENCE_REG_830_0 + (i * 4), 0);
4796 break;
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004797 }
Eric Anholt673a3942008-07-30 12:06:12 -07004798 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004799 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004800
4801 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4802 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4803 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004804}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004805
4806/*
4807 * Create a physically contiguous memory object for this object
4808 * e.g. for cursor + overlay regs
4809 */
Chris Wilson995b6762010-08-20 13:23:26 +01004810static int i915_gem_init_phys_object(struct drm_device *dev,
4811 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004812{
4813 drm_i915_private_t *dev_priv = dev->dev_private;
4814 struct drm_i915_gem_phys_object *phys_obj;
4815 int ret;
4816
4817 if (dev_priv->mm.phys_objs[id - 1] || !size)
4818 return 0;
4819
Eric Anholt9a298b22009-03-24 12:23:04 -07004820 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004821 if (!phys_obj)
4822 return -ENOMEM;
4823
4824 phys_obj->id = id;
4825
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004826 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004827 if (!phys_obj->handle) {
4828 ret = -ENOMEM;
4829 goto kfree_obj;
4830 }
4831#ifdef CONFIG_X86
4832 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4833#endif
4834
4835 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4836
4837 return 0;
4838kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004839 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004840 return ret;
4841}
4842
Chris Wilson995b6762010-08-20 13:23:26 +01004843static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004844{
4845 drm_i915_private_t *dev_priv = dev->dev_private;
4846 struct drm_i915_gem_phys_object *phys_obj;
4847
4848 if (!dev_priv->mm.phys_objs[id - 1])
4849 return;
4850
4851 phys_obj = dev_priv->mm.phys_objs[id - 1];
4852 if (phys_obj->cur_obj) {
4853 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4854 }
4855
4856#ifdef CONFIG_X86
4857 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4858#endif
4859 drm_pci_free(dev, phys_obj->handle);
4860 kfree(phys_obj);
4861 dev_priv->mm.phys_objs[id - 1] = NULL;
4862}
4863
4864void i915_gem_free_all_phys_object(struct drm_device *dev)
4865{
4866 int i;
4867
Dave Airlie260883c2009-01-22 17:58:49 +10004868 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004869 i915_gem_free_phys_object(dev, i);
4870}
4871
4872void i915_gem_detach_phys_object(struct drm_device *dev,
4873 struct drm_gem_object *obj)
4874{
Chris Wilsone5281cc2010-10-28 13:45:36 +01004875 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
4876 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
4877 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004878 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004879 int page_count;
4880
Dave Airlie71acb5e2008-12-30 20:31:46 +10004881 if (!obj_priv->phys_obj)
4882 return;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004883 vaddr = obj_priv->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004884
4885 page_count = obj->size / PAGE_SIZE;
4886
4887 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004888 struct page *page = read_cache_page_gfp(mapping, i,
4889 GFP_HIGHUSER | __GFP_RECLAIMABLE);
4890 if (!IS_ERR(page)) {
4891 char *dst = kmap_atomic(page);
4892 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4893 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004894
Chris Wilsone5281cc2010-10-28 13:45:36 +01004895 drm_clflush_pages(&page, 1);
4896
4897 set_page_dirty(page);
4898 mark_page_accessed(page);
4899 page_cache_release(page);
4900 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004901 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004902 drm_agp_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004903
Dave Airlie71acb5e2008-12-30 20:31:46 +10004904 obj_priv->phys_obj->cur_obj = NULL;
4905 obj_priv->phys_obj = NULL;
4906}
4907
4908int
4909i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004910 struct drm_gem_object *obj,
4911 int id,
4912 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004913{
Chris Wilsone5281cc2010-10-28 13:45:36 +01004914 struct address_space *mapping = obj->filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004915 drm_i915_private_t *dev_priv = dev->dev_private;
4916 struct drm_i915_gem_object *obj_priv;
4917 int ret = 0;
4918 int page_count;
4919 int i;
4920
4921 if (id > I915_MAX_PHYS_OBJECT)
4922 return -EINVAL;
4923
Daniel Vetter23010e42010-03-08 13:35:02 +01004924 obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004925
4926 if (obj_priv->phys_obj) {
4927 if (obj_priv->phys_obj->id == id)
4928 return 0;
4929 i915_gem_detach_phys_object(dev, obj);
4930 }
4931
Dave Airlie71acb5e2008-12-30 20:31:46 +10004932 /* create a new object */
4933 if (!dev_priv->mm.phys_objs[id - 1]) {
4934 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004935 obj->size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004936 if (ret) {
Linus Torvaldsaeb565d2009-01-26 10:01:53 -08004937 DRM_ERROR("failed to init phys object %d size: %zu\n", id, obj->size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004938 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004939 }
4940 }
4941
4942 /* bind to the object */
4943 obj_priv->phys_obj = dev_priv->mm.phys_objs[id - 1];
4944 obj_priv->phys_obj->cur_obj = obj;
4945
Dave Airlie71acb5e2008-12-30 20:31:46 +10004946 page_count = obj->size / PAGE_SIZE;
4947
4948 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004949 struct page *page;
4950 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004951
Chris Wilsone5281cc2010-10-28 13:45:36 +01004952 page = read_cache_page_gfp(mapping, i,
4953 GFP_HIGHUSER | __GFP_RECLAIMABLE);
4954 if (IS_ERR(page))
4955 return PTR_ERR(page);
4956
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004957 src = kmap_atomic(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004958 dst = obj_priv->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004959 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004960 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004961
4962 mark_page_accessed(page);
4963 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004964 }
4965
4966 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004967}
4968
4969static int
4970i915_gem_phys_pwrite(struct drm_device *dev, struct drm_gem_object *obj,
4971 struct drm_i915_gem_pwrite *args,
4972 struct drm_file *file_priv)
4973{
Daniel Vetter23010e42010-03-08 13:35:02 +01004974 struct drm_i915_gem_object *obj_priv = to_intel_bo(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004975 void *obj_addr;
4976 int ret;
4977 char __user *user_data;
4978
4979 user_data = (char __user *) (uintptr_t) args->data_ptr;
4980 obj_addr = obj_priv->phys_obj->handle->vaddr + args->offset;
4981
Zhao Yakui44d98a62009-10-09 11:39:40 +08004982 DRM_DEBUG_DRIVER("obj_addr %p, %lld\n", obj_addr, args->size);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004983 ret = copy_from_user(obj_addr, user_data, args->size);
4984 if (ret)
4985 return -EFAULT;
4986
4987 drm_agp_chipset_flush(dev);
4988 return 0;
4989}
Eric Anholtb9624422009-06-03 07:27:35 +00004990
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004991void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004992{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004993 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004994
4995 /* Clean up our request list when the client is going away, so that
4996 * later retire_requests won't dereference our soon-to-be-gone
4997 * file_priv.
4998 */
Chris Wilson1c255952010-09-26 11:03:27 +01004999 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005000 while (!list_empty(&file_priv->mm.request_list)) {
5001 struct drm_i915_gem_request *request;
5002
5003 request = list_first_entry(&file_priv->mm.request_list,
5004 struct drm_i915_gem_request,
5005 client_list);
5006 list_del(&request->client_list);
5007 request->file_priv = NULL;
5008 }
Chris Wilson1c255952010-09-26 11:03:27 +01005009 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005010}
Chris Wilson31169712009-09-14 16:50:28 +01005011
Chris Wilson31169712009-09-14 16:50:28 +01005012static int
Chris Wilson1637ef42010-04-20 17:10:35 +01005013i915_gpu_is_active(struct drm_device *dev)
5014{
5015 drm_i915_private_t *dev_priv = dev->dev_private;
5016 int lists_empty;
5017
Chris Wilson1637ef42010-04-20 17:10:35 +01005018 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01005019 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01005020
5021 return !lists_empty;
5022}
5023
5024static int
Chris Wilson17250b72010-10-28 12:51:39 +01005025i915_gem_inactive_shrink(struct shrinker *shrinker,
5026 int nr_to_scan,
5027 gfp_t gfp_mask)
Chris Wilson31169712009-09-14 16:50:28 +01005028{
Chris Wilson17250b72010-10-28 12:51:39 +01005029 struct drm_i915_private *dev_priv =
5030 container_of(shrinker,
5031 struct drm_i915_private,
5032 mm.inactive_shrinker);
5033 struct drm_device *dev = dev_priv->dev;
5034 struct drm_i915_gem_object *obj, *next;
5035 int cnt;
5036
5037 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01005038 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005039
5040 /* "fast-path" to count number of available objects */
5041 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01005042 cnt = 0;
5043 list_for_each_entry(obj,
5044 &dev_priv->mm.inactive_list,
5045 mm_list)
5046 cnt++;
5047 mutex_unlock(&dev->struct_mutex);
5048 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005049 }
5050
Chris Wilson1637ef42010-04-20 17:10:35 +01005051rescan:
Chris Wilson31169712009-09-14 16:50:28 +01005052 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01005053 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01005054
Chris Wilson17250b72010-10-28 12:51:39 +01005055 list_for_each_entry_safe(obj, next,
5056 &dev_priv->mm.inactive_list,
5057 mm_list) {
5058 if (i915_gem_object_is_purgeable(obj)) {
5059 i915_gem_object_unbind(&obj->base);
5060 if (--nr_to_scan == 0)
5061 break;
Chris Wilson31169712009-09-14 16:50:28 +01005062 }
Chris Wilson31169712009-09-14 16:50:28 +01005063 }
5064
5065 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01005066 cnt = 0;
5067 list_for_each_entry_safe(obj, next,
5068 &dev_priv->mm.inactive_list,
5069 mm_list) {
5070 if (nr_to_scan) {
5071 i915_gem_object_unbind(&obj->base);
5072 nr_to_scan--;
5073 } else
5074 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01005075 }
5076
Chris Wilson17250b72010-10-28 12:51:39 +01005077 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01005078 /*
5079 * We are desperate for pages, so as a last resort, wait
5080 * for the GPU to finish and discard whatever we can.
5081 * This has a dramatic impact to reduce the number of
5082 * OOM-killer events whilst running the GPU aggressively.
5083 */
Chris Wilson17250b72010-10-28 12:51:39 +01005084 if (i915_gpu_idle(dev) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01005085 goto rescan;
5086 }
Chris Wilson17250b72010-10-28 12:51:39 +01005087 mutex_unlock(&dev->struct_mutex);
5088 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01005089}