blob: 9bf11c8fe920d27e9e3ce970fe509bb2487716a0 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28#include "drmP.h"
29#include "drm.h"
30#include "i915_drm.h"
31#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070036#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/pci.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038
Chris Wilson88241782011-01-07 17:09:48 +000039static __must_check int i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson05394f32010-11-08 19:18:58 +000040static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
41static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000042static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
43 unsigned alignment,
44 bool map_and_fenceable);
Chris Wilson05394f32010-11-08 19:18:58 +000045static int i915_gem_phys_pwrite(struct drm_device *dev,
46 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100047 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000048 struct drm_file *file);
Eric Anholt673a3942008-07-30 12:06:12 -070049
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilson17250b72010-10-28 12:51:39 +010056static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070057 struct shrink_control *sc);
Daniel Vetter8c599672011-12-14 13:57:31 +010058static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010059
Chris Wilson61050802012-04-17 15:31:31 +010060static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
61{
62 if (obj->tiling_mode)
63 i915_gem_release_mmap(obj);
64
65 /* As we do not have an associated fence register, we will force
66 * a tiling change if we ever need to acquire one.
67 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010068 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010069 obj->fence_reg = I915_FENCE_REG_NONE;
70}
71
Chris Wilson73aa8082010-09-30 11:46:12 +010072/* some bookkeeping */
73static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
74 size_t size)
75{
76 dev_priv->mm.object_count++;
77 dev_priv->mm.object_memory += size;
78}
79
80static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
81 size_t size)
82{
83 dev_priv->mm.object_count--;
84 dev_priv->mm.object_memory -= size;
85}
86
Chris Wilson21dd3732011-01-26 15:55:56 +000087static int
88i915_gem_wait_for_error(struct drm_device *dev)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010089{
90 struct drm_i915_private *dev_priv = dev->dev_private;
91 struct completion *x = &dev_priv->error_completion;
92 unsigned long flags;
93 int ret;
94
95 if (!atomic_read(&dev_priv->mm.wedged))
96 return 0;
97
98 ret = wait_for_completion_interruptible(x);
99 if (ret)
100 return ret;
101
Chris Wilson21dd3732011-01-26 15:55:56 +0000102 if (atomic_read(&dev_priv->mm.wedged)) {
103 /* GPU is hung, bump the completion count to account for
104 * the token we just consumed so that we never hit zero and
105 * end up waiting upon a subsequent completion event that
106 * will never happen.
107 */
108 spin_lock_irqsave(&x->wait.lock, flags);
109 x->done++;
110 spin_unlock_irqrestore(&x->wait.lock, flags);
111 }
112 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113}
114
Chris Wilson54cf91d2010-11-25 18:00:26 +0000115int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100116{
Chris Wilson76c1dec2010-09-25 11:22:51 +0100117 int ret;
118
Chris Wilson21dd3732011-01-26 15:55:56 +0000119 ret = i915_gem_wait_for_error(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100120 if (ret)
121 return ret;
122
123 ret = mutex_lock_interruptible(&dev->struct_mutex);
124 if (ret)
125 return ret;
126
Chris Wilson23bc5982010-09-29 16:10:57 +0100127 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100128 return 0;
129}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100130
Chris Wilson7d1c4802010-08-07 21:45:03 +0100131static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000132i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100133{
Chris Wilson1b502472012-04-24 15:47:30 +0100134 return !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100135}
136
Eric Anholt673a3942008-07-30 12:06:12 -0700137int
138i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000139 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700140{
Eric Anholt673a3942008-07-30 12:06:12 -0700141 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000142
143 if (args->gtt_start >= args->gtt_end ||
144 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
145 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700146
Daniel Vetterf534bc02012-03-26 22:37:04 +0200147 /* GEM with user mode setting was never supported on ilk and later. */
148 if (INTEL_INFO(dev)->gen >= 5)
149 return -ENODEV;
150
Eric Anholt673a3942008-07-30 12:06:12 -0700151 mutex_lock(&dev->struct_mutex);
Daniel Vetter644ec022012-03-26 09:45:40 +0200152 i915_gem_init_global_gtt(dev, args->gtt_start,
153 args->gtt_end, args->gtt_end);
Eric Anholt673a3942008-07-30 12:06:12 -0700154 mutex_unlock(&dev->struct_mutex);
155
Chris Wilson20217462010-11-23 15:26:33 +0000156 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700157}
158
Eric Anholt5a125c32008-10-22 21:40:13 -0700159int
160i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000161 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700162{
Chris Wilson73aa8082010-09-30 11:46:12 +0100163 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700164 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000165 struct drm_i915_gem_object *obj;
166 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700167
168 if (!(dev->driver->driver_features & DRIVER_GEM))
169 return -ENODEV;
170
Chris Wilson6299f992010-11-24 12:23:44 +0000171 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100172 mutex_lock(&dev->struct_mutex);
Chris Wilson1b502472012-04-24 15:47:30 +0100173 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list)
174 if (obj->pin_count)
175 pinned += obj->gtt_space->size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700177
Chris Wilson6299f992010-11-24 12:23:44 +0000178 args->aper_size = dev_priv->mm.gtt_total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400179 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000180
Eric Anholt5a125c32008-10-22 21:40:13 -0700181 return 0;
182}
183
Dave Airlieff72145b2011-02-07 12:16:14 +1000184static int
185i915_gem_create(struct drm_file *file,
186 struct drm_device *dev,
187 uint64_t size,
188 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700189{
Chris Wilson05394f32010-11-08 19:18:58 +0000190 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300191 int ret;
192 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700193
Dave Airlieff72145b2011-02-07 12:16:14 +1000194 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200195 if (size == 0)
196 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700197
198 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000199 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700200 if (obj == NULL)
201 return -ENOMEM;
202
Chris Wilson05394f32010-11-08 19:18:58 +0000203 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100204 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000205 drm_gem_object_release(&obj->base);
206 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100207 kfree(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700208 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100209 }
210
Chris Wilson202f2fe2010-10-14 13:20:40 +0100211 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000212 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100213 trace_i915_gem_object_create(obj);
214
Dave Airlieff72145b2011-02-07 12:16:14 +1000215 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700216 return 0;
217}
218
Dave Airlieff72145b2011-02-07 12:16:14 +1000219int
220i915_gem_dumb_create(struct drm_file *file,
221 struct drm_device *dev,
222 struct drm_mode_create_dumb *args)
223{
224 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000225 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000226 args->size = args->pitch * args->height;
227 return i915_gem_create(file, dev,
228 args->size, &args->handle);
229}
230
231int i915_gem_dumb_destroy(struct drm_file *file,
232 struct drm_device *dev,
233 uint32_t handle)
234{
235 return drm_gem_handle_delete(file, handle);
236}
237
238/**
239 * Creates a new mm object and returns a handle to it.
240 */
241int
242i915_gem_create_ioctl(struct drm_device *dev, void *data,
243 struct drm_file *file)
244{
245 struct drm_i915_gem_create *args = data;
246 return i915_gem_create(file, dev,
247 args->size, &args->handle);
248}
249
Chris Wilson05394f32010-11-08 19:18:58 +0000250static int i915_gem_object_needs_bit17_swizzle(struct drm_i915_gem_object *obj)
Eric Anholt280b7132009-03-12 16:56:27 -0700251{
Chris Wilson05394f32010-11-08 19:18:58 +0000252 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt280b7132009-03-12 16:56:27 -0700253
254 return dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_9_10_17 &&
Chris Wilson05394f32010-11-08 19:18:58 +0000255 obj->tiling_mode != I915_TILING_NONE;
Eric Anholt280b7132009-03-12 16:56:27 -0700256}
257
Daniel Vetter8c599672011-12-14 13:57:31 +0100258static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100259__copy_to_user_swizzled(char __user *cpu_vaddr,
260 const char *gpu_vaddr, int gpu_offset,
261 int length)
262{
263 int ret, cpu_offset = 0;
264
265 while (length > 0) {
266 int cacheline_end = ALIGN(gpu_offset + 1, 64);
267 int this_length = min(cacheline_end - gpu_offset, length);
268 int swizzled_gpu_offset = gpu_offset ^ 64;
269
270 ret = __copy_to_user(cpu_vaddr + cpu_offset,
271 gpu_vaddr + swizzled_gpu_offset,
272 this_length);
273 if (ret)
274 return ret + length;
275
276 cpu_offset += this_length;
277 gpu_offset += this_length;
278 length -= this_length;
279 }
280
281 return 0;
282}
283
284static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700285__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
286 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100287 int length)
288{
289 int ret, cpu_offset = 0;
290
291 while (length > 0) {
292 int cacheline_end = ALIGN(gpu_offset + 1, 64);
293 int this_length = min(cacheline_end - gpu_offset, length);
294 int swizzled_gpu_offset = gpu_offset ^ 64;
295
296 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
297 cpu_vaddr + cpu_offset,
298 this_length);
299 if (ret)
300 return ret + length;
301
302 cpu_offset += this_length;
303 gpu_offset += this_length;
304 length -= this_length;
305 }
306
307 return 0;
308}
309
Daniel Vetterd174bd62012-03-25 19:47:40 +0200310/* Per-page copy function for the shmem pread fastpath.
311 * Flushes invalid cachelines before reading the target if
312 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700313static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200314shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
315 char __user *user_data,
316 bool page_do_bit17_swizzling, bool needs_clflush)
317{
318 char *vaddr;
319 int ret;
320
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200321 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200322 return -EINVAL;
323
324 vaddr = kmap_atomic(page);
325 if (needs_clflush)
326 drm_clflush_virt_range(vaddr + shmem_page_offset,
327 page_length);
328 ret = __copy_to_user_inatomic(user_data,
329 vaddr + shmem_page_offset,
330 page_length);
331 kunmap_atomic(vaddr);
332
333 return ret;
334}
335
Daniel Vetter23c18c72012-03-25 19:47:42 +0200336static void
337shmem_clflush_swizzled_range(char *addr, unsigned long length,
338 bool swizzled)
339{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200340 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200341 unsigned long start = (unsigned long) addr;
342 unsigned long end = (unsigned long) addr + length;
343
344 /* For swizzling simply ensure that we always flush both
345 * channels. Lame, but simple and it works. Swizzled
346 * pwrite/pread is far from a hotpath - current userspace
347 * doesn't use it at all. */
348 start = round_down(start, 128);
349 end = round_up(end, 128);
350
351 drm_clflush_virt_range((void *)start, end - start);
352 } else {
353 drm_clflush_virt_range(addr, length);
354 }
355
356}
357
Daniel Vetterd174bd62012-03-25 19:47:40 +0200358/* Only difference to the fast-path function is that this can handle bit17
359 * and uses non-atomic copy and kmap functions. */
360static int
361shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
362 char __user *user_data,
363 bool page_do_bit17_swizzling, bool needs_clflush)
364{
365 char *vaddr;
366 int ret;
367
368 vaddr = kmap(page);
369 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200370 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
371 page_length,
372 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200373
374 if (page_do_bit17_swizzling)
375 ret = __copy_to_user_swizzled(user_data,
376 vaddr, shmem_page_offset,
377 page_length);
378 else
379 ret = __copy_to_user(user_data,
380 vaddr + shmem_page_offset,
381 page_length);
382 kunmap(page);
383
384 return ret;
385}
386
Eric Anholteb014592009-03-10 11:44:52 -0700387static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200388i915_gem_shmem_pread(struct drm_device *dev,
389 struct drm_i915_gem_object *obj,
390 struct drm_i915_gem_pread *args,
391 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700392{
Chris Wilson05394f32010-11-08 19:18:58 +0000393 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Daniel Vetter8461d222011-12-14 13:57:32 +0100394 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700395 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100396 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100397 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100398 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200399 int hit_slowpath = 0;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200400 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200401 int needs_clflush = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200402 int release_page;
Eric Anholteb014592009-03-10 11:44:52 -0700403
Daniel Vetter8461d222011-12-14 13:57:32 +0100404 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholteb014592009-03-10 11:44:52 -0700405 remain = args->size;
406
Daniel Vetter8461d222011-12-14 13:57:32 +0100407 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700408
Daniel Vetter84897312012-03-25 19:47:31 +0200409 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
410 /* If we're not in the cpu read domain, set ourself into the gtt
411 * read domain and manually flush cachelines (if required). This
412 * optimizes for the case when the gpu will dirty the data
413 * anyway again before the next pread happens. */
414 if (obj->cache_level == I915_CACHE_NONE)
415 needs_clflush = 1;
416 ret = i915_gem_object_set_to_gtt_domain(obj, false);
417 if (ret)
418 return ret;
419 }
Eric Anholteb014592009-03-10 11:44:52 -0700420
Eric Anholteb014592009-03-10 11:44:52 -0700421 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100422
Eric Anholteb014592009-03-10 11:44:52 -0700423 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100424 struct page *page;
425
Eric Anholteb014592009-03-10 11:44:52 -0700426 /* Operation in this page
427 *
Eric Anholteb014592009-03-10 11:44:52 -0700428 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700429 * page_length = bytes to copy for this page
430 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100431 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700432 page_length = remain;
433 if ((shmem_page_offset + page_length) > PAGE_SIZE)
434 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700435
Daniel Vetter692a5762012-03-25 19:47:34 +0200436 if (obj->pages) {
437 page = obj->pages[offset >> PAGE_SHIFT];
438 release_page = 0;
439 } else {
440 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
441 if (IS_ERR(page)) {
442 ret = PTR_ERR(page);
443 goto out;
444 }
445 release_page = 1;
Jesper Juhlb65552f2011-06-12 20:53:44 +0000446 }
Chris Wilsone5281cc2010-10-28 13:45:36 +0100447
Daniel Vetter8461d222011-12-14 13:57:32 +0100448 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
449 (page_to_phys(page) & (1 << 17)) != 0;
450
Daniel Vetterd174bd62012-03-25 19:47:40 +0200451 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
452 user_data, page_do_bit17_swizzling,
453 needs_clflush);
454 if (ret == 0)
455 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700456
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200457 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200458 page_cache_get(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200459 mutex_unlock(&dev->struct_mutex);
460
Daniel Vetter96d79b52012-03-25 19:47:36 +0200461 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200462 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200463 /* Userspace is tricking us, but we've already clobbered
464 * its pages with the prefault and promised to write the
465 * data up to the first fault. Hence ignore any errors
466 * and just continue. */
467 (void)ret;
468 prefaulted = 1;
469 }
470
Daniel Vetterd174bd62012-03-25 19:47:40 +0200471 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
472 user_data, page_do_bit17_swizzling,
473 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700474
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200475 mutex_lock(&dev->struct_mutex);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100476 page_cache_release(page);
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200477next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100478 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200479 if (release_page)
480 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100481
Daniel Vetter8461d222011-12-14 13:57:32 +0100482 if (ret) {
483 ret = -EFAULT;
484 goto out;
485 }
486
Eric Anholteb014592009-03-10 11:44:52 -0700487 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100488 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700489 offset += page_length;
490 }
491
Chris Wilson4f27b752010-10-14 15:26:45 +0100492out:
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200493 if (hit_slowpath) {
494 /* Fixup: Kill any reinstated backing storage pages */
495 if (obj->madv == __I915_MADV_PURGED)
496 i915_gem_object_truncate(obj);
497 }
Eric Anholteb014592009-03-10 11:44:52 -0700498
499 return ret;
500}
501
Eric Anholt673a3942008-07-30 12:06:12 -0700502/**
503 * Reads data from the object referenced by handle.
504 *
505 * On error, the contents of *data are undefined.
506 */
507int
508i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000509 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700510{
511 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000512 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100513 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700514
Chris Wilson51311d02010-11-17 09:10:42 +0000515 if (args->size == 0)
516 return 0;
517
518 if (!access_ok(VERIFY_WRITE,
519 (char __user *)(uintptr_t)args->data_ptr,
520 args->size))
521 return -EFAULT;
522
Chris Wilson4f27b752010-10-14 15:26:45 +0100523 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100524 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100525 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700526
Chris Wilson05394f32010-11-08 19:18:58 +0000527 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000528 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100529 ret = -ENOENT;
530 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100531 }
Eric Anholt673a3942008-07-30 12:06:12 -0700532
Chris Wilson7dcd2492010-09-26 20:21:44 +0100533 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000534 if (args->offset > obj->base.size ||
535 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100536 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100537 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100538 }
539
Chris Wilsondb53a302011-02-03 11:57:46 +0000540 trace_i915_gem_object_pread(obj, args->offset, args->size);
541
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200542 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700543
Chris Wilson35b62a82010-09-26 20:23:38 +0100544out:
Chris Wilson05394f32010-11-08 19:18:58 +0000545 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100546unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100547 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700548 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700549}
550
Keith Packard0839ccb2008-10-30 19:38:48 -0700551/* This is the fast write path which cannot handle
552 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700553 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700554
Keith Packard0839ccb2008-10-30 19:38:48 -0700555static inline int
556fast_user_write(struct io_mapping *mapping,
557 loff_t page_base, int page_offset,
558 char __user *user_data,
559 int length)
560{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700561 void __iomem *vaddr_atomic;
562 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700563 unsigned long unwritten;
564
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700565 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700566 /* We can use the cpu mem copy function because this is X86. */
567 vaddr = (void __force*)vaddr_atomic + page_offset;
568 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700569 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700570 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100571 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700572}
573
Eric Anholt3de09aa2009-03-09 09:42:23 -0700574/**
575 * This is the fast pwrite path, where we copy the data directly from the
576 * user into the GTT, uncached.
577 */
Eric Anholt673a3942008-07-30 12:06:12 -0700578static int
Chris Wilson05394f32010-11-08 19:18:58 +0000579i915_gem_gtt_pwrite_fast(struct drm_device *dev,
580 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700581 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000582 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700583{
Keith Packard0839ccb2008-10-30 19:38:48 -0700584 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700585 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700586 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700587 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200588 int page_offset, page_length, ret;
589
590 ret = i915_gem_object_pin(obj, 0, true);
591 if (ret)
592 goto out;
593
594 ret = i915_gem_object_set_to_gtt_domain(obj, true);
595 if (ret)
596 goto out_unpin;
597
598 ret = i915_gem_object_put_fence(obj);
599 if (ret)
600 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700601
602 user_data = (char __user *) (uintptr_t) args->data_ptr;
603 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700604
Chris Wilson05394f32010-11-08 19:18:58 +0000605 offset = obj->gtt_offset + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700606
607 while (remain > 0) {
608 /* Operation in this page
609 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700610 * page_base = page offset within aperture
611 * page_offset = offset within page
612 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700613 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100614 page_base = offset & PAGE_MASK;
615 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700616 page_length = remain;
617 if ((page_offset + remain) > PAGE_SIZE)
618 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700619
Keith Packard0839ccb2008-10-30 19:38:48 -0700620 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700621 * source page isn't available. Return the error and we'll
622 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700623 */
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100624 if (fast_user_write(dev_priv->mm.gtt_mapping, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200625 page_offset, user_data, page_length)) {
626 ret = -EFAULT;
627 goto out_unpin;
628 }
Eric Anholt673a3942008-07-30 12:06:12 -0700629
Keith Packard0839ccb2008-10-30 19:38:48 -0700630 remain -= page_length;
631 user_data += page_length;
632 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700633 }
Eric Anholt673a3942008-07-30 12:06:12 -0700634
Daniel Vetter935aaa62012-03-25 19:47:35 +0200635out_unpin:
636 i915_gem_object_unpin(obj);
637out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700638 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700639}
640
Daniel Vetterd174bd62012-03-25 19:47:40 +0200641/* Per-page copy function for the shmem pwrite fastpath.
642 * Flushes invalid cachelines before writing to the target if
643 * needs_clflush_before is set and flushes out any written cachelines after
644 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700645static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200646shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
647 char __user *user_data,
648 bool page_do_bit17_swizzling,
649 bool needs_clflush_before,
650 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700651{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200652 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700653 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700654
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200655 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200656 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700657
Daniel Vetterd174bd62012-03-25 19:47:40 +0200658 vaddr = kmap_atomic(page);
659 if (needs_clflush_before)
660 drm_clflush_virt_range(vaddr + shmem_page_offset,
661 page_length);
662 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
663 user_data,
664 page_length);
665 if (needs_clflush_after)
666 drm_clflush_virt_range(vaddr + shmem_page_offset,
667 page_length);
668 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700669
670 return ret;
671}
672
Daniel Vetterd174bd62012-03-25 19:47:40 +0200673/* Only difference to the fast-path function is that this can handle bit17
674 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700675static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200676shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
677 char __user *user_data,
678 bool page_do_bit17_swizzling,
679 bool needs_clflush_before,
680 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700681{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200682 char *vaddr;
683 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700684
Daniel Vetterd174bd62012-03-25 19:47:40 +0200685 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200686 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200687 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
688 page_length,
689 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200690 if (page_do_bit17_swizzling)
691 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100692 user_data,
693 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200694 else
695 ret = __copy_from_user(vaddr + shmem_page_offset,
696 user_data,
697 page_length);
698 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200699 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
700 page_length,
701 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200702 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100703
Daniel Vetterd174bd62012-03-25 19:47:40 +0200704 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700705}
706
Eric Anholt40123c12009-03-09 13:42:30 -0700707static int
Daniel Vettere244a442012-03-25 19:47:28 +0200708i915_gem_shmem_pwrite(struct drm_device *dev,
709 struct drm_i915_gem_object *obj,
710 struct drm_i915_gem_pwrite *args,
711 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700712{
Chris Wilson05394f32010-11-08 19:18:58 +0000713 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Eric Anholt40123c12009-03-09 13:42:30 -0700714 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100715 loff_t offset;
716 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100717 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100718 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200719 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200720 int needs_clflush_after = 0;
721 int needs_clflush_before = 0;
Daniel Vetter692a5762012-03-25 19:47:34 +0200722 int release_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700723
Daniel Vetter8c599672011-12-14 13:57:31 +0100724 user_data = (char __user *) (uintptr_t) args->data_ptr;
Eric Anholt40123c12009-03-09 13:42:30 -0700725 remain = args->size;
726
Daniel Vetter8c599672011-12-14 13:57:31 +0100727 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700728
Daniel Vetter58642882012-03-25 19:47:37 +0200729 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
730 /* If we're not in the cpu write domain, set ourself into the gtt
731 * write domain and manually flush cachelines (if required). This
732 * optimizes for the case when the gpu will use the data
733 * right away and we therefore have to clflush anyway. */
734 if (obj->cache_level == I915_CACHE_NONE)
735 needs_clflush_after = 1;
736 ret = i915_gem_object_set_to_gtt_domain(obj, true);
737 if (ret)
738 return ret;
739 }
740 /* Same trick applies for invalidate partially written cachelines before
741 * writing. */
742 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
743 && obj->cache_level == I915_CACHE_NONE)
744 needs_clflush_before = 1;
745
Eric Anholt40123c12009-03-09 13:42:30 -0700746 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000747 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700748
749 while (remain > 0) {
Chris Wilsone5281cc2010-10-28 13:45:36 +0100750 struct page *page;
Daniel Vetter58642882012-03-25 19:47:37 +0200751 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100752
Eric Anholt40123c12009-03-09 13:42:30 -0700753 /* Operation in this page
754 *
Eric Anholt40123c12009-03-09 13:42:30 -0700755 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700756 * page_length = bytes to copy for this page
757 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100758 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700759
760 page_length = remain;
761 if ((shmem_page_offset + page_length) > PAGE_SIZE)
762 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700763
Daniel Vetter58642882012-03-25 19:47:37 +0200764 /* If we don't overwrite a cacheline completely we need to be
765 * careful to have up-to-date data by first clflushing. Don't
766 * overcomplicate things and flush the entire patch. */
767 partial_cacheline_write = needs_clflush_before &&
768 ((shmem_page_offset | page_length)
769 & (boot_cpu_data.x86_clflush_size - 1));
770
Daniel Vetter692a5762012-03-25 19:47:34 +0200771 if (obj->pages) {
772 page = obj->pages[offset >> PAGE_SHIFT];
773 release_page = 0;
774 } else {
775 page = shmem_read_mapping_page(mapping, offset >> PAGE_SHIFT);
776 if (IS_ERR(page)) {
777 ret = PTR_ERR(page);
778 goto out;
779 }
780 release_page = 1;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100781 }
782
Daniel Vetter8c599672011-12-14 13:57:31 +0100783 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
784 (page_to_phys(page) & (1 << 17)) != 0;
785
Daniel Vetterd174bd62012-03-25 19:47:40 +0200786 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
787 user_data, page_do_bit17_swizzling,
788 partial_cacheline_write,
789 needs_clflush_after);
790 if (ret == 0)
791 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700792
Daniel Vettere244a442012-03-25 19:47:28 +0200793 hit_slowpath = 1;
Daniel Vetter692a5762012-03-25 19:47:34 +0200794 page_cache_get(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200795 mutex_unlock(&dev->struct_mutex);
796
Daniel Vetterd174bd62012-03-25 19:47:40 +0200797 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
798 user_data, page_do_bit17_swizzling,
799 partial_cacheline_write,
800 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700801
Daniel Vettere244a442012-03-25 19:47:28 +0200802 mutex_lock(&dev->struct_mutex);
Daniel Vetter692a5762012-03-25 19:47:34 +0200803 page_cache_release(page);
Daniel Vettere244a442012-03-25 19:47:28 +0200804next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100805 set_page_dirty(page);
806 mark_page_accessed(page);
Daniel Vetter692a5762012-03-25 19:47:34 +0200807 if (release_page)
808 page_cache_release(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100809
Daniel Vetter8c599672011-12-14 13:57:31 +0100810 if (ret) {
811 ret = -EFAULT;
812 goto out;
813 }
814
Eric Anholt40123c12009-03-09 13:42:30 -0700815 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100816 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700817 offset += page_length;
818 }
819
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100820out:
Daniel Vettere244a442012-03-25 19:47:28 +0200821 if (hit_slowpath) {
822 /* Fixup: Kill any reinstated backing storage pages */
823 if (obj->madv == __I915_MADV_PURGED)
824 i915_gem_object_truncate(obj);
825 /* and flush dirty cachelines in case the object isn't in the cpu write
826 * domain anymore. */
827 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
828 i915_gem_clflush_object(obj);
829 intel_gtt_chipset_flush();
830 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100831 }
Eric Anholt40123c12009-03-09 13:42:30 -0700832
Daniel Vetter58642882012-03-25 19:47:37 +0200833 if (needs_clflush_after)
834 intel_gtt_chipset_flush();
835
Eric Anholt40123c12009-03-09 13:42:30 -0700836 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700837}
838
839/**
840 * Writes data to the object referenced by handle.
841 *
842 * On error, the contents of the buffer that were to be modified are undefined.
843 */
844int
845i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100846 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700847{
848 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000849 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000850 int ret;
851
852 if (args->size == 0)
853 return 0;
854
855 if (!access_ok(VERIFY_READ,
856 (char __user *)(uintptr_t)args->data_ptr,
857 args->size))
858 return -EFAULT;
859
Daniel Vetterf56f8212012-03-25 19:47:41 +0200860 ret = fault_in_multipages_readable((char __user *)(uintptr_t)args->data_ptr,
861 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000862 if (ret)
863 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700864
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100865 ret = i915_mutex_lock_interruptible(dev);
866 if (ret)
867 return ret;
868
Chris Wilson05394f32010-11-08 19:18:58 +0000869 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000870 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100871 ret = -ENOENT;
872 goto unlock;
873 }
Eric Anholt673a3942008-07-30 12:06:12 -0700874
Chris Wilson7dcd2492010-09-26 20:21:44 +0100875 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000876 if (args->offset > obj->base.size ||
877 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100878 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100879 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100880 }
881
Chris Wilsondb53a302011-02-03 11:57:46 +0000882 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
883
Daniel Vetter935aaa62012-03-25 19:47:35 +0200884 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700885 /* We can only do the GTT pwrite on untiled buffers, as otherwise
886 * it would end up going through the fenced access, and we'll get
887 * different detiling behavior between reading and writing.
888 * pread/pwrite currently are reading and writing from the CPU
889 * perspective, requiring manual detiling by the client.
890 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100891 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100892 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100893 goto out;
894 }
895
896 if (obj->gtt_space &&
Daniel Vetter3ae53782012-03-25 19:47:33 +0200897 obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200898 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetterffc62972012-03-25 19:47:38 +0200899 obj->map_and_fenceable &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100900 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100901 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200902 /* Note that the gtt paths might fail with non-page-backed user
903 * pointers (e.g. gtt mappings when moving data between
904 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700905 }
Eric Anholt673a3942008-07-30 12:06:12 -0700906
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100907 if (ret == -EFAULT)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200908 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100909
Chris Wilson35b62a82010-09-26 20:23:38 +0100910out:
Chris Wilson05394f32010-11-08 19:18:58 +0000911 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100912unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100913 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700914 return ret;
915}
916
917/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800918 * Called when user space prepares to use an object with the CPU, either
919 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -0700920 */
921int
922i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000923 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700924{
925 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000926 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800927 uint32_t read_domains = args->read_domains;
928 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -0700929 int ret;
930
931 if (!(dev->driver->driver_features & DRIVER_GEM))
932 return -ENODEV;
933
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800934 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +0100935 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800936 return -EINVAL;
937
Chris Wilson21d509e2009-06-06 09:46:02 +0100938 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800939 return -EINVAL;
940
941 /* Having something in the write domain implies it's in the read
942 * domain, and only that read domain. Enforce that in the request.
943 */
944 if (write_domain != 0 && read_domains != write_domain)
945 return -EINVAL;
946
Chris Wilson76c1dec2010-09-25 11:22:51 +0100947 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100948 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100949 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700950
Chris Wilson05394f32010-11-08 19:18:58 +0000951 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000952 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100953 ret = -ENOENT;
954 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100955 }
Jesse Barnes652c3932009-08-17 13:31:43 -0700956
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800957 if (read_domains & I915_GEM_DOMAIN_GTT) {
958 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -0800959
960 /* Silently promote "you're not bound, there was nothing to do"
961 * to success, since the client was just asking us to
962 * make sure everything was done.
963 */
964 if (ret == -EINVAL)
965 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800966 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -0800967 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -0800968 }
969
Chris Wilson05394f32010-11-08 19:18:58 +0000970 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100971unlock:
Eric Anholt673a3942008-07-30 12:06:12 -0700972 mutex_unlock(&dev->struct_mutex);
973 return ret;
974}
975
976/**
977 * Called when user space has done writes to this buffer
978 */
979int
980i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000981 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700982{
983 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000984 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -0700985 int ret = 0;
986
987 if (!(dev->driver->driver_features & DRIVER_GEM))
988 return -ENODEV;
989
Chris Wilson76c1dec2010-09-25 11:22:51 +0100990 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100991 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100992 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100993
Chris Wilson05394f32010-11-08 19:18:58 +0000994 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000995 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100996 ret = -ENOENT;
997 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -0700998 }
999
Eric Anholt673a3942008-07-30 12:06:12 -07001000 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001001 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001002 i915_gem_object_flush_cpu_write_domain(obj);
1003
Chris Wilson05394f32010-11-08 19:18:58 +00001004 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001005unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001006 mutex_unlock(&dev->struct_mutex);
1007 return ret;
1008}
1009
1010/**
1011 * Maps the contents of an object, returning the address it is mapped
1012 * into.
1013 *
1014 * While the mapping holds a reference on the contents of the object, it doesn't
1015 * imply a ref on the object itself.
1016 */
1017int
1018i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001019 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001020{
1021 struct drm_i915_gem_mmap *args = data;
1022 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001023 unsigned long addr;
1024
1025 if (!(dev->driver->driver_features & DRIVER_GEM))
1026 return -ENODEV;
1027
Chris Wilson05394f32010-11-08 19:18:58 +00001028 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001029 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001030 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001031
Eric Anholt673a3942008-07-30 12:06:12 -07001032 down_write(&current->mm->mmap_sem);
1033 addr = do_mmap(obj->filp, 0, args->size,
1034 PROT_READ | PROT_WRITE, MAP_SHARED,
1035 args->offset);
1036 up_write(&current->mm->mmap_sem);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001037 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001038 if (IS_ERR((void *)addr))
1039 return addr;
1040
1041 args->addr_ptr = (uint64_t) addr;
1042
1043 return 0;
1044}
1045
Jesse Barnesde151cf2008-11-12 10:03:55 -08001046/**
1047 * i915_gem_fault - fault a page into the GTT
1048 * vma: VMA in question
1049 * vmf: fault info
1050 *
1051 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1052 * from userspace. The fault handler takes care of binding the object to
1053 * the GTT (if needed), allocating and programming a fence register (again,
1054 * only if needed based on whether the old reg is still valid or the object
1055 * is tiled) and inserting a new PTE into the faulting process.
1056 *
1057 * Note that the faulting process may involve evicting existing objects
1058 * from the GTT and/or fence registers to make room. So performance may
1059 * suffer if the GTT working set is large or there are few fence registers
1060 * left.
1061 */
1062int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1063{
Chris Wilson05394f32010-11-08 19:18:58 +00001064 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1065 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001066 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001067 pgoff_t page_offset;
1068 unsigned long pfn;
1069 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001070 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001071
1072 /* We don't use vmf->pgoff since that has the fake offset */
1073 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1074 PAGE_SHIFT;
1075
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001076 ret = i915_mutex_lock_interruptible(dev);
1077 if (ret)
1078 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001079
Chris Wilsondb53a302011-02-03 11:57:46 +00001080 trace_i915_gem_object_fault(obj, page_offset, true, write);
1081
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001082 /* Now bind it into the GTT if needed */
Chris Wilson919926a2010-11-12 13:42:53 +00001083 if (!obj->map_and_fenceable) {
1084 ret = i915_gem_object_unbind(obj);
1085 if (ret)
1086 goto unlock;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001087 }
Chris Wilson05394f32010-11-08 19:18:58 +00001088 if (!obj->gtt_space) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01001089 ret = i915_gem_object_bind_to_gtt(obj, 0, true);
Chris Wilsonc7150892009-09-23 00:43:56 +01001090 if (ret)
1091 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001092
Eric Anholte92d03b2011-06-14 16:43:09 -07001093 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1094 if (ret)
1095 goto unlock;
1096 }
Chris Wilson4a684a42010-10-28 14:44:08 +01001097
Daniel Vetter74898d72012-02-15 23:50:22 +01001098 if (!obj->has_global_gtt_mapping)
1099 i915_gem_gtt_bind_object(obj, obj->cache_level);
1100
Chris Wilson06d98132012-04-17 15:31:24 +01001101 ret = i915_gem_object_get_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001102 if (ret)
1103 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001104
Chris Wilson05394f32010-11-08 19:18:58 +00001105 if (i915_gem_object_is_inactive(obj))
1106 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilson7d1c4802010-08-07 21:45:03 +01001107
Chris Wilson6299f992010-11-24 12:23:44 +00001108 obj->fault_mappable = true;
1109
Chris Wilson05394f32010-11-08 19:18:58 +00001110 pfn = ((dev->agp->base + obj->gtt_offset) >> PAGE_SHIFT) +
Jesse Barnesde151cf2008-11-12 10:03:55 -08001111 page_offset;
1112
1113 /* Finally, remap it using the new GTT offset */
1114 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc7150892009-09-23 00:43:56 +01001115unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001116 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001117out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001118 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001119 case -EIO:
Chris Wilson045e7692010-11-07 09:18:22 +00001120 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001121 /* Give the error handler a chance to run and move the
1122 * objects off the GPU active list. Next time we service the
1123 * fault, we should be able to transition the page into the
1124 * GTT without touching the GPU (and so avoid further
1125 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1126 * with coherency, just lost writes.
1127 */
Chris Wilson045e7692010-11-07 09:18:22 +00001128 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001129 case 0:
1130 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001131 case -EINTR:
Chris Wilsonc7150892009-09-23 00:43:56 +01001132 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001133 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001134 return VM_FAULT_OOM;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001135 default:
Chris Wilsonc7150892009-09-23 00:43:56 +01001136 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001137 }
1138}
1139
1140/**
Chris Wilson901782b2009-07-10 08:18:50 +01001141 * i915_gem_release_mmap - remove physical page mappings
1142 * @obj: obj in question
1143 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001144 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001145 * relinquish ownership of the pages back to the system.
1146 *
1147 * It is vital that we remove the page mapping if we have mapped a tiled
1148 * object through the GTT and then lose the fence register due to
1149 * resource pressure. Similarly if the object has been moved out of the
1150 * aperture, than pages mapped into userspace must be revoked. Removing the
1151 * mapping will then trigger a page fault on the next user access, allowing
1152 * fixup by i915_gem_fault().
1153 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001154void
Chris Wilson05394f32010-11-08 19:18:58 +00001155i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001156{
Chris Wilson6299f992010-11-24 12:23:44 +00001157 if (!obj->fault_mappable)
1158 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001159
Chris Wilsonf6e47882011-03-20 21:09:12 +00001160 if (obj->base.dev->dev_mapping)
1161 unmap_mapping_range(obj->base.dev->dev_mapping,
1162 (loff_t)obj->base.map_list.hash.key<<PAGE_SHIFT,
1163 obj->base.size, 1);
Daniel Vetterfb7d5162010-10-01 22:05:20 +02001164
Chris Wilson6299f992010-11-24 12:23:44 +00001165 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001166}
1167
Chris Wilson92b88ae2010-11-09 11:47:32 +00001168static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001169i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001170{
Chris Wilsone28f8712011-07-18 13:11:49 -07001171 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001172
1173 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001174 tiling_mode == I915_TILING_NONE)
1175 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001176
1177 /* Previous chips need a power-of-two fence region when tiling */
1178 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001179 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001180 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001181 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001182
Chris Wilsone28f8712011-07-18 13:11:49 -07001183 while (gtt_size < size)
1184 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001185
Chris Wilsone28f8712011-07-18 13:11:49 -07001186 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001187}
1188
Jesse Barnesde151cf2008-11-12 10:03:55 -08001189/**
1190 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1191 * @obj: object to check
1192 *
1193 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001194 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001195 */
1196static uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001197i915_gem_get_gtt_alignment(struct drm_device *dev,
1198 uint32_t size,
1199 int tiling_mode)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001200{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001201 /*
1202 * Minimum alignment is 4k (GTT page size), but might be greater
1203 * if a fence register is needed for the object.
1204 */
Chris Wilsona00b10c2010-09-24 21:15:47 +01001205 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001206 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001207 return 4096;
1208
1209 /*
1210 * Previous chips need to be aligned to the size of the smallest
1211 * fence register that can contain the object.
1212 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001213 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001214}
1215
Daniel Vetter5e783302010-11-14 22:32:36 +01001216/**
1217 * i915_gem_get_unfenced_gtt_alignment - return required GTT alignment for an
1218 * unfenced object
Chris Wilsone28f8712011-07-18 13:11:49 -07001219 * @dev: the device
1220 * @size: size of the object
1221 * @tiling_mode: tiling mode of the object
Daniel Vetter5e783302010-11-14 22:32:36 +01001222 *
1223 * Return the required GTT alignment for an object, only taking into account
1224 * unfenced tiled surface requirements.
1225 */
Chris Wilson467cffb2011-03-07 10:42:03 +00001226uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001227i915_gem_get_unfenced_gtt_alignment(struct drm_device *dev,
1228 uint32_t size,
1229 int tiling_mode)
Daniel Vetter5e783302010-11-14 22:32:36 +01001230{
Daniel Vetter5e783302010-11-14 22:32:36 +01001231 /*
1232 * Minimum alignment is 4k (GTT page size) for sane hw.
1233 */
1234 if (INTEL_INFO(dev)->gen >= 4 || IS_G33(dev) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001235 tiling_mode == I915_TILING_NONE)
Daniel Vetter5e783302010-11-14 22:32:36 +01001236 return 4096;
1237
Chris Wilsone28f8712011-07-18 13:11:49 -07001238 /* Previous hardware however needs to be aligned to a power-of-two
1239 * tile height. The simplest method for determining this is to reuse
1240 * the power-of-tile object size.
Daniel Vetter5e783302010-11-14 22:32:36 +01001241 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001242 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Daniel Vetter5e783302010-11-14 22:32:36 +01001243}
1244
Jesse Barnesde151cf2008-11-12 10:03:55 -08001245int
Dave Airlieff72145b2011-02-07 12:16:14 +10001246i915_gem_mmap_gtt(struct drm_file *file,
1247 struct drm_device *dev,
1248 uint32_t handle,
1249 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001250{
Chris Wilsonda761a62010-10-27 17:37:08 +01001251 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001252 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001253 int ret;
1254
1255 if (!(dev->driver->driver_features & DRIVER_GEM))
1256 return -ENODEV;
1257
Chris Wilson76c1dec2010-09-25 11:22:51 +01001258 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001259 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001260 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001261
Dave Airlieff72145b2011-02-07 12:16:14 +10001262 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001263 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001264 ret = -ENOENT;
1265 goto unlock;
1266 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001267
Chris Wilson05394f32010-11-08 19:18:58 +00001268 if (obj->base.size > dev_priv->mm.gtt_mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001269 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001270 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001271 }
1272
Chris Wilson05394f32010-11-08 19:18:58 +00001273 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001274 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001275 ret = -EINVAL;
1276 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001277 }
1278
Chris Wilson05394f32010-11-08 19:18:58 +00001279 if (!obj->base.map_list.map) {
Rob Clarkb464e9a2011-08-10 08:09:08 -05001280 ret = drm_gem_create_mmap_offset(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001281 if (ret)
1282 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001283 }
1284
Dave Airlieff72145b2011-02-07 12:16:14 +10001285 *offset = (u64)obj->base.map_list.hash.key << PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001286
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001287out:
Chris Wilson05394f32010-11-08 19:18:58 +00001288 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001289unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001290 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001291 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001292}
1293
Dave Airlieff72145b2011-02-07 12:16:14 +10001294/**
1295 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1296 * @dev: DRM device
1297 * @data: GTT mapping ioctl data
1298 * @file: GEM object info
1299 *
1300 * Simply returns the fake offset to userspace so it can mmap it.
1301 * The mmap call will end up in drm_gem_mmap(), which will set things
1302 * up so we can get faults in the handler above.
1303 *
1304 * The fault handler will take care of binding the object into the GTT
1305 * (since it may have been evicted to make room for something), allocating
1306 * a fence register, and mapping the appropriate aperture address into
1307 * userspace.
1308 */
1309int
1310i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1311 struct drm_file *file)
1312{
1313 struct drm_i915_gem_mmap_gtt *args = data;
1314
1315 if (!(dev->driver->driver_features & DRIVER_GEM))
1316 return -ENODEV;
1317
1318 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1319}
1320
1321
Chris Wilsone5281cc2010-10-28 13:45:36 +01001322static int
Chris Wilson05394f32010-11-08 19:18:58 +00001323i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001324 gfp_t gfpmask)
1325{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001326 int page_count, i;
1327 struct address_space *mapping;
1328 struct inode *inode;
1329 struct page *page;
1330
1331 /* Get the list of pages out of our struct file. They'll be pinned
1332 * at this point until we release them.
1333 */
Chris Wilson05394f32010-11-08 19:18:58 +00001334 page_count = obj->base.size / PAGE_SIZE;
1335 BUG_ON(obj->pages != NULL);
1336 obj->pages = drm_malloc_ab(page_count, sizeof(struct page *));
1337 if (obj->pages == NULL)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001338 return -ENOMEM;
1339
Chris Wilson05394f32010-11-08 19:18:58 +00001340 inode = obj->base.filp->f_path.dentry->d_inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001341 mapping = inode->i_mapping;
Hugh Dickins5949eac2011-06-27 16:18:18 -07001342 gfpmask |= mapping_gfp_mask(mapping);
1343
Chris Wilsone5281cc2010-10-28 13:45:36 +01001344 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07001345 page = shmem_read_mapping_page_gfp(mapping, i, gfpmask);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001346 if (IS_ERR(page))
1347 goto err_pages;
1348
Chris Wilson05394f32010-11-08 19:18:58 +00001349 obj->pages[i] = page;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001350 }
1351
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001352 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilsone5281cc2010-10-28 13:45:36 +01001353 i915_gem_object_do_bit_17_swizzle(obj);
1354
1355 return 0;
1356
1357err_pages:
1358 while (i--)
Chris Wilson05394f32010-11-08 19:18:58 +00001359 page_cache_release(obj->pages[i]);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001360
Chris Wilson05394f32010-11-08 19:18:58 +00001361 drm_free_large(obj->pages);
1362 obj->pages = NULL;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001363 return PTR_ERR(page);
1364}
1365
Chris Wilson5cdf5882010-09-27 15:51:07 +01001366static void
Chris Wilson05394f32010-11-08 19:18:58 +00001367i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001368{
Chris Wilson05394f32010-11-08 19:18:58 +00001369 int page_count = obj->base.size / PAGE_SIZE;
Eric Anholt673a3942008-07-30 12:06:12 -07001370 int i;
1371
Chris Wilson05394f32010-11-08 19:18:58 +00001372 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001373
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001374 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001375 i915_gem_object_save_bit_17_swizzle(obj);
1376
Chris Wilson05394f32010-11-08 19:18:58 +00001377 if (obj->madv == I915_MADV_DONTNEED)
1378 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001379
1380 for (i = 0; i < page_count; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +00001381 if (obj->dirty)
1382 set_page_dirty(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001383
Chris Wilson05394f32010-11-08 19:18:58 +00001384 if (obj->madv == I915_MADV_WILLNEED)
1385 mark_page_accessed(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001386
Chris Wilson05394f32010-11-08 19:18:58 +00001387 page_cache_release(obj->pages[i]);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001388 }
Chris Wilson05394f32010-11-08 19:18:58 +00001389 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001390
Chris Wilson05394f32010-11-08 19:18:58 +00001391 drm_free_large(obj->pages);
1392 obj->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07001393}
1394
Chris Wilson54cf91d2010-11-25 18:00:26 +00001395void
Chris Wilson05394f32010-11-08 19:18:58 +00001396i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001397 struct intel_ring_buffer *ring,
1398 u32 seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07001399{
Chris Wilson05394f32010-11-08 19:18:58 +00001400 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001401 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter617dbe22010-02-11 22:16:02 +01001402
Zou Nan hai852835f2010-05-21 09:08:56 +08001403 BUG_ON(ring == NULL);
Chris Wilson05394f32010-11-08 19:18:58 +00001404 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001405
1406 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001407 if (!obj->active) {
1408 drm_gem_object_reference(&obj->base);
1409 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001410 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001411
Eric Anholt673a3942008-07-30 12:06:12 -07001412 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001413 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1414 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001415
Chris Wilson05394f32010-11-08 19:18:58 +00001416 obj->last_rendering_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001417
Chris Wilsoncaea7472010-11-12 13:53:37 +00001418 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001419 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001420
Chris Wilson7dd49062012-03-21 10:48:18 +00001421 /* Bump MRU to take account of the delayed flush */
1422 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1423 struct drm_i915_fence_reg *reg;
1424
1425 reg = &dev_priv->fence_regs[obj->fence_reg];
1426 list_move_tail(&reg->lru_list,
1427 &dev_priv->mm.fence_list);
1428 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001429 }
1430}
1431
1432static void
1433i915_gem_object_move_off_active(struct drm_i915_gem_object *obj)
1434{
1435 list_del_init(&obj->ring_list);
1436 obj->last_rendering_seqno = 0;
Daniel Vetter15a13bb2012-04-12 01:27:57 +02001437 obj->last_fenced_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001438}
1439
Eric Anholtce44b0e2008-11-06 16:00:31 -08001440static void
Chris Wilson05394f32010-11-08 19:18:58 +00001441i915_gem_object_move_to_flushing(struct drm_i915_gem_object *obj)
Eric Anholtce44b0e2008-11-06 16:00:31 -08001442{
Chris Wilson05394f32010-11-08 19:18:58 +00001443 struct drm_device *dev = obj->base.dev;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001444 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholtce44b0e2008-11-06 16:00:31 -08001445
Chris Wilson05394f32010-11-08 19:18:58 +00001446 BUG_ON(!obj->active);
1447 list_move_tail(&obj->mm_list, &dev_priv->mm.flushing_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001448
1449 i915_gem_object_move_off_active(obj);
1450}
1451
1452static void
1453i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1454{
1455 struct drm_device *dev = obj->base.dev;
1456 struct drm_i915_private *dev_priv = dev->dev_private;
1457
Chris Wilson1b502472012-04-24 15:47:30 +01001458 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001459
1460 BUG_ON(!list_empty(&obj->gpu_write_list));
1461 BUG_ON(!obj->active);
1462 obj->ring = NULL;
1463
1464 i915_gem_object_move_off_active(obj);
1465 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001466
1467 obj->active = 0;
Chris Wilson87ca9c82010-12-02 09:42:56 +00001468 obj->pending_gpu_write = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001469 drm_gem_object_unreference(&obj->base);
1470
1471 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001472}
Eric Anholt673a3942008-07-30 12:06:12 -07001473
Chris Wilson963b4832009-09-20 23:03:54 +01001474/* Immediately discard the backing storage */
1475static void
Chris Wilson05394f32010-11-08 19:18:58 +00001476i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001477{
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001478 struct inode *inode;
Chris Wilson963b4832009-09-20 23:03:54 +01001479
Chris Wilsonae9fed62010-08-07 11:01:30 +01001480 /* Our goal here is to return as much of the memory as
1481 * is possible back to the system as we are called from OOM.
1482 * To do this we must instruct the shmfs to drop all of its
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001483 * backing pages, *now*.
Chris Wilsonae9fed62010-08-07 11:01:30 +01001484 */
Chris Wilson05394f32010-11-08 19:18:58 +00001485 inode = obj->base.filp->f_path.dentry->d_inode;
Hugh Dickinse2377fe2011-06-27 16:18:19 -07001486 shmem_truncate_range(inode, 0, (loff_t)-1);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01001487
Chris Wilsona14917e2012-02-24 21:13:38 +00001488 if (obj->base.map_list.map)
1489 drm_gem_free_mmap_offset(&obj->base);
1490
Chris Wilson05394f32010-11-08 19:18:58 +00001491 obj->madv = __I915_MADV_PURGED;
Chris Wilson963b4832009-09-20 23:03:54 +01001492}
1493
1494static inline int
Chris Wilson05394f32010-11-08 19:18:58 +00001495i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
Chris Wilson963b4832009-09-20 23:03:54 +01001496{
Chris Wilson05394f32010-11-08 19:18:58 +00001497 return obj->madv == I915_MADV_DONTNEED;
Chris Wilson963b4832009-09-20 23:03:54 +01001498}
1499
Eric Anholt673a3942008-07-30 12:06:12 -07001500static void
Chris Wilsondb53a302011-02-03 11:57:46 +00001501i915_gem_process_flushing_list(struct intel_ring_buffer *ring,
1502 uint32_t flush_domains)
Daniel Vetter63560392010-02-19 11:51:59 +01001503{
Chris Wilson05394f32010-11-08 19:18:58 +00001504 struct drm_i915_gem_object *obj, *next;
Daniel Vetter63560392010-02-19 11:51:59 +01001505
Chris Wilson05394f32010-11-08 19:18:58 +00001506 list_for_each_entry_safe(obj, next,
Chris Wilson64193402010-10-24 12:38:05 +01001507 &ring->gpu_write_list,
Daniel Vetter63560392010-02-19 11:51:59 +01001508 gpu_write_list) {
Chris Wilson05394f32010-11-08 19:18:58 +00001509 if (obj->base.write_domain & flush_domains) {
1510 uint32_t old_write_domain = obj->base.write_domain;
Daniel Vetter63560392010-02-19 11:51:59 +01001511
Chris Wilson05394f32010-11-08 19:18:58 +00001512 obj->base.write_domain = 0;
1513 list_del_init(&obj->gpu_write_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001514 i915_gem_object_move_to_active(obj, ring,
Chris Wilsondb53a302011-02-03 11:57:46 +00001515 i915_gem_next_request_seqno(ring));
Daniel Vetter63560392010-02-19 11:51:59 +01001516
Daniel Vetter63560392010-02-19 11:51:59 +01001517 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00001518 obj->base.read_domains,
Daniel Vetter63560392010-02-19 11:51:59 +01001519 old_write_domain);
1520 }
1521 }
1522}
Zou Nan hai8187a2b2010-05-21 09:08:55 +08001523
Daniel Vetter53d227f2012-01-25 16:32:49 +01001524static u32
1525i915_gem_get_seqno(struct drm_device *dev)
1526{
1527 drm_i915_private_t *dev_priv = dev->dev_private;
1528 u32 seqno = dev_priv->next_seqno;
1529
1530 /* reserve 0 for non-seqno */
1531 if (++dev_priv->next_seqno == 0)
1532 dev_priv->next_seqno = 1;
1533
1534 return seqno;
1535}
1536
1537u32
1538i915_gem_next_request_seqno(struct intel_ring_buffer *ring)
1539{
1540 if (ring->outstanding_lazy_request == 0)
1541 ring->outstanding_lazy_request = i915_gem_get_seqno(ring->dev);
1542
1543 return ring->outstanding_lazy_request;
1544}
1545
Chris Wilson3cce4692010-10-27 16:11:02 +01001546int
Chris Wilsondb53a302011-02-03 11:57:46 +00001547i915_add_request(struct intel_ring_buffer *ring,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001548 struct drm_file *file,
Chris Wilsondb53a302011-02-03 11:57:46 +00001549 struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001550{
Chris Wilsondb53a302011-02-03 11:57:46 +00001551 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001552 uint32_t seqno;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001553 u32 request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001554 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01001555 int ret;
1556
1557 BUG_ON(request == NULL);
Daniel Vetter53d227f2012-01-25 16:32:49 +01001558 seqno = i915_gem_next_request_seqno(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001559
Chris Wilsona71d8d92012-02-15 11:25:36 +00001560 /* Record the position of the start of the request so that
1561 * should we detect the updated seqno part-way through the
1562 * GPU processing the request, we never over-estimate the
1563 * position of the head.
1564 */
1565 request_ring_position = intel_ring_get_tail(ring);
1566
Chris Wilson3cce4692010-10-27 16:11:02 +01001567 ret = ring->add_request(ring, &seqno);
1568 if (ret)
1569 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001570
Chris Wilsondb53a302011-02-03 11:57:46 +00001571 trace_i915_gem_request_add(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001572
1573 request->seqno = seqno;
Zou Nan hai852835f2010-05-21 09:08:56 +08001574 request->ring = ring;
Chris Wilsona71d8d92012-02-15 11:25:36 +00001575 request->tail = request_ring_position;
Eric Anholt673a3942008-07-30 12:06:12 -07001576 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08001577 was_empty = list_empty(&ring->request_list);
1578 list_add_tail(&request->list, &ring->request_list);
1579
Chris Wilsondb53a302011-02-03 11:57:46 +00001580 if (file) {
1581 struct drm_i915_file_private *file_priv = file->driver_priv;
1582
Chris Wilson1c255952010-09-26 11:03:27 +01001583 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001584 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00001585 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001586 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01001587 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00001588 }
Eric Anholt673a3942008-07-30 12:06:12 -07001589
Daniel Vetter5391d0c2012-01-25 14:03:57 +01001590 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00001591
Ben Gamarif65d9422009-09-14 17:48:44 -04001592 if (!dev_priv->mm.suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07001593 if (i915_enable_hangcheck) {
1594 mod_timer(&dev_priv->hangcheck_timer,
1595 jiffies +
1596 msecs_to_jiffies(DRM_I915_HANGCHECK_PERIOD));
1597 }
Ben Gamarif65d9422009-09-14 17:48:44 -04001598 if (was_empty)
Chris Wilsonb3b079d2010-09-13 23:44:34 +01001599 queue_delayed_work(dev_priv->wq,
1600 &dev_priv->mm.retire_work, HZ);
Ben Gamarif65d9422009-09-14 17:48:44 -04001601 }
Chris Wilson3cce4692010-10-27 16:11:02 +01001602 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001603}
1604
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001605static inline void
1606i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07001607{
Chris Wilson1c255952010-09-26 11:03:27 +01001608 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07001609
Chris Wilson1c255952010-09-26 11:03:27 +01001610 if (!file_priv)
1611 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001612
Chris Wilson1c255952010-09-26 11:03:27 +01001613 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00001614 if (request->file_priv) {
1615 list_del(&request->client_list);
1616 request->file_priv = NULL;
1617 }
Chris Wilson1c255952010-09-26 11:03:27 +01001618 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07001619}
1620
Chris Wilsondfaae392010-09-22 10:31:52 +01001621static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
1622 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01001623{
Chris Wilsondfaae392010-09-22 10:31:52 +01001624 while (!list_empty(&ring->request_list)) {
1625 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01001626
Chris Wilsondfaae392010-09-22 10:31:52 +01001627 request = list_first_entry(&ring->request_list,
1628 struct drm_i915_gem_request,
1629 list);
1630
1631 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001632 i915_gem_request_remove_from_client(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01001633 kfree(request);
1634 }
1635
1636 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001637 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001638
Chris Wilson05394f32010-11-08 19:18:58 +00001639 obj = list_first_entry(&ring->active_list,
1640 struct drm_i915_gem_object,
1641 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07001642
Chris Wilson05394f32010-11-08 19:18:58 +00001643 obj->base.write_domain = 0;
1644 list_del_init(&obj->gpu_write_list);
1645 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001646 }
Eric Anholt673a3942008-07-30 12:06:12 -07001647}
1648
Chris Wilson312817a2010-11-22 11:50:11 +00001649static void i915_gem_reset_fences(struct drm_device *dev)
1650{
1651 struct drm_i915_private *dev_priv = dev->dev_private;
1652 int i;
1653
Daniel Vetter4b9de732011-10-09 21:52:02 +02001654 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00001655 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00001656
Chris Wilsonada726c2012-04-17 15:31:32 +01001657 i915_gem_write_fence(dev, i, NULL);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001658
Chris Wilsonada726c2012-04-17 15:31:32 +01001659 if (reg->obj)
1660 i915_gem_object_fence_lost(reg->obj);
Chris Wilson7d2cb392010-11-27 17:38:29 +00001661
Chris Wilsonada726c2012-04-17 15:31:32 +01001662 reg->pin_count = 0;
1663 reg->obj = NULL;
1664 INIT_LIST_HEAD(&reg->lru_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001665 }
Chris Wilsonada726c2012-04-17 15:31:32 +01001666
1667 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson312817a2010-11-22 11:50:11 +00001668}
1669
Chris Wilson069efc12010-09-30 16:53:18 +01001670void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07001671{
Chris Wilsondfaae392010-09-22 10:31:52 +01001672 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001673 struct drm_i915_gem_object *obj;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001674 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001675
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001676 for (i = 0; i < I915_NUM_RINGS; i++)
1677 i915_gem_reset_ring_lists(dev_priv, &dev_priv->ring[i]);
Chris Wilsondfaae392010-09-22 10:31:52 +01001678
1679 /* Remove anything from the flushing lists. The GPU cache is likely
1680 * to be lost on reset along with the data, so simply move the
1681 * lost bo to the inactive list.
1682 */
1683 while (!list_empty(&dev_priv->mm.flushing_list)) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001684 obj = list_first_entry(&dev_priv->mm.flushing_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001685 struct drm_i915_gem_object,
1686 mm_list);
Chris Wilson9375e442010-09-19 12:21:28 +01001687
Chris Wilson05394f32010-11-08 19:18:58 +00001688 obj->base.write_domain = 0;
1689 list_del_init(&obj->gpu_write_list);
1690 i915_gem_object_move_to_inactive(obj);
Chris Wilson9375e442010-09-19 12:21:28 +01001691 }
Chris Wilson9375e442010-09-19 12:21:28 +01001692
Chris Wilsondfaae392010-09-22 10:31:52 +01001693 /* Move everything out of the GPU domains to ensure we do any
1694 * necessary invalidation upon reuse.
1695 */
Chris Wilson05394f32010-11-08 19:18:58 +00001696 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01001697 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01001698 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01001699 {
Chris Wilson05394f32010-11-08 19:18:58 +00001700 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01001701 }
Chris Wilson069efc12010-09-30 16:53:18 +01001702
1703 /* The fence registers are invalidated so clear them out */
Chris Wilson312817a2010-11-22 11:50:11 +00001704 i915_gem_reset_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001705}
1706
1707/**
1708 * This function clears the request list as sequence numbers are passed.
1709 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00001710void
Chris Wilsondb53a302011-02-03 11:57:46 +00001711i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001712{
Eric Anholt673a3942008-07-30 12:06:12 -07001713 uint32_t seqno;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001714 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001715
Chris Wilsondb53a302011-02-03 11:57:46 +00001716 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01001717 return;
1718
Chris Wilsondb53a302011-02-03 11:57:46 +00001719 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001720
Chris Wilson78501ea2010-10-27 12:18:21 +01001721 seqno = ring->get_seqno(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001722
Chris Wilson076e2c02011-01-21 10:07:18 +00001723 for (i = 0; i < ARRAY_SIZE(ring->sync_seqno); i++)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001724 if (seqno >= ring->sync_seqno[i])
1725 ring->sync_seqno[i] = 0;
1726
Zou Nan hai852835f2010-05-21 09:08:56 +08001727 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07001728 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07001729
Zou Nan hai852835f2010-05-21 09:08:56 +08001730 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07001731 struct drm_i915_gem_request,
1732 list);
Eric Anholt673a3942008-07-30 12:06:12 -07001733
Chris Wilsondfaae392010-09-22 10:31:52 +01001734 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07001735 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001736
Chris Wilsondb53a302011-02-03 11:57:46 +00001737 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00001738 /* We know the GPU must have read the request to have
1739 * sent us the seqno + interrupt, so use the position
1740 * of tail of the request to update the last known position
1741 * of the GPU head.
1742 */
1743 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001744
1745 list_del(&request->list);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01001746 i915_gem_request_remove_from_client(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001747 kfree(request);
1748 }
1749
1750 /* Move any buffers on the active list that are no longer referenced
1751 * by the ringbuffer to the flushing/inactive lists as appropriate.
1752 */
1753 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00001754 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001755
Akshay Joshi0206e352011-08-16 15:34:10 -04001756 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00001757 struct drm_i915_gem_object,
1758 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001759
Chris Wilson05394f32010-11-08 19:18:58 +00001760 if (!i915_seqno_passed(seqno, obj->last_rendering_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001761 break;
1762
Chris Wilson05394f32010-11-08 19:18:58 +00001763 if (obj->base.write_domain != 0)
Chris Wilsonb84d5f02010-09-18 01:38:04 +01001764 i915_gem_object_move_to_flushing(obj);
1765 else
1766 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001767 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001768
Chris Wilsondb53a302011-02-03 11:57:46 +00001769 if (unlikely(ring->trace_irq_seqno &&
1770 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001771 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00001772 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01001773 }
Chris Wilson23bc5982010-09-29 16:10:57 +01001774
Chris Wilsondb53a302011-02-03 11:57:46 +00001775 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07001776}
1777
1778void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001779i915_gem_retire_requests(struct drm_device *dev)
1780{
1781 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001782 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001783
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001784 for (i = 0; i < I915_NUM_RINGS; i++)
Chris Wilsondb53a302011-02-03 11:57:46 +00001785 i915_gem_retire_requests_ring(&dev_priv->ring[i]);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001786}
1787
Daniel Vetter75ef9da2010-08-21 00:25:16 +02001788static void
Eric Anholt673a3942008-07-30 12:06:12 -07001789i915_gem_retire_work_handler(struct work_struct *work)
1790{
1791 drm_i915_private_t *dev_priv;
1792 struct drm_device *dev;
Chris Wilson0a587052011-01-09 21:05:44 +00001793 bool idle;
1794 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07001795
1796 dev_priv = container_of(work, drm_i915_private_t,
1797 mm.retire_work.work);
1798 dev = dev_priv->dev;
1799
Chris Wilson891b48c2010-09-29 12:26:37 +01001800 /* Come back later if the device is busy... */
1801 if (!mutex_trylock(&dev->struct_mutex)) {
1802 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
1803 return;
1804 }
1805
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01001806 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08001807
Chris Wilson0a587052011-01-09 21:05:44 +00001808 /* Send a periodic flush down the ring so we don't hold onto GEM
1809 * objects indefinitely.
1810 */
1811 idle = true;
1812 for (i = 0; i < I915_NUM_RINGS; i++) {
1813 struct intel_ring_buffer *ring = &dev_priv->ring[i];
1814
1815 if (!list_empty(&ring->gpu_write_list)) {
1816 struct drm_i915_gem_request *request;
1817 int ret;
1818
Chris Wilsondb53a302011-02-03 11:57:46 +00001819 ret = i915_gem_flush_ring(ring,
1820 0, I915_GEM_GPU_DOMAINS);
Chris Wilson0a587052011-01-09 21:05:44 +00001821 request = kzalloc(sizeof(*request), GFP_KERNEL);
1822 if (ret || request == NULL ||
Chris Wilsondb53a302011-02-03 11:57:46 +00001823 i915_add_request(ring, NULL, request))
Chris Wilson0a587052011-01-09 21:05:44 +00001824 kfree(request);
1825 }
1826
1827 idle &= list_empty(&ring->request_list);
1828 }
1829
1830 if (!dev_priv->mm.suspended && !idle)
Eric Anholt9c9fe1f2009-08-03 16:09:16 -07001831 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, HZ);
Chris Wilson0a587052011-01-09 21:05:44 +00001832
Eric Anholt673a3942008-07-30 12:06:12 -07001833 mutex_unlock(&dev->struct_mutex);
1834}
1835
Chris Wilsondb53a302011-02-03 11:57:46 +00001836/**
1837 * Waits for a sequence number to be signaled, and cleans up the
1838 * request and object lists appropriately for that event.
1839 */
Daniel Vetter5a5a0c62009-09-15 22:57:36 +02001840int
Chris Wilsondb53a302011-02-03 11:57:46 +00001841i915_wait_request(struct intel_ring_buffer *ring,
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001842 uint32_t seqno,
1843 bool do_retire)
Eric Anholt673a3942008-07-30 12:06:12 -07001844{
Chris Wilsondb53a302011-02-03 11:57:46 +00001845 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001846 u32 ier;
Eric Anholt673a3942008-07-30 12:06:12 -07001847 int ret = 0;
1848
1849 BUG_ON(seqno == 0);
1850
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001851 if (atomic_read(&dev_priv->mm.wedged)) {
1852 struct completion *x = &dev_priv->error_completion;
1853 bool recovery_complete;
1854 unsigned long flags;
1855
1856 /* Give the error handler a chance to run. */
1857 spin_lock_irqsave(&x->wait.lock, flags);
1858 recovery_complete = x->done > 0;
1859 spin_unlock_irqrestore(&x->wait.lock, flags);
1860
1861 return recovery_complete ? -EIO : -EAGAIN;
1862 }
Ben Gamariffed1d02009-09-14 17:48:41 -04001863
Chris Wilson5d97eb62010-11-10 20:40:02 +00001864 if (seqno == ring->outstanding_lazy_request) {
Chris Wilson3cce4692010-10-27 16:11:02 +01001865 struct drm_i915_gem_request *request;
1866
1867 request = kzalloc(sizeof(*request), GFP_KERNEL);
1868 if (request == NULL)
Daniel Vettere35a41d2010-02-11 22:13:59 +01001869 return -ENOMEM;
Chris Wilson3cce4692010-10-27 16:11:02 +01001870
Chris Wilsondb53a302011-02-03 11:57:46 +00001871 ret = i915_add_request(ring, NULL, request);
Chris Wilson3cce4692010-10-27 16:11:02 +01001872 if (ret) {
1873 kfree(request);
1874 return ret;
1875 }
1876
1877 seqno = request->seqno;
Daniel Vettere35a41d2010-02-11 22:13:59 +01001878 }
1879
Chris Wilson78501ea2010-10-27 12:18:21 +01001880 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00001881 if (HAS_PCH_SPLIT(ring->dev))
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001882 ier = I915_READ(DEIER) | I915_READ(GTIER);
Jesse Barnes23e3f9b2012-03-28 13:39:39 -07001883 else if (IS_VALLEYVIEW(ring->dev))
1884 ier = I915_READ(GTIER) | I915_READ(VLV_IER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001885 else
1886 ier = I915_READ(IER);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001887 if (!ier) {
1888 DRM_ERROR("something (likely vbetool) disabled "
1889 "interrupts, re-enabling\n");
Chris Wilsonf01c22f2011-06-28 11:48:51 +01001890 ring->dev->driver->irq_preinstall(ring->dev);
1891 ring->dev->driver->irq_postinstall(ring->dev);
Jesse Barnes802c7eb2009-05-05 16:03:48 -07001892 }
1893
Chris Wilsondb53a302011-02-03 11:57:46 +00001894 trace_i915_gem_request_wait_begin(ring, seqno);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001895
Chris Wilsonb2223492010-10-27 15:27:33 +01001896 ring->waiting_seqno = seqno;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001897 if (ring->irq_get(ring)) {
Chris Wilsonce453d82011-02-21 14:43:56 +00001898 if (dev_priv->mm.interruptible)
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001899 ret = wait_event_interruptible(ring->irq_queue,
1900 i915_seqno_passed(ring->get_seqno(ring), seqno)
1901 || atomic_read(&dev_priv->mm.wedged));
1902 else
1903 wait_event(ring->irq_queue,
1904 i915_seqno_passed(ring->get_seqno(ring), seqno)
1905 || atomic_read(&dev_priv->mm.wedged));
Daniel Vetter48764bf2009-09-15 22:57:32 +02001906
Chris Wilsonb13c2b92010-12-13 16:54:50 +00001907 ring->irq_put(ring);
Eric Anholte959b5d2011-12-22 14:55:01 -08001908 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
1909 seqno) ||
1910 atomic_read(&dev_priv->mm.wedged), 3000))
Chris Wilsonb5ba1772010-12-14 12:17:15 +00001911 ret = -EBUSY;
Chris Wilsonb2223492010-10-27 15:27:33 +01001912 ring->waiting_seqno = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01001913
Chris Wilsondb53a302011-02-03 11:57:46 +00001914 trace_i915_gem_request_wait_end(ring, seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07001915 }
Ben Gamariba1234d2009-09-14 17:48:47 -04001916 if (atomic_read(&dev_priv->mm.wedged))
Chris Wilson30dbf0c2010-09-25 10:19:17 +01001917 ret = -EAGAIN;
Eric Anholt673a3942008-07-30 12:06:12 -07001918
Eric Anholt673a3942008-07-30 12:06:12 -07001919 /* Directly dispatch request retiring. While we have the work queue
1920 * to handle this, the waiter on a request often wants an associated
1921 * buffer to have made it to the inactive list, and we would need
1922 * a separate wait queue to handle that.
1923 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001924 if (ret == 0 && do_retire)
Chris Wilsondb53a302011-02-03 11:57:46 +00001925 i915_gem_retire_requests_ring(ring);
Eric Anholt673a3942008-07-30 12:06:12 -07001926
1927 return ret;
1928}
1929
Daniel Vetter48764bf2009-09-15 22:57:32 +02001930/**
Eric Anholt673a3942008-07-30 12:06:12 -07001931 * Ensures that all rendering to the object has completed and the object is
1932 * safe to unbind from the GTT or access from the CPU.
1933 */
Chris Wilson54cf91d2010-11-25 18:00:26 +00001934int
Chris Wilsonce453d82011-02-21 14:43:56 +00001935i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001936{
Eric Anholt673a3942008-07-30 12:06:12 -07001937 int ret;
1938
Eric Anholte47c68e2008-11-14 13:35:19 -08001939 /* This function only exists to support waiting for existing rendering,
1940 * not for emitting required flushes.
Eric Anholt673a3942008-07-30 12:06:12 -07001941 */
Chris Wilson05394f32010-11-08 19:18:58 +00001942 BUG_ON((obj->base.write_domain & I915_GEM_GPU_DOMAINS) != 0);
Eric Anholt673a3942008-07-30 12:06:12 -07001943
1944 /* If there is rendering queued on the buffer being evicted, wait for
1945 * it.
1946 */
Chris Wilson05394f32010-11-08 19:18:58 +00001947 if (obj->active) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08001948 ret = i915_wait_request(obj->ring, obj->last_rendering_seqno,
1949 true);
Chris Wilson2cf34d72010-09-14 13:03:28 +01001950 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07001951 return ret;
1952 }
1953
1954 return 0;
1955}
1956
Ben Widawsky5816d642012-04-11 11:18:19 -07001957/**
1958 * i915_gem_object_sync - sync an object to a ring.
1959 *
1960 * @obj: object which may be in use on another ring.
1961 * @to: ring we wish to use the object on. May be NULL.
1962 *
1963 * This code is meant to abstract object synchronization with the GPU.
1964 * Calling with NULL implies synchronizing the object with the CPU
1965 * rather than a particular GPU ring.
1966 *
1967 * Returns 0 if successful, else propagates up the lower layer error.
1968 */
Ben Widawsky2911a352012-04-05 14:47:36 -07001969int
1970i915_gem_object_sync(struct drm_i915_gem_object *obj,
1971 struct intel_ring_buffer *to)
1972{
1973 struct intel_ring_buffer *from = obj->ring;
1974 u32 seqno;
1975 int ret, idx;
1976
1977 if (from == NULL || to == from)
1978 return 0;
1979
Ben Widawsky5816d642012-04-11 11:18:19 -07001980 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Ben Widawsky2911a352012-04-05 14:47:36 -07001981 return i915_gem_object_wait_rendering(obj);
1982
1983 idx = intel_ring_sync_index(from, to);
1984
1985 seqno = obj->last_rendering_seqno;
1986 if (seqno <= from->sync_seqno[idx])
1987 return 0;
1988
1989 if (seqno == from->outstanding_lazy_request) {
1990 struct drm_i915_gem_request *request;
1991
1992 request = kzalloc(sizeof(*request), GFP_KERNEL);
1993 if (request == NULL)
1994 return -ENOMEM;
1995
1996 ret = i915_add_request(from, NULL, request);
1997 if (ret) {
1998 kfree(request);
1999 return ret;
2000 }
2001
2002 seqno = request->seqno;
2003 }
2004
Ben Widawsky2911a352012-04-05 14:47:36 -07002005
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002006 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002007 if (!ret)
2008 from->sync_seqno[idx] = seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002009
Ben Widawskye3a5a222012-04-11 11:18:20 -07002010 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002011}
2012
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002013static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2014{
2015 u32 old_write_domain, old_read_domains;
2016
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002017 /* Act a barrier for all accesses through the GTT */
2018 mb();
2019
2020 /* Force a pagefault for domain tracking on next user access */
2021 i915_gem_release_mmap(obj);
2022
Keith Packardb97c3d92011-06-24 21:02:59 -07002023 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2024 return;
2025
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002026 old_read_domains = obj->base.read_domains;
2027 old_write_domain = obj->base.write_domain;
2028
2029 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2030 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2031
2032 trace_i915_gem_object_change_domain(obj,
2033 old_read_domains,
2034 old_write_domain);
2035}
2036
Eric Anholt673a3942008-07-30 12:06:12 -07002037/**
2038 * Unbinds an object from the GTT aperture.
2039 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002040int
Chris Wilson05394f32010-11-08 19:18:58 +00002041i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002042{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002043 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002044 int ret = 0;
2045
Chris Wilson05394f32010-11-08 19:18:58 +00002046 if (obj->gtt_space == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002047 return 0;
2048
Chris Wilson05394f32010-11-08 19:18:58 +00002049 if (obj->pin_count != 0) {
Eric Anholt673a3942008-07-30 12:06:12 -07002050 DRM_ERROR("Attempting to unbind pinned buffer\n");
2051 return -EINVAL;
2052 }
2053
Chris Wilsona8198ee2011-04-13 22:04:09 +01002054 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002055 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002056 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002057 /* Continue on if we fail due to EIO, the GPU is hung so we
2058 * should be safe and we need to cleanup or else we might
2059 * cause memory corruption through use-after-free.
2060 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002061
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002062 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002063
2064 /* Move the object to the CPU domain to ensure that
2065 * any possible CPU writes while it's not in the GTT
2066 * are flushed when we go to remap it.
2067 */
2068 if (ret == 0)
2069 ret = i915_gem_object_set_to_cpu_domain(obj, 1);
2070 if (ret == -ERESTARTSYS)
2071 return ret;
Chris Wilson812ed4922010-09-30 15:08:57 +01002072 if (ret) {
Chris Wilsona8198ee2011-04-13 22:04:09 +01002073 /* In the event of a disaster, abandon all caches and
2074 * hope for the best.
2075 */
Chris Wilson812ed4922010-09-30 15:08:57 +01002076 i915_gem_clflush_object(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002077 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilson812ed4922010-09-30 15:08:57 +01002078 }
Eric Anholt673a3942008-07-30 12:06:12 -07002079
Daniel Vetter96b47b62009-12-15 17:50:00 +01002080 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002081 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002082 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002083 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002084
Chris Wilsondb53a302011-02-03 11:57:46 +00002085 trace_i915_gem_object_unbind(obj);
2086
Daniel Vetter74898d72012-02-15 23:50:22 +01002087 if (obj->has_global_gtt_mapping)
2088 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002089 if (obj->has_aliasing_ppgtt_mapping) {
2090 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2091 obj->has_aliasing_ppgtt_mapping = 0;
2092 }
Daniel Vetter74163902012-02-15 23:50:21 +01002093 i915_gem_gtt_finish_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002094
Chris Wilsone5281cc2010-10-28 13:45:36 +01002095 i915_gem_object_put_pages_gtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002096
Chris Wilson6299f992010-11-24 12:23:44 +00002097 list_del_init(&obj->gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002098 list_del_init(&obj->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002099 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002100 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002101
Chris Wilson05394f32010-11-08 19:18:58 +00002102 drm_mm_put_block(obj->gtt_space);
2103 obj->gtt_space = NULL;
2104 obj->gtt_offset = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002105
Chris Wilson05394f32010-11-08 19:18:58 +00002106 if (i915_gem_object_is_purgeable(obj))
Chris Wilson963b4832009-09-20 23:03:54 +01002107 i915_gem_object_truncate(obj);
2108
Chris Wilson8dc17752010-07-23 23:18:51 +01002109 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002110}
2111
Chris Wilson88241782011-01-07 17:09:48 +00002112int
Chris Wilsondb53a302011-02-03 11:57:46 +00002113i915_gem_flush_ring(struct intel_ring_buffer *ring,
Chris Wilson54cf91d2010-11-25 18:00:26 +00002114 uint32_t invalidate_domains,
2115 uint32_t flush_domains)
2116{
Chris Wilson88241782011-01-07 17:09:48 +00002117 int ret;
2118
Chris Wilson36d527d2011-03-19 22:26:49 +00002119 if (((invalidate_domains | flush_domains) & I915_GEM_GPU_DOMAINS) == 0)
2120 return 0;
2121
Chris Wilsondb53a302011-02-03 11:57:46 +00002122 trace_i915_gem_ring_flush(ring, invalidate_domains, flush_domains);
2123
Chris Wilson88241782011-01-07 17:09:48 +00002124 ret = ring->flush(ring, invalidate_domains, flush_domains);
2125 if (ret)
2126 return ret;
2127
Chris Wilson36d527d2011-03-19 22:26:49 +00002128 if (flush_domains & I915_GEM_GPU_DOMAINS)
2129 i915_gem_process_flushing_list(ring, flush_domains);
2130
Chris Wilson88241782011-01-07 17:09:48 +00002131 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002132}
2133
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002134static int i915_ring_idle(struct intel_ring_buffer *ring, bool do_retire)
Chris Wilsona56ba562010-09-28 10:07:56 +01002135{
Chris Wilson88241782011-01-07 17:09:48 +00002136 int ret;
2137
Chris Wilson395b70b2010-10-28 21:28:46 +01002138 if (list_empty(&ring->gpu_write_list) && list_empty(&ring->active_list))
Chris Wilson64193402010-10-24 12:38:05 +01002139 return 0;
2140
Chris Wilson88241782011-01-07 17:09:48 +00002141 if (!list_empty(&ring->gpu_write_list)) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002142 ret = i915_gem_flush_ring(ring,
Chris Wilson0ac74c62010-12-06 14:36:02 +00002143 I915_GEM_GPU_DOMAINS, I915_GEM_GPU_DOMAINS);
Chris Wilson88241782011-01-07 17:09:48 +00002144 if (ret)
2145 return ret;
2146 }
2147
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002148 return i915_wait_request(ring, i915_gem_next_request_seqno(ring),
2149 do_retire);
Chris Wilsona56ba562010-09-28 10:07:56 +01002150}
2151
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002152int i915_gpu_idle(struct drm_device *dev, bool do_retire)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002153{
2154 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002155 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002156
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002157 /* Flush everything onto the inactive list. */
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002158 for (i = 0; i < I915_NUM_RINGS; i++) {
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08002159 ret = i915_ring_idle(&dev_priv->ring[i], do_retire);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002160 if (ret)
2161 return ret;
2162 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002163
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002164 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002165}
2166
Chris Wilson9ce079e2012-04-17 15:31:30 +01002167static void sandybridge_write_fence_reg(struct drm_device *dev, int reg,
2168 struct drm_i915_gem_object *obj)
Eric Anholt4e901fd2009-10-26 16:44:17 -07002169{
Eric Anholt4e901fd2009-10-26 16:44:17 -07002170 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002171 uint64_t val;
2172
Chris Wilson9ce079e2012-04-17 15:31:30 +01002173 if (obj) {
2174 u32 size = obj->gtt_space->size;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002175
Chris Wilson9ce079e2012-04-17 15:31:30 +01002176 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2177 0xfffff000) << 32;
2178 val |= obj->gtt_offset & 0xfffff000;
2179 val |= (uint64_t)((obj->stride / 128) - 1) <<
2180 SANDYBRIDGE_FENCE_PITCH_SHIFT;
Eric Anholt4e901fd2009-10-26 16:44:17 -07002181
Chris Wilson9ce079e2012-04-17 15:31:30 +01002182 if (obj->tiling_mode == I915_TILING_Y)
2183 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2184 val |= I965_FENCE_REG_VALID;
2185 } else
2186 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002187
Chris Wilson9ce079e2012-04-17 15:31:30 +01002188 I915_WRITE64(FENCE_REG_SANDYBRIDGE_0 + reg * 8, val);
2189 POSTING_READ(FENCE_REG_SANDYBRIDGE_0 + reg * 8);
Eric Anholt4e901fd2009-10-26 16:44:17 -07002190}
2191
Chris Wilson9ce079e2012-04-17 15:31:30 +01002192static void i965_write_fence_reg(struct drm_device *dev, int reg,
2193 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002194{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002195 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002196 uint64_t val;
2197
Chris Wilson9ce079e2012-04-17 15:31:30 +01002198 if (obj) {
2199 u32 size = obj->gtt_space->size;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002200
Chris Wilson9ce079e2012-04-17 15:31:30 +01002201 val = (uint64_t)((obj->gtt_offset + size - 4096) &
2202 0xfffff000) << 32;
2203 val |= obj->gtt_offset & 0xfffff000;
2204 val |= ((obj->stride / 128) - 1) << I965_FENCE_PITCH_SHIFT;
2205 if (obj->tiling_mode == I915_TILING_Y)
2206 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2207 val |= I965_FENCE_REG_VALID;
2208 } else
2209 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002210
Chris Wilson9ce079e2012-04-17 15:31:30 +01002211 I915_WRITE64(FENCE_REG_965_0 + reg * 8, val);
2212 POSTING_READ(FENCE_REG_965_0 + reg * 8);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002213}
2214
Chris Wilson9ce079e2012-04-17 15:31:30 +01002215static void i915_write_fence_reg(struct drm_device *dev, int reg,
2216 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002217{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002218 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002219 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002220
Chris Wilson9ce079e2012-04-17 15:31:30 +01002221 if (obj) {
2222 u32 size = obj->gtt_space->size;
2223 int pitch_val;
2224 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002225
Chris Wilson9ce079e2012-04-17 15:31:30 +01002226 WARN((obj->gtt_offset & ~I915_FENCE_START_MASK) ||
2227 (size & -size) != size ||
2228 (obj->gtt_offset & (size - 1)),
2229 "object 0x%08x [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2230 obj->gtt_offset, obj->map_and_fenceable, size);
2231
2232 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2233 tile_width = 128;
2234 else
2235 tile_width = 512;
2236
2237 /* Note: pitch better be a power of two tile widths */
2238 pitch_val = obj->stride / tile_width;
2239 pitch_val = ffs(pitch_val) - 1;
2240
2241 val = obj->gtt_offset;
2242 if (obj->tiling_mode == I915_TILING_Y)
2243 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2244 val |= I915_FENCE_SIZE_BITS(size);
2245 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2246 val |= I830_FENCE_REG_VALID;
2247 } else
2248 val = 0;
2249
2250 if (reg < 8)
2251 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002252 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002253 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002254
Chris Wilson9ce079e2012-04-17 15:31:30 +01002255 I915_WRITE(reg, val);
2256 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002257}
2258
Chris Wilson9ce079e2012-04-17 15:31:30 +01002259static void i830_write_fence_reg(struct drm_device *dev, int reg,
2260 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002261{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002262 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002263 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002264
Chris Wilson9ce079e2012-04-17 15:31:30 +01002265 if (obj) {
2266 u32 size = obj->gtt_space->size;
2267 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002268
Chris Wilson9ce079e2012-04-17 15:31:30 +01002269 WARN((obj->gtt_offset & ~I830_FENCE_START_MASK) ||
2270 (size & -size) != size ||
2271 (obj->gtt_offset & (size - 1)),
2272 "object 0x%08x not 512K or pot-size 0x%08x aligned\n",
2273 obj->gtt_offset, size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002274
Chris Wilson9ce079e2012-04-17 15:31:30 +01002275 pitch_val = obj->stride / 128;
2276 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002277
Chris Wilson9ce079e2012-04-17 15:31:30 +01002278 val = obj->gtt_offset;
2279 if (obj->tiling_mode == I915_TILING_Y)
2280 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2281 val |= I830_FENCE_SIZE_BITS(size);
2282 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2283 val |= I830_FENCE_REG_VALID;
2284 } else
2285 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002286
Chris Wilson9ce079e2012-04-17 15:31:30 +01002287 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2288 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2289}
2290
2291static void i915_gem_write_fence(struct drm_device *dev, int reg,
2292 struct drm_i915_gem_object *obj)
2293{
2294 switch (INTEL_INFO(dev)->gen) {
2295 case 7:
2296 case 6: sandybridge_write_fence_reg(dev, reg, obj); break;
2297 case 5:
2298 case 4: i965_write_fence_reg(dev, reg, obj); break;
2299 case 3: i915_write_fence_reg(dev, reg, obj); break;
2300 case 2: i830_write_fence_reg(dev, reg, obj); break;
2301 default: break;
2302 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002303}
2304
Chris Wilson61050802012-04-17 15:31:31 +01002305static inline int fence_number(struct drm_i915_private *dev_priv,
2306 struct drm_i915_fence_reg *fence)
2307{
2308 return fence - dev_priv->fence_regs;
2309}
2310
2311static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2312 struct drm_i915_fence_reg *fence,
2313 bool enable)
2314{
2315 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2316 int reg = fence_number(dev_priv, fence);
2317
2318 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
2319
2320 if (enable) {
2321 obj->fence_reg = reg;
2322 fence->obj = obj;
2323 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2324 } else {
2325 obj->fence_reg = I915_FENCE_REG_NONE;
2326 fence->obj = NULL;
2327 list_del_init(&fence->lru_list);
2328 }
2329}
2330
Chris Wilsond9e86c02010-11-10 16:40:20 +00002331static int
Chris Wilsona360bb12012-04-17 15:31:25 +01002332i915_gem_object_flush_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002333{
2334 int ret;
2335
2336 if (obj->fenced_gpu_access) {
Chris Wilson88241782011-01-07 17:09:48 +00002337 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilson1c293ea2012-04-17 15:31:27 +01002338 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00002339 0, obj->base.write_domain);
2340 if (ret)
2341 return ret;
2342 }
Chris Wilsond9e86c02010-11-10 16:40:20 +00002343
2344 obj->fenced_gpu_access = false;
2345 }
2346
Chris Wilson1c293ea2012-04-17 15:31:27 +01002347 if (obj->last_fenced_seqno) {
Chris Wilson18991842012-04-17 15:31:29 +01002348 ret = i915_wait_request(obj->ring,
2349 obj->last_fenced_seqno,
Chris Wilson14415742012-04-17 15:31:33 +01002350 false);
Chris Wilson18991842012-04-17 15:31:29 +01002351 if (ret)
2352 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002353
2354 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002355 }
2356
Chris Wilson63256ec2011-01-04 18:42:07 +00002357 /* Ensure that all CPU reads are completed before installing a fence
2358 * and all writes before removing the fence.
2359 */
2360 if (obj->base.read_domains & I915_GEM_DOMAIN_GTT)
2361 mb();
2362
Chris Wilsond9e86c02010-11-10 16:40:20 +00002363 return 0;
2364}
2365
2366int
2367i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2368{
Chris Wilson61050802012-04-17 15:31:31 +01002369 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002370 int ret;
2371
Chris Wilsona360bb12012-04-17 15:31:25 +01002372 ret = i915_gem_object_flush_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002373 if (ret)
2374 return ret;
2375
Chris Wilson61050802012-04-17 15:31:31 +01002376 if (obj->fence_reg == I915_FENCE_REG_NONE)
2377 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002378
Chris Wilson61050802012-04-17 15:31:31 +01002379 i915_gem_object_update_fence(obj,
2380 &dev_priv->fence_regs[obj->fence_reg],
2381 false);
2382 i915_gem_object_fence_lost(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002383
2384 return 0;
2385}
2386
2387static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002388i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002389{
Daniel Vetterae3db242010-02-19 11:51:58 +01002390 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002391 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002392 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002393
2394 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002395 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002396 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2397 reg = &dev_priv->fence_regs[i];
2398 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002399 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002400
Chris Wilson1690e1e2011-12-14 13:57:08 +01002401 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002402 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002403 }
2404
Chris Wilsond9e86c02010-11-10 16:40:20 +00002405 if (avail == NULL)
2406 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002407
2408 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002409 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002410 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002411 continue;
2412
Chris Wilson8fe301a2012-04-17 15:31:28 +01002413 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002414 }
2415
Chris Wilson8fe301a2012-04-17 15:31:28 +01002416 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002417}
2418
Jesse Barnesde151cf2008-11-12 10:03:55 -08002419/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002420 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002421 * @obj: object to map through a fence reg
2422 *
2423 * When mapping objects through the GTT, userspace wants to be able to write
2424 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002425 * This function walks the fence regs looking for a free one for @obj,
2426 * stealing one if it can't find any.
2427 *
2428 * It then sets up the reg based on the object's properties: address, pitch
2429 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002430 *
2431 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002432 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002433int
Chris Wilson06d98132012-04-17 15:31:24 +01002434i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002435{
Chris Wilson05394f32010-11-08 19:18:58 +00002436 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002437 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002438 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002439 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002440 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002441
Chris Wilson14415742012-04-17 15:31:33 +01002442 /* Have we updated the tiling parameters upon the object and so
2443 * will need to serialise the write to the associated fence register?
2444 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002445 if (obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002446 ret = i915_gem_object_flush_fence(obj);
2447 if (ret)
2448 return ret;
2449 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002450
Chris Wilsond9e86c02010-11-10 16:40:20 +00002451 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002452 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2453 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002454 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002455 list_move_tail(&reg->lru_list,
2456 &dev_priv->mm.fence_list);
2457 return 0;
2458 }
2459 } else if (enable) {
2460 reg = i915_find_fence_reg(dev);
2461 if (reg == NULL)
2462 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002463
Chris Wilson14415742012-04-17 15:31:33 +01002464 if (reg->obj) {
2465 struct drm_i915_gem_object *old = reg->obj;
2466
2467 ret = i915_gem_object_flush_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002468 if (ret)
2469 return ret;
2470
Chris Wilson14415742012-04-17 15:31:33 +01002471 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002472 }
Chris Wilson14415742012-04-17 15:31:33 +01002473 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07002474 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002475
Chris Wilson14415742012-04-17 15:31:33 +01002476 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002477 obj->fence_dirty = false;
Chris Wilson14415742012-04-17 15:31:33 +01002478
Chris Wilson9ce079e2012-04-17 15:31:30 +01002479 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002480}
2481
2482/**
Eric Anholt673a3942008-07-30 12:06:12 -07002483 * Finds free space in the GTT aperture and binds the object there.
2484 */
2485static int
Chris Wilson05394f32010-11-08 19:18:58 +00002486i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02002487 unsigned alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01002488 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07002489{
Chris Wilson05394f32010-11-08 19:18:58 +00002490 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07002491 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002492 struct drm_mm_node *free_space;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002493 gfp_t gfpmask = __GFP_NORETRY | __GFP_NOWARN;
Daniel Vetter5e783302010-11-14 22:32:36 +01002494 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002495 bool mappable, fenceable;
Chris Wilson07f73f62009-09-14 16:50:30 +01002496 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002497
Chris Wilson05394f32010-11-08 19:18:58 +00002498 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilson3ef94da2009-09-14 16:50:29 +01002499 DRM_ERROR("Attempting to bind a purgeable object\n");
2500 return -EINVAL;
2501 }
2502
Chris Wilsone28f8712011-07-18 13:11:49 -07002503 fence_size = i915_gem_get_gtt_size(dev,
2504 obj->base.size,
2505 obj->tiling_mode);
2506 fence_alignment = i915_gem_get_gtt_alignment(dev,
2507 obj->base.size,
2508 obj->tiling_mode);
2509 unfenced_alignment =
2510 i915_gem_get_unfenced_gtt_alignment(dev,
2511 obj->base.size,
2512 obj->tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002513
Eric Anholt673a3942008-07-30 12:06:12 -07002514 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01002515 alignment = map_and_fenceable ? fence_alignment :
2516 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002517 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002518 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
2519 return -EINVAL;
2520 }
2521
Chris Wilson05394f32010-11-08 19:18:58 +00002522 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002523
Chris Wilson654fc602010-05-27 13:18:21 +01002524 /* If the object is bigger than the entire aperture, reject it early
2525 * before evicting everything in a vain attempt to find space.
2526 */
Chris Wilson05394f32010-11-08 19:18:58 +00002527 if (obj->base.size >
Daniel Vetter75e9e912010-11-04 17:11:09 +01002528 (map_and_fenceable ? dev_priv->mm.gtt_mappable_end : dev_priv->mm.gtt_total)) {
Chris Wilson654fc602010-05-27 13:18:21 +01002529 DRM_ERROR("Attempting to bind an object larger than the aperture\n");
2530 return -E2BIG;
2531 }
2532
Eric Anholt673a3942008-07-30 12:06:12 -07002533 search_free:
Daniel Vetter75e9e912010-11-04 17:11:09 +01002534 if (map_and_fenceable)
Daniel Vetter920afa72010-09-16 17:54:23 +02002535 free_space =
2536 drm_mm_search_free_in_range(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002537 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002538 dev_priv->mm.gtt_mappable_end,
2539 0);
2540 else
2541 free_space = drm_mm_search_free(&dev_priv->mm.gtt_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002542 size, alignment, 0);
Daniel Vetter920afa72010-09-16 17:54:23 +02002543
2544 if (free_space != NULL) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01002545 if (map_and_fenceable)
Chris Wilson05394f32010-11-08 19:18:58 +00002546 obj->gtt_space =
Daniel Vetter920afa72010-09-16 17:54:23 +02002547 drm_mm_get_block_range_generic(free_space,
Chris Wilsona00b10c2010-09-24 21:15:47 +01002548 size, alignment, 0,
Daniel Vetter920afa72010-09-16 17:54:23 +02002549 dev_priv->mm.gtt_mappable_end,
2550 0);
2551 else
Chris Wilson05394f32010-11-08 19:18:58 +00002552 obj->gtt_space =
Chris Wilsona00b10c2010-09-24 21:15:47 +01002553 drm_mm_get_block(free_space, size, alignment);
Daniel Vetter920afa72010-09-16 17:54:23 +02002554 }
Chris Wilson05394f32010-11-08 19:18:58 +00002555 if (obj->gtt_space == NULL) {
Eric Anholt673a3942008-07-30 12:06:12 -07002556 /* If the gtt is empty and we're still having trouble
2557 * fitting our object in, we're out of memory.
2558 */
Daniel Vetter75e9e912010-11-04 17:11:09 +01002559 ret = i915_gem_evict_something(dev, size, alignment,
2560 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01002561 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002562 return ret;
Chris Wilson97311292009-09-21 00:22:34 +01002563
Eric Anholt673a3942008-07-30 12:06:12 -07002564 goto search_free;
2565 }
2566
Chris Wilsone5281cc2010-10-28 13:45:36 +01002567 ret = i915_gem_object_get_pages_gtt(obj, gfpmask);
Eric Anholt673a3942008-07-30 12:06:12 -07002568 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00002569 drm_mm_put_block(obj->gtt_space);
2570 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002571
2572 if (ret == -ENOMEM) {
Chris Wilson809b6332011-01-10 17:33:15 +00002573 /* first try to reclaim some memory by clearing the GTT */
2574 ret = i915_gem_evict_everything(dev, false);
Chris Wilson07f73f62009-09-14 16:50:30 +01002575 if (ret) {
Chris Wilson07f73f62009-09-14 16:50:30 +01002576 /* now try to shrink everyone else */
Chris Wilson4bdadb92010-01-27 13:36:32 +00002577 if (gfpmask) {
2578 gfpmask = 0;
2579 goto search_free;
Chris Wilson07f73f62009-09-14 16:50:30 +01002580 }
2581
Chris Wilson809b6332011-01-10 17:33:15 +00002582 return -ENOMEM;
Chris Wilson07f73f62009-09-14 16:50:30 +01002583 }
2584
2585 goto search_free;
2586 }
2587
Eric Anholt673a3942008-07-30 12:06:12 -07002588 return ret;
2589 }
2590
Daniel Vetter74163902012-02-15 23:50:21 +01002591 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01002592 if (ret) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01002593 i915_gem_object_put_pages_gtt(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002594 drm_mm_put_block(obj->gtt_space);
2595 obj->gtt_space = NULL;
Chris Wilson07f73f62009-09-14 16:50:30 +01002596
Chris Wilson809b6332011-01-10 17:33:15 +00002597 if (i915_gem_evict_everything(dev, false))
Chris Wilson07f73f62009-09-14 16:50:30 +01002598 return ret;
Chris Wilson07f73f62009-09-14 16:50:30 +01002599
2600 goto search_free;
Eric Anholt673a3942008-07-30 12:06:12 -07002601 }
Eric Anholt673a3942008-07-30 12:06:12 -07002602
Daniel Vetter0ebb9822012-02-15 23:50:24 +01002603 if (!dev_priv->mm.aliasing_ppgtt)
2604 i915_gem_gtt_bind_object(obj, obj->cache_level);
Eric Anholt673a3942008-07-30 12:06:12 -07002605
Chris Wilson6299f992010-11-24 12:23:44 +00002606 list_add_tail(&obj->gtt_list, &dev_priv->mm.gtt_list);
Chris Wilson05394f32010-11-08 19:18:58 +00002607 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01002608
Eric Anholt673a3942008-07-30 12:06:12 -07002609 /* Assert that the object is not currently in any GPU domain. As it
2610 * wasn't in the GTT, there shouldn't be any way it could have been in
2611 * a GPU cache
2612 */
Chris Wilson05394f32010-11-08 19:18:58 +00002613 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2614 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Eric Anholt673a3942008-07-30 12:06:12 -07002615
Chris Wilson6299f992010-11-24 12:23:44 +00002616 obj->gtt_offset = obj->gtt_space->start;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002617
Daniel Vetter75e9e912010-11-04 17:11:09 +01002618 fenceable =
Chris Wilson05394f32010-11-08 19:18:58 +00002619 obj->gtt_space->size == fence_size &&
Akshay Joshi0206e352011-08-16 15:34:10 -04002620 (obj->gtt_space->start & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002621
Daniel Vetter75e9e912010-11-04 17:11:09 +01002622 mappable =
Chris Wilson05394f32010-11-08 19:18:58 +00002623 obj->gtt_offset + obj->base.size <= dev_priv->mm.gtt_mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01002624
Chris Wilson05394f32010-11-08 19:18:58 +00002625 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01002626
Chris Wilsondb53a302011-02-03 11:57:46 +00002627 trace_i915_gem_object_bind(obj, map_and_fenceable);
Eric Anholt673a3942008-07-30 12:06:12 -07002628 return 0;
2629}
2630
2631void
Chris Wilson05394f32010-11-08 19:18:58 +00002632i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002633{
Eric Anholt673a3942008-07-30 12:06:12 -07002634 /* If we don't have a page list set up, then we're not pinned
2635 * to GPU, and we can ignore the cache flush because it'll happen
2636 * again at bind time.
2637 */
Chris Wilson05394f32010-11-08 19:18:58 +00002638 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002639 return;
2640
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002641 /* If the GPU is snooping the contents of the CPU cache,
2642 * we do not need to manually clear the CPU cache lines. However,
2643 * the caches are only snooped when the render cache is
2644 * flushed/invalidated. As we always have to emit invalidations
2645 * and flushes when moving into and out of the RENDER domain, correct
2646 * snooping behaviour occurs naturally as the result of our domain
2647 * tracking.
2648 */
2649 if (obj->cache_level != I915_CACHE_NONE)
2650 return;
2651
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002652 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07002653
Chris Wilson05394f32010-11-08 19:18:58 +00002654 drm_clflush_pages(obj->pages, obj->base.size / PAGE_SIZE);
Eric Anholt673a3942008-07-30 12:06:12 -07002655}
2656
Eric Anholte47c68e2008-11-14 13:35:19 -08002657/** Flushes any GPU write domain for the object if it's dirty. */
Chris Wilson88241782011-01-07 17:09:48 +00002658static int
Chris Wilson3619df02010-11-28 15:37:17 +00002659i915_gem_object_flush_gpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002660{
Chris Wilson05394f32010-11-08 19:18:58 +00002661 if ((obj->base.write_domain & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson88241782011-01-07 17:09:48 +00002662 return 0;
Eric Anholte47c68e2008-11-14 13:35:19 -08002663
2664 /* Queue the GPU write cache flushing we need. */
Chris Wilsondb53a302011-02-03 11:57:46 +00002665 return i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002666}
2667
2668/** Flushes the GTT write domain for the object if it's dirty. */
2669static void
Chris Wilson05394f32010-11-08 19:18:58 +00002670i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002671{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002672 uint32_t old_write_domain;
2673
Chris Wilson05394f32010-11-08 19:18:58 +00002674 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08002675 return;
2676
Chris Wilson63256ec2011-01-04 18:42:07 +00002677 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08002678 * to it immediately go to main memory as far as we know, so there's
2679 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00002680 *
2681 * However, we do have to enforce the order so that all writes through
2682 * the GTT land before any writes to the device, such as updates to
2683 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08002684 */
Chris Wilson63256ec2011-01-04 18:42:07 +00002685 wmb();
2686
Chris Wilson05394f32010-11-08 19:18:58 +00002687 old_write_domain = obj->base.write_domain;
2688 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002689
2690 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002691 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002692 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002693}
2694
2695/** Flushes the CPU write domain for the object if it's dirty. */
2696static void
Chris Wilson05394f32010-11-08 19:18:58 +00002697i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08002698{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002699 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08002700
Chris Wilson05394f32010-11-08 19:18:58 +00002701 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08002702 return;
2703
2704 i915_gem_clflush_object(obj);
Daniel Vetter40ce6572010-11-05 18:12:18 +01002705 intel_gtt_chipset_flush();
Chris Wilson05394f32010-11-08 19:18:58 +00002706 old_write_domain = obj->base.write_domain;
2707 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002708
2709 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00002710 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002711 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08002712}
2713
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002714/**
2715 * Moves a single object to the GTT read, and possibly write domain.
2716 *
2717 * This function returns when the move is complete, including waiting on
2718 * flushes to occur.
2719 */
Jesse Barnes79e53942008-11-07 14:24:08 -08002720int
Chris Wilson20217462010-11-23 15:26:33 +00002721i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002722{
Chris Wilson8325a092012-04-24 15:52:35 +01002723 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002724 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002725 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002726
Eric Anholt02354392008-11-26 13:58:13 -08002727 /* Not valid to be called on unbound objects. */
Chris Wilson05394f32010-11-08 19:18:58 +00002728 if (obj->gtt_space == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08002729 return -EINVAL;
2730
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002731 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
2732 return 0;
2733
Chris Wilson88241782011-01-07 17:09:48 +00002734 ret = i915_gem_object_flush_gpu_write_domain(obj);
2735 if (ret)
2736 return ret;
2737
Chris Wilson87ca9c82010-12-02 09:42:56 +00002738 if (obj->pending_gpu_write || write) {
Chris Wilsonce453d82011-02-21 14:43:56 +00002739 ret = i915_gem_object_wait_rendering(obj);
Chris Wilson87ca9c82010-12-02 09:42:56 +00002740 if (ret)
2741 return ret;
2742 }
Chris Wilson2dafb1e2010-06-07 14:03:05 +01002743
Chris Wilson72133422010-09-13 23:56:38 +01002744 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002745
Chris Wilson05394f32010-11-08 19:18:58 +00002746 old_write_domain = obj->base.write_domain;
2747 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002748
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002749 /* It should now be out of any other write domains, and we can update
2750 * the domain values for our changes.
2751 */
Chris Wilson05394f32010-11-08 19:18:58 +00002752 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
2753 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08002754 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002755 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
2756 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
2757 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08002758 }
2759
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002760 trace_i915_gem_object_change_domain(obj,
2761 old_read_domains,
2762 old_write_domain);
2763
Chris Wilson8325a092012-04-24 15:52:35 +01002764 /* And bump the LRU for this access */
2765 if (i915_gem_object_is_inactive(obj))
2766 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
2767
Eric Anholte47c68e2008-11-14 13:35:19 -08002768 return 0;
2769}
2770
Chris Wilsone4ffd172011-04-04 09:44:39 +01002771int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
2772 enum i915_cache_level cache_level)
2773{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002774 struct drm_device *dev = obj->base.dev;
2775 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01002776 int ret;
2777
2778 if (obj->cache_level == cache_level)
2779 return 0;
2780
2781 if (obj->pin_count) {
2782 DRM_DEBUG("can not change the cache level of pinned objects\n");
2783 return -EBUSY;
2784 }
2785
2786 if (obj->gtt_space) {
2787 ret = i915_gem_object_finish_gpu(obj);
2788 if (ret)
2789 return ret;
2790
2791 i915_gem_object_finish_gtt(obj);
2792
2793 /* Before SandyBridge, you could not use tiling or fence
2794 * registers with snooped memory, so relinquish any fences
2795 * currently pointing to our region in the aperture.
2796 */
2797 if (INTEL_INFO(obj->base.dev)->gen < 6) {
2798 ret = i915_gem_object_put_fence(obj);
2799 if (ret)
2800 return ret;
2801 }
2802
Daniel Vetter74898d72012-02-15 23:50:22 +01002803 if (obj->has_global_gtt_mapping)
2804 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002805 if (obj->has_aliasing_ppgtt_mapping)
2806 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
2807 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01002808 }
2809
2810 if (cache_level == I915_CACHE_NONE) {
2811 u32 old_read_domains, old_write_domain;
2812
2813 /* If we're coming from LLC cached, then we haven't
2814 * actually been tracking whether the data is in the
2815 * CPU cache or not, since we only allow one bit set
2816 * in obj->write_domain and have been skipping the clflushes.
2817 * Just set it to the CPU cache for now.
2818 */
2819 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
2820 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
2821
2822 old_read_domains = obj->base.read_domains;
2823 old_write_domain = obj->base.write_domain;
2824
2825 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2826 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2827
2828 trace_i915_gem_object_change_domain(obj,
2829 old_read_domains,
2830 old_write_domain);
2831 }
2832
2833 obj->cache_level = cache_level;
2834 return 0;
2835}
2836
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002837/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002838 * Prepare buffer for display plane (scanout, cursors, etc).
2839 * Can be called from an uninterruptible phase (modesetting) and allows
2840 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002841 */
2842int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002843i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
2844 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00002845 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002846{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002847 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002848 int ret;
2849
Chris Wilson88241782011-01-07 17:09:48 +00002850 ret = i915_gem_object_flush_gpu_write_domain(obj);
2851 if (ret)
2852 return ret;
2853
Chris Wilson0be73282010-12-06 14:36:27 +00002854 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07002855 ret = i915_gem_object_sync(obj, pipelined);
2856 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002857 return ret;
2858 }
2859
Eric Anholta7ef0642011-03-29 16:59:54 -07002860 /* The display engine is not coherent with the LLC cache on gen6. As
2861 * a result, we make sure that the pinning that is about to occur is
2862 * done with uncached PTEs. This is lowest common denominator for all
2863 * chipsets.
2864 *
2865 * However for gen6+, we could do better by using the GFDT bit instead
2866 * of uncaching, which would allow us to flush all the LLC-cached data
2867 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
2868 */
2869 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
2870 if (ret)
2871 return ret;
2872
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002873 /* As the user may map the buffer once pinned in the display plane
2874 * (e.g. libkms for the bootup splash), we have to ensure that we
2875 * always use map_and_fenceable for all scanout buffers.
2876 */
2877 ret = i915_gem_object_pin(obj, alignment, true);
2878 if (ret)
2879 return ret;
2880
Chris Wilsonb118c1e2010-05-27 13:18:14 +01002881 i915_gem_object_flush_cpu_write_domain(obj);
2882
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002883 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00002884 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002885
2886 /* It should now be out of any other write domains, and we can update
2887 * the domain values for our changes.
2888 */
2889 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00002890 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002891
2892 trace_i915_gem_object_change_domain(obj,
2893 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002894 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08002895
2896 return 0;
2897}
2898
Chris Wilson85345512010-11-13 09:49:11 +00002899int
Chris Wilsona8198ee2011-04-13 22:04:09 +01002900i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00002901{
Chris Wilson88241782011-01-07 17:09:48 +00002902 int ret;
2903
Chris Wilsona8198ee2011-04-13 22:04:09 +01002904 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00002905 return 0;
2906
Chris Wilson88241782011-01-07 17:09:48 +00002907 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00002908 ret = i915_gem_flush_ring(obj->ring, 0, obj->base.write_domain);
Chris Wilson88241782011-01-07 17:09:48 +00002909 if (ret)
2910 return ret;
2911 }
Chris Wilson85345512010-11-13 09:49:11 +00002912
Chris Wilsonc501ae72011-12-14 13:57:23 +01002913 ret = i915_gem_object_wait_rendering(obj);
2914 if (ret)
2915 return ret;
2916
Chris Wilsona8198ee2011-04-13 22:04:09 +01002917 /* Ensure that we invalidate the GPU's caches and TLBs. */
2918 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01002919 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00002920}
2921
Eric Anholte47c68e2008-11-14 13:35:19 -08002922/**
2923 * Moves a single object to the CPU read, and possibly write domain.
2924 *
2925 * This function returns when the move is complete, including waiting on
2926 * flushes to occur.
2927 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02002928int
Chris Wilson919926a2010-11-12 13:42:53 +00002929i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08002930{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002931 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08002932 int ret;
2933
Chris Wilson8d7e3de2011-02-07 15:23:02 +00002934 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
2935 return 0;
2936
Chris Wilson88241782011-01-07 17:09:48 +00002937 ret = i915_gem_object_flush_gpu_write_domain(obj);
2938 if (ret)
2939 return ret;
2940
Chris Wilsonf8413192012-04-10 11:52:50 +01002941 if (write || obj->pending_gpu_write) {
2942 ret = i915_gem_object_wait_rendering(obj);
2943 if (ret)
2944 return ret;
2945 }
Eric Anholte47c68e2008-11-14 13:35:19 -08002946
2947 i915_gem_object_flush_gtt_write_domain(obj);
2948
Chris Wilson05394f32010-11-08 19:18:58 +00002949 old_write_domain = obj->base.write_domain;
2950 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002951
Eric Anholte47c68e2008-11-14 13:35:19 -08002952 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00002953 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08002954 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08002955
Chris Wilson05394f32010-11-08 19:18:58 +00002956 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002957 }
2958
2959 /* It should now be out of any other write domains, and we can update
2960 * the domain values for our changes.
2961 */
Chris Wilson05394f32010-11-08 19:18:58 +00002962 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08002963
2964 /* If we're writing through the CPU, then the GPU read domains will
2965 * need to be invalidated at next use.
2966 */
2967 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00002968 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
2969 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08002970 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002971
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002972 trace_i915_gem_object_change_domain(obj,
2973 old_read_domains,
2974 old_write_domain);
2975
Eric Anholt2ef7eea2008-11-10 10:53:25 -08002976 return 0;
2977}
2978
Eric Anholt673a3942008-07-30 12:06:12 -07002979/* Throttle our rendering by waiting until the ring has completed our requests
2980 * emitted over 20 msec ago.
2981 *
Eric Anholtb9624422009-06-03 07:27:35 +00002982 * Note that if we were to use the current jiffies each time around the loop,
2983 * we wouldn't escape the function with any frames outstanding if the time to
2984 * render a frame was over 20ms.
2985 *
Eric Anholt673a3942008-07-30 12:06:12 -07002986 * This should get us reasonable parallelism between CPU and GPU but also
2987 * relatively low latency when blocking on a particular request to finish.
2988 */
2989static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002990i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07002991{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002992 struct drm_i915_private *dev_priv = dev->dev_private;
2993 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002994 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002995 struct drm_i915_gem_request *request;
2996 struct intel_ring_buffer *ring = NULL;
2997 u32 seqno = 0;
2998 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002999
Chris Wilsone110e8d2011-01-26 15:39:14 +00003000 if (atomic_read(&dev_priv->mm.wedged))
3001 return -EIO;
3002
Chris Wilson1c255952010-09-26 11:03:27 +01003003 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003004 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003005 if (time_after_eq(request->emitted_jiffies, recent_enough))
3006 break;
3007
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003008 ring = request->ring;
3009 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003010 }
Chris Wilson1c255952010-09-26 11:03:27 +01003011 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003012
3013 if (seqno == 0)
3014 return 0;
3015
3016 ret = 0;
Chris Wilson78501ea2010-10-27 12:18:21 +01003017 if (!i915_seqno_passed(ring->get_seqno(ring), seqno)) {
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003018 /* And wait for the seqno passing without holding any locks and
3019 * causing extra latency for others. This is safe as the irq
3020 * generation is designed to be run atomically and so is
3021 * lockless.
3022 */
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003023 if (ring->irq_get(ring)) {
3024 ret = wait_event_interruptible(ring->irq_queue,
3025 i915_seqno_passed(ring->get_seqno(ring), seqno)
3026 || atomic_read(&dev_priv->mm.wedged));
3027 ring->irq_put(ring);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003028
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003029 if (ret == 0 && atomic_read(&dev_priv->mm.wedged))
3030 ret = -EIO;
Eric Anholte959b5d2011-12-22 14:55:01 -08003031 } else if (wait_for_atomic(i915_seqno_passed(ring->get_seqno(ring),
3032 seqno) ||
Eric Anholt7ea29b12011-12-22 14:54:59 -08003033 atomic_read(&dev_priv->mm.wedged), 3000)) {
3034 ret = -EBUSY;
Chris Wilsonb13c2b92010-12-13 16:54:50 +00003035 }
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003036 }
3037
3038 if (ret == 0)
3039 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003040
Eric Anholt673a3942008-07-30 12:06:12 -07003041 return ret;
3042}
3043
Eric Anholt673a3942008-07-30 12:06:12 -07003044int
Chris Wilson05394f32010-11-08 19:18:58 +00003045i915_gem_object_pin(struct drm_i915_gem_object *obj,
3046 uint32_t alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003047 bool map_and_fenceable)
Eric Anholt673a3942008-07-30 12:06:12 -07003048{
Eric Anholt673a3942008-07-30 12:06:12 -07003049 int ret;
3050
Chris Wilson05394f32010-11-08 19:18:58 +00003051 BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003052
Chris Wilson05394f32010-11-08 19:18:58 +00003053 if (obj->gtt_space != NULL) {
3054 if ((alignment && obj->gtt_offset & (alignment - 1)) ||
3055 (map_and_fenceable && !obj->map_and_fenceable)) {
3056 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003057 "bo is already pinned with incorrect alignment:"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003058 " offset=%x, req.alignment=%x, req.map_and_fenceable=%d,"
3059 " obj->map_and_fenceable=%d\n",
Chris Wilson05394f32010-11-08 19:18:58 +00003060 obj->gtt_offset, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003061 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003062 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003063 ret = i915_gem_object_unbind(obj);
3064 if (ret)
3065 return ret;
3066 }
3067 }
3068
Chris Wilson05394f32010-11-08 19:18:58 +00003069 if (obj->gtt_space == NULL) {
Chris Wilsona00b10c2010-09-24 21:15:47 +01003070 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003071 map_and_fenceable);
Chris Wilson97311292009-09-21 00:22:34 +01003072 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003073 return ret;
Chris Wilson22c344e2009-02-11 14:26:45 +00003074 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003075
Daniel Vetter74898d72012-02-15 23:50:22 +01003076 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3077 i915_gem_gtt_bind_object(obj, obj->cache_level);
3078
Chris Wilson1b502472012-04-24 15:47:30 +01003079 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003080 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003081
3082 return 0;
3083}
3084
3085void
Chris Wilson05394f32010-11-08 19:18:58 +00003086i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003087{
Chris Wilson05394f32010-11-08 19:18:58 +00003088 BUG_ON(obj->pin_count == 0);
3089 BUG_ON(obj->gtt_space == NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07003090
Chris Wilson1b502472012-04-24 15:47:30 +01003091 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003092 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003093}
3094
3095int
3096i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003097 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003098{
3099 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003100 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003101 int ret;
3102
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003103 ret = i915_mutex_lock_interruptible(dev);
3104 if (ret)
3105 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003106
Chris Wilson05394f32010-11-08 19:18:58 +00003107 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003108 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003109 ret = -ENOENT;
3110 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003111 }
Eric Anholt673a3942008-07-30 12:06:12 -07003112
Chris Wilson05394f32010-11-08 19:18:58 +00003113 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003114 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003115 ret = -EINVAL;
3116 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003117 }
3118
Chris Wilson05394f32010-11-08 19:18:58 +00003119 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003120 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3121 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003122 ret = -EINVAL;
3123 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003124 }
3125
Chris Wilson05394f32010-11-08 19:18:58 +00003126 obj->user_pin_count++;
3127 obj->pin_filp = file;
3128 if (obj->user_pin_count == 1) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003129 ret = i915_gem_object_pin(obj, args->alignment, true);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003130 if (ret)
3131 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003132 }
3133
3134 /* XXX - flush the CPU caches for pinned objects
3135 * as the X server doesn't manage domains yet
3136 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003137 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003138 args->offset = obj->gtt_offset;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003139out:
Chris Wilson05394f32010-11-08 19:18:58 +00003140 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003141unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003142 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003143 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003144}
3145
3146int
3147i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003148 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003149{
3150 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003151 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003152 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003153
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003154 ret = i915_mutex_lock_interruptible(dev);
3155 if (ret)
3156 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003157
Chris Wilson05394f32010-11-08 19:18:58 +00003158 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003159 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003160 ret = -ENOENT;
3161 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003162 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003163
Chris Wilson05394f32010-11-08 19:18:58 +00003164 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003165 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3166 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003167 ret = -EINVAL;
3168 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003169 }
Chris Wilson05394f32010-11-08 19:18:58 +00003170 obj->user_pin_count--;
3171 if (obj->user_pin_count == 0) {
3172 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003173 i915_gem_object_unpin(obj);
3174 }
Eric Anholt673a3942008-07-30 12:06:12 -07003175
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003176out:
Chris Wilson05394f32010-11-08 19:18:58 +00003177 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003178unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003179 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003180 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003181}
3182
3183int
3184i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003185 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003186{
3187 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003188 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003189 int ret;
3190
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003191 ret = i915_mutex_lock_interruptible(dev);
3192 if (ret)
3193 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003194
Chris Wilson05394f32010-11-08 19:18:58 +00003195 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003196 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003197 ret = -ENOENT;
3198 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003199 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003200
Chris Wilson0be555b2010-08-04 15:36:30 +01003201 /* Count all active objects as busy, even if they are currently not used
3202 * by the gpu. Users of this interface expect objects to eventually
3203 * become non-busy without any further actions, therefore emit any
3204 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003205 */
Chris Wilson05394f32010-11-08 19:18:58 +00003206 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003207 if (args->busy) {
3208 /* Unconditionally flush objects, even when the gpu still uses this
3209 * object. Userspace calling this function indicates that it wants to
3210 * use this buffer rather sooner than later, so issuing the required
3211 * flush earlier is beneficial.
3212 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003213 if (obj->base.write_domain & I915_GEM_GPU_DOMAINS) {
Chris Wilsondb53a302011-02-03 11:57:46 +00003214 ret = i915_gem_flush_ring(obj->ring,
Chris Wilson88241782011-01-07 17:09:48 +00003215 0, obj->base.write_domain);
Chris Wilson1a1c6972010-12-07 23:00:20 +00003216 } else if (obj->ring->outstanding_lazy_request ==
3217 obj->last_rendering_seqno) {
3218 struct drm_i915_gem_request *request;
3219
Chris Wilson7a194872010-12-07 10:38:40 +00003220 /* This ring is not being cleared by active usage,
3221 * so emit a request to do so.
3222 */
Chris Wilson1a1c6972010-12-07 23:00:20 +00003223 request = kzalloc(sizeof(*request), GFP_KERNEL);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003224 if (request) {
Akshay Joshi0206e352011-08-16 15:34:10 -04003225 ret = i915_add_request(obj->ring, NULL, request);
Rakib Mullick457eafc2011-11-16 00:49:28 +06003226 if (ret)
3227 kfree(request);
3228 } else
Chris Wilson7a194872010-12-07 10:38:40 +00003229 ret = -ENOMEM;
3230 }
Chris Wilson0be555b2010-08-04 15:36:30 +01003231
3232 /* Update the active list for the hardware's current position.
3233 * Otherwise this only updates on a delayed timer or when irqs
3234 * are actually unmasked, and our working set ends up being
3235 * larger than required.
3236 */
Chris Wilsondb53a302011-02-03 11:57:46 +00003237 i915_gem_retire_requests_ring(obj->ring);
Chris Wilson0be555b2010-08-04 15:36:30 +01003238
Chris Wilson05394f32010-11-08 19:18:58 +00003239 args->busy = obj->active;
Chris Wilson0be555b2010-08-04 15:36:30 +01003240 }
Eric Anholt673a3942008-07-30 12:06:12 -07003241
Chris Wilson05394f32010-11-08 19:18:58 +00003242 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003243unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003244 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003245 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003246}
3247
3248int
3249i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3250 struct drm_file *file_priv)
3251{
Akshay Joshi0206e352011-08-16 15:34:10 -04003252 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003253}
3254
Chris Wilson3ef94da2009-09-14 16:50:29 +01003255int
3256i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3257 struct drm_file *file_priv)
3258{
3259 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003260 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003261 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003262
3263 switch (args->madv) {
3264 case I915_MADV_DONTNEED:
3265 case I915_MADV_WILLNEED:
3266 break;
3267 default:
3268 return -EINVAL;
3269 }
3270
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003271 ret = i915_mutex_lock_interruptible(dev);
3272 if (ret)
3273 return ret;
3274
Chris Wilson05394f32010-11-08 19:18:58 +00003275 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003276 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003277 ret = -ENOENT;
3278 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003279 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003280
Chris Wilson05394f32010-11-08 19:18:58 +00003281 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003282 ret = -EINVAL;
3283 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003284 }
3285
Chris Wilson05394f32010-11-08 19:18:58 +00003286 if (obj->madv != __I915_MADV_PURGED)
3287 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003288
Chris Wilson2d7ef392009-09-20 23:13:10 +01003289 /* if the object is no longer bound, discard its backing storage */
Chris Wilson05394f32010-11-08 19:18:58 +00003290 if (i915_gem_object_is_purgeable(obj) &&
3291 obj->gtt_space == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003292 i915_gem_object_truncate(obj);
3293
Chris Wilson05394f32010-11-08 19:18:58 +00003294 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003295
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003296out:
Chris Wilson05394f32010-11-08 19:18:58 +00003297 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003298unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003299 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003300 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003301}
3302
Chris Wilson05394f32010-11-08 19:18:58 +00003303struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3304 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003305{
Chris Wilson73aa8082010-09-30 11:46:12 +01003306 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc397b902010-04-09 19:05:07 +00003307 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003308 struct address_space *mapping;
Daniel Vetterc397b902010-04-09 19:05:07 +00003309
3310 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
3311 if (obj == NULL)
3312 return NULL;
3313
3314 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
3315 kfree(obj);
3316 return NULL;
3317 }
3318
Hugh Dickins5949eac2011-06-27 16:18:18 -07003319 mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
3320 mapping_set_gfp_mask(mapping, GFP_HIGHUSER | __GFP_RECLAIMABLE);
3321
Chris Wilson73aa8082010-09-30 11:46:12 +01003322 i915_gem_info_add_obj(dev_priv, size);
3323
Daniel Vetterc397b902010-04-09 19:05:07 +00003324 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3325 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3326
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003327 if (HAS_LLC(dev)) {
3328 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003329 * cache) for about a 10% performance improvement
3330 * compared to uncached. Graphics requests other than
3331 * display scanout are coherent with the CPU in
3332 * accessing this cache. This means in this mode we
3333 * don't need to clflush on the CPU side, and on the
3334 * GPU side we only need to flush internal caches to
3335 * get data visible to the CPU.
3336 *
3337 * However, we maintain the display planes as UC, and so
3338 * need to rebind when first used as such.
3339 */
3340 obj->cache_level = I915_CACHE_LLC;
3341 } else
3342 obj->cache_level = I915_CACHE_NONE;
3343
Daniel Vetter62b8b212010-04-09 19:05:08 +00003344 obj->base.driver_private = NULL;
Daniel Vetterc397b902010-04-09 19:05:07 +00003345 obj->fence_reg = I915_FENCE_REG_NONE;
Chris Wilson69dc4982010-10-19 10:36:51 +01003346 INIT_LIST_HEAD(&obj->mm_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003347 INIT_LIST_HEAD(&obj->gtt_list);
Chris Wilson69dc4982010-10-19 10:36:51 +01003348 INIT_LIST_HEAD(&obj->ring_list);
Chris Wilson432e58e2010-11-25 19:32:06 +00003349 INIT_LIST_HEAD(&obj->exec_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003350 INIT_LIST_HEAD(&obj->gpu_write_list);
Daniel Vetterc397b902010-04-09 19:05:07 +00003351 obj->madv = I915_MADV_WILLNEED;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003352 /* Avoid an unnecessary call to unbind on the first bind. */
3353 obj->map_and_fenceable = true;
Daniel Vetterc397b902010-04-09 19:05:07 +00003354
Chris Wilson05394f32010-11-08 19:18:58 +00003355 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003356}
3357
Eric Anholt673a3942008-07-30 12:06:12 -07003358int i915_gem_init_object(struct drm_gem_object *obj)
3359{
Daniel Vetterc397b902010-04-09 19:05:07 +00003360 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003361
Eric Anholt673a3942008-07-30 12:06:12 -07003362 return 0;
3363}
3364
Chris Wilson1488fc02012-04-24 15:47:31 +01003365void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003366{
Chris Wilson1488fc02012-04-24 15:47:31 +01003367 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003368 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003369 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003370
Chris Wilson26e12f892011-03-20 11:20:19 +00003371 trace_i915_gem_object_destroy(obj);
3372
Chris Wilson1488fc02012-04-24 15:47:31 +01003373 if (obj->phys_obj)
3374 i915_gem_detach_phys_object(dev, obj);
3375
3376 obj->pin_count = 0;
3377 if (WARN_ON(i915_gem_object_unbind(obj) == -ERESTARTSYS)) {
3378 bool was_interruptible;
3379
3380 was_interruptible = dev_priv->mm.interruptible;
3381 dev_priv->mm.interruptible = false;
3382
3383 WARN_ON(i915_gem_object_unbind(obj));
3384
3385 dev_priv->mm.interruptible = was_interruptible;
3386 }
3387
Chris Wilson05394f32010-11-08 19:18:58 +00003388 if (obj->base.map_list.map)
Rob Clarkb464e9a2011-08-10 08:09:08 -05003389 drm_gem_free_mmap_offset(&obj->base);
Chris Wilsonbe726152010-07-23 23:18:50 +01003390
Chris Wilson05394f32010-11-08 19:18:58 +00003391 drm_gem_object_release(&obj->base);
3392 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003393
Chris Wilson05394f32010-11-08 19:18:58 +00003394 kfree(obj->bit_17);
3395 kfree(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003396}
3397
Jesse Barnes5669fca2009-02-17 15:13:31 -08003398int
Eric Anholt673a3942008-07-30 12:06:12 -07003399i915_gem_idle(struct drm_device *dev)
3400{
3401 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003402 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003403
Keith Packard6dbe2772008-10-14 21:41:13 -07003404 mutex_lock(&dev->struct_mutex);
3405
Chris Wilson87acb0a2010-10-19 10:13:00 +01003406 if (dev_priv->mm.suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003407 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003408 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003409 }
Eric Anholt673a3942008-07-30 12:06:12 -07003410
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003411 ret = i915_gpu_idle(dev, true);
Keith Packard6dbe2772008-10-14 21:41:13 -07003412 if (ret) {
3413 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003414 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003415 }
Eric Anholt673a3942008-07-30 12:06:12 -07003416
Chris Wilson29105cc2010-01-07 10:39:13 +00003417 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01003418 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3419 i915_gem_evict_everything(dev, false);
Chris Wilson29105cc2010-01-07 10:39:13 +00003420
Chris Wilson312817a2010-11-22 11:50:11 +00003421 i915_gem_reset_fences(dev);
3422
Chris Wilson29105cc2010-01-07 10:39:13 +00003423 /* Hack! Don't let anybody do execbuf while we don't control the chip.
3424 * We need to replace this with a semaphore, or something.
3425 * And not confound mm.suspended!
3426 */
3427 dev_priv->mm.suspended = 1;
Daniel Vetterbc0c7f12010-08-20 18:18:48 +02003428 del_timer_sync(&dev_priv->hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003429
3430 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003431 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003432
Keith Packard6dbe2772008-10-14 21:41:13 -07003433 mutex_unlock(&dev->struct_mutex);
3434
Chris Wilson29105cc2010-01-07 10:39:13 +00003435 /* Cancel the retire work handler, which should be idle now. */
3436 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3437
Eric Anholt673a3942008-07-30 12:06:12 -07003438 return 0;
3439}
3440
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003441void i915_gem_init_swizzling(struct drm_device *dev)
3442{
3443 drm_i915_private_t *dev_priv = dev->dev_private;
3444
Daniel Vetter11782b02012-01-31 16:47:55 +01003445 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003446 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
3447 return;
3448
3449 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
3450 DISP_TILE_SURFACE_SWIZZLING);
3451
Daniel Vetter11782b02012-01-31 16:47:55 +01003452 if (IS_GEN5(dev))
3453 return;
3454
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003455 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
3456 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02003457 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003458 else
Daniel Vetter6b26c862012-04-24 14:04:12 +02003459 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003460}
Daniel Vettere21af882012-02-09 20:53:27 +01003461
3462void i915_gem_init_ppgtt(struct drm_device *dev)
3463{
3464 drm_i915_private_t *dev_priv = dev->dev_private;
3465 uint32_t pd_offset;
3466 struct intel_ring_buffer *ring;
Daniel Vetter55a254a2012-03-22 00:14:43 +01003467 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
3468 uint32_t __iomem *pd_addr;
3469 uint32_t pd_entry;
Daniel Vettere21af882012-02-09 20:53:27 +01003470 int i;
3471
3472 if (!dev_priv->mm.aliasing_ppgtt)
3473 return;
3474
Daniel Vetter55a254a2012-03-22 00:14:43 +01003475
3476 pd_addr = dev_priv->mm.gtt->gtt + ppgtt->pd_offset/sizeof(uint32_t);
3477 for (i = 0; i < ppgtt->num_pd_entries; i++) {
3478 dma_addr_t pt_addr;
3479
3480 if (dev_priv->mm.gtt->needs_dmar)
3481 pt_addr = ppgtt->pt_dma_addr[i];
3482 else
3483 pt_addr = page_to_phys(ppgtt->pt_pages[i]);
3484
3485 pd_entry = GEN6_PDE_ADDR_ENCODE(pt_addr);
3486 pd_entry |= GEN6_PDE_VALID;
3487
3488 writel(pd_entry, pd_addr + i);
3489 }
3490 readl(pd_addr);
3491
3492 pd_offset = ppgtt->pd_offset;
Daniel Vettere21af882012-02-09 20:53:27 +01003493 pd_offset /= 64; /* in cachelines, */
3494 pd_offset <<= 16;
3495
3496 if (INTEL_INFO(dev)->gen == 6) {
Daniel Vetter48ecfa12012-04-11 20:42:40 +02003497 uint32_t ecochk, gab_ctl, ecobits;
3498
3499 ecobits = I915_READ(GAC_ECO_BITS);
3500 I915_WRITE(GAC_ECO_BITS, ecobits | ECOBITS_PPGTT_CACHE64B);
Daniel Vetterbe901a52012-04-11 20:42:39 +02003501
3502 gab_ctl = I915_READ(GAB_CTL);
3503 I915_WRITE(GAB_CTL, gab_ctl | GAB_CTL_CONT_AFTER_PAGEFAULT);
3504
3505 ecochk = I915_READ(GAM_ECOCHK);
Daniel Vettere21af882012-02-09 20:53:27 +01003506 I915_WRITE(GAM_ECOCHK, ecochk | ECOCHK_SNB_BIT |
3507 ECOCHK_PPGTT_CACHE64B);
Daniel Vetter6b26c862012-04-24 14:04:12 +02003508 I915_WRITE(GFX_MODE, _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003509 } else if (INTEL_INFO(dev)->gen >= 7) {
3510 I915_WRITE(GAM_ECOCHK, ECOCHK_PPGTT_CACHE64B);
3511 /* GFX_MODE is per-ring on gen7+ */
3512 }
3513
3514 for (i = 0; i < I915_NUM_RINGS; i++) {
3515 ring = &dev_priv->ring[i];
3516
3517 if (INTEL_INFO(dev)->gen >= 7)
3518 I915_WRITE(RING_MODE_GEN7(ring),
Daniel Vetter6b26c862012-04-24 14:04:12 +02003519 _MASKED_BIT_ENABLE(GFX_PPGTT_ENABLE));
Daniel Vettere21af882012-02-09 20:53:27 +01003520
3521 I915_WRITE(RING_PP_DIR_DCLV(ring), PP_DIR_DCLV_2G);
3522 I915_WRITE(RING_PP_DIR_BASE(ring), pd_offset);
3523 }
3524}
3525
Eric Anholt673a3942008-07-30 12:06:12 -07003526int
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003527i915_gem_init_hw(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003528{
3529 drm_i915_private_t *dev_priv = dev->dev_private;
3530 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003531
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003532 i915_gem_init_swizzling(dev);
3533
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003534 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003535 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00003536 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01003537
3538 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08003539 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003540 if (ret)
3541 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003542 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01003543
Chris Wilson549f7362010-10-19 11:19:32 +01003544 if (HAS_BLT(dev)) {
3545 ret = intel_init_blt_ring_buffer(dev);
3546 if (ret)
3547 goto cleanup_bsd_ring;
3548 }
3549
Chris Wilson6f392d5482010-08-07 11:01:22 +01003550 dev_priv->next_seqno = 1;
3551
Daniel Vettere21af882012-02-09 20:53:27 +01003552 i915_gem_init_ppgtt(dev);
3553
Chris Wilson68f95ba2010-05-27 13:18:22 +01003554 return 0;
3555
Chris Wilson549f7362010-10-19 11:19:32 +01003556cleanup_bsd_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003557 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
Chris Wilson68f95ba2010-05-27 13:18:22 +01003558cleanup_render_ring:
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003559 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003560 return ret;
3561}
3562
3563void
3564i915_gem_cleanup_ringbuffer(struct drm_device *dev)
3565{
3566 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003567 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003568
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003569 for (i = 0; i < I915_NUM_RINGS; i++)
3570 intel_cleanup_ring_buffer(&dev_priv->ring[i]);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08003571}
3572
3573int
Eric Anholt673a3942008-07-30 12:06:12 -07003574i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
3575 struct drm_file *file_priv)
3576{
3577 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003578 int ret, i;
Eric Anholt673a3942008-07-30 12:06:12 -07003579
Jesse Barnes79e53942008-11-07 14:24:08 -08003580 if (drm_core_check_feature(dev, DRIVER_MODESET))
3581 return 0;
3582
Ben Gamariba1234d2009-09-14 17:48:47 -04003583 if (atomic_read(&dev_priv->mm.wedged)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003584 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Ben Gamariba1234d2009-09-14 17:48:47 -04003585 atomic_set(&dev_priv->mm.wedged, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07003586 }
3587
Eric Anholt673a3942008-07-30 12:06:12 -07003588 mutex_lock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003589 dev_priv->mm.suspended = 0;
3590
Daniel Vetterf691e2f2012-02-02 09:58:12 +01003591 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003592 if (ret != 0) {
3593 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003594 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08003595 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08003596
Chris Wilson69dc4982010-10-19 10:36:51 +01003597 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07003598 BUG_ON(!list_empty(&dev_priv->mm.flushing_list));
3599 BUG_ON(!list_empty(&dev_priv->mm.inactive_list));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003600 for (i = 0; i < I915_NUM_RINGS; i++) {
3601 BUG_ON(!list_empty(&dev_priv->ring[i].active_list));
3602 BUG_ON(!list_empty(&dev_priv->ring[i].request_list));
3603 }
Eric Anholt673a3942008-07-30 12:06:12 -07003604 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003605
Chris Wilson5f353082010-06-07 14:03:03 +01003606 ret = drm_irq_install(dev);
3607 if (ret)
3608 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003609
Eric Anholt673a3942008-07-30 12:06:12 -07003610 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01003611
3612cleanup_ringbuffer:
3613 mutex_lock(&dev->struct_mutex);
3614 i915_gem_cleanup_ringbuffer(dev);
3615 dev_priv->mm.suspended = 1;
3616 mutex_unlock(&dev->struct_mutex);
3617
3618 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003619}
3620
3621int
3622i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
3623 struct drm_file *file_priv)
3624{
Jesse Barnes79e53942008-11-07 14:24:08 -08003625 if (drm_core_check_feature(dev, DRIVER_MODESET))
3626 return 0;
3627
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04003628 drm_irq_uninstall(dev);
Linus Torvaldse6890f62009-09-08 17:09:24 -07003629 return i915_gem_idle(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003630}
3631
3632void
3633i915_gem_lastclose(struct drm_device *dev)
3634{
3635 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003636
Eric Anholte806b492009-01-22 09:56:58 -08003637 if (drm_core_check_feature(dev, DRIVER_MODESET))
3638 return;
3639
Keith Packard6dbe2772008-10-14 21:41:13 -07003640 ret = i915_gem_idle(dev);
3641 if (ret)
3642 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07003643}
3644
Chris Wilson64193402010-10-24 12:38:05 +01003645static void
3646init_ring_lists(struct intel_ring_buffer *ring)
3647{
3648 INIT_LIST_HEAD(&ring->active_list);
3649 INIT_LIST_HEAD(&ring->request_list);
3650 INIT_LIST_HEAD(&ring->gpu_write_list);
3651}
3652
Eric Anholt673a3942008-07-30 12:06:12 -07003653void
3654i915_gem_load(struct drm_device *dev)
3655{
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003656 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07003657 drm_i915_private_t *dev_priv = dev->dev_private;
3658
Chris Wilson69dc4982010-10-19 10:36:51 +01003659 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003660 INIT_LIST_HEAD(&dev_priv->mm.flushing_list);
3661 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07003662 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Daniel Vetter93a37f22010-11-05 20:24:53 +01003663 INIT_LIST_HEAD(&dev_priv->mm.gtt_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003664 for (i = 0; i < I915_NUM_RINGS; i++)
3665 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02003666 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02003667 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003668 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
3669 i915_gem_retire_work_handler);
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003670 init_completion(&dev_priv->error_completion);
Chris Wilson31169712009-09-14 16:50:28 +01003671
Dave Airlie94400122010-07-20 13:15:31 +10003672 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
3673 if (IS_GEN3(dev)) {
3674 u32 tmp = I915_READ(MI_ARB_STATE);
3675 if (!(tmp & MI_ARB_C3_LP_WRITE_ENABLE)) {
3676 /* arb state is a masked write, so set bit + bit in mask */
3677 tmp = MI_ARB_C3_LP_WRITE_ENABLE | (MI_ARB_C3_LP_WRITE_ENABLE << MI_ARB_MASK_SHIFT);
3678 I915_WRITE(MI_ARB_STATE, tmp);
3679 }
3680 }
3681
Chris Wilson72bfa192010-12-19 11:42:05 +00003682 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
3683
Jesse Barnesde151cf2008-11-12 10:03:55 -08003684 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08003685 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3686 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003687
Chris Wilsona6c45cf2010-09-17 00:32:17 +01003688 if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08003689 dev_priv->num_fence_regs = 16;
3690 else
3691 dev_priv->num_fence_regs = 8;
3692
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02003693 /* Initialize fence registers to zero */
Chris Wilsonada726c2012-04-17 15:31:32 +01003694 i915_gem_reset_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07003695
Eric Anholt673a3942008-07-30 12:06:12 -07003696 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05003697 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01003698
Chris Wilsonce453d82011-02-21 14:43:56 +00003699 dev_priv->mm.interruptible = true;
3700
Chris Wilson17250b72010-10-28 12:51:39 +01003701 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
3702 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
3703 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07003704}
Dave Airlie71acb5e2008-12-30 20:31:46 +10003705
3706/*
3707 * Create a physically contiguous memory object for this object
3708 * e.g. for cursor + overlay regs
3709 */
Chris Wilson995b6762010-08-20 13:23:26 +01003710static int i915_gem_init_phys_object(struct drm_device *dev,
3711 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003712{
3713 drm_i915_private_t *dev_priv = dev->dev_private;
3714 struct drm_i915_gem_phys_object *phys_obj;
3715 int ret;
3716
3717 if (dev_priv->mm.phys_objs[id - 1] || !size)
3718 return 0;
3719
Eric Anholt9a298b22009-03-24 12:23:04 -07003720 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003721 if (!phys_obj)
3722 return -ENOMEM;
3723
3724 phys_obj->id = id;
3725
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003726 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003727 if (!phys_obj->handle) {
3728 ret = -ENOMEM;
3729 goto kfree_obj;
3730 }
3731#ifdef CONFIG_X86
3732 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3733#endif
3734
3735 dev_priv->mm.phys_objs[id - 1] = phys_obj;
3736
3737 return 0;
3738kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07003739 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003740 return ret;
3741}
3742
Chris Wilson995b6762010-08-20 13:23:26 +01003743static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003744{
3745 drm_i915_private_t *dev_priv = dev->dev_private;
3746 struct drm_i915_gem_phys_object *phys_obj;
3747
3748 if (!dev_priv->mm.phys_objs[id - 1])
3749 return;
3750
3751 phys_obj = dev_priv->mm.phys_objs[id - 1];
3752 if (phys_obj->cur_obj) {
3753 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
3754 }
3755
3756#ifdef CONFIG_X86
3757 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
3758#endif
3759 drm_pci_free(dev, phys_obj->handle);
3760 kfree(phys_obj);
3761 dev_priv->mm.phys_objs[id - 1] = NULL;
3762}
3763
3764void i915_gem_free_all_phys_object(struct drm_device *dev)
3765{
3766 int i;
3767
Dave Airlie260883c2009-01-22 17:58:49 +10003768 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003769 i915_gem_free_phys_object(dev, i);
3770}
3771
3772void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003773 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003774{
Chris Wilson05394f32010-11-08 19:18:58 +00003775 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01003776 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003777 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003778 int page_count;
3779
Chris Wilson05394f32010-11-08 19:18:58 +00003780 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003781 return;
Chris Wilson05394f32010-11-08 19:18:58 +00003782 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003783
Chris Wilson05394f32010-11-08 19:18:58 +00003784 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003785 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07003786 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003787 if (!IS_ERR(page)) {
3788 char *dst = kmap_atomic(page);
3789 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
3790 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003791
Chris Wilsone5281cc2010-10-28 13:45:36 +01003792 drm_clflush_pages(&page, 1);
3793
3794 set_page_dirty(page);
3795 mark_page_accessed(page);
3796 page_cache_release(page);
3797 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003798 }
Daniel Vetter40ce6572010-11-05 18:12:18 +01003799 intel_gtt_chipset_flush();
Chris Wilsond78b47b2009-06-17 21:52:49 +01003800
Chris Wilson05394f32010-11-08 19:18:58 +00003801 obj->phys_obj->cur_obj = NULL;
3802 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003803}
3804
3805int
3806i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00003807 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01003808 int id,
3809 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003810{
Chris Wilson05394f32010-11-08 19:18:58 +00003811 struct address_space *mapping = obj->base.filp->f_path.dentry->d_inode->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003812 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003813 int ret = 0;
3814 int page_count;
3815 int i;
3816
3817 if (id > I915_MAX_PHYS_OBJECT)
3818 return -EINVAL;
3819
Chris Wilson05394f32010-11-08 19:18:58 +00003820 if (obj->phys_obj) {
3821 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10003822 return 0;
3823 i915_gem_detach_phys_object(dev, obj);
3824 }
3825
Dave Airlie71acb5e2008-12-30 20:31:46 +10003826 /* create a new object */
3827 if (!dev_priv->mm.phys_objs[id - 1]) {
3828 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00003829 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003830 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00003831 DRM_ERROR("failed to init phys object %d size: %zu\n",
3832 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003833 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003834 }
3835 }
3836
3837 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00003838 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
3839 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003840
Chris Wilson05394f32010-11-08 19:18:58 +00003841 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003842
3843 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01003844 struct page *page;
3845 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003846
Hugh Dickins5949eac2011-06-27 16:18:18 -07003847 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003848 if (IS_ERR(page))
3849 return PTR_ERR(page);
3850
Chris Wilsonff75b9b2010-10-30 22:52:31 +01003851 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00003852 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003853 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07003854 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01003855
3856 mark_page_accessed(page);
3857 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10003858 }
3859
3860 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003861}
3862
3863static int
Chris Wilson05394f32010-11-08 19:18:58 +00003864i915_gem_phys_pwrite(struct drm_device *dev,
3865 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10003866 struct drm_i915_gem_pwrite *args,
3867 struct drm_file *file_priv)
3868{
Chris Wilson05394f32010-11-08 19:18:58 +00003869 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003870 char __user *user_data = (char __user *) (uintptr_t) args->data_ptr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10003871
Chris Wilsonb47b30c2010-11-08 01:12:29 +00003872 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
3873 unsigned long unwritten;
3874
3875 /* The physical object once assigned is fixed for the lifetime
3876 * of the obj, so we can safely drop the lock and continue
3877 * to access vaddr.
3878 */
3879 mutex_unlock(&dev->struct_mutex);
3880 unwritten = copy_from_user(vaddr, user_data, args->size);
3881 mutex_lock(&dev->struct_mutex);
3882 if (unwritten)
3883 return -EFAULT;
3884 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10003885
Daniel Vetter40ce6572010-11-05 18:12:18 +01003886 intel_gtt_chipset_flush();
Dave Airlie71acb5e2008-12-30 20:31:46 +10003887 return 0;
3888}
Eric Anholtb9624422009-06-03 07:27:35 +00003889
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003890void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00003891{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003892 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003893
3894 /* Clean up our request list when the client is going away, so that
3895 * later retire_requests won't dereference our soon-to-be-gone
3896 * file_priv.
3897 */
Chris Wilson1c255952010-09-26 11:03:27 +01003898 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003899 while (!list_empty(&file_priv->mm.request_list)) {
3900 struct drm_i915_gem_request *request;
3901
3902 request = list_first_entry(&file_priv->mm.request_list,
3903 struct drm_i915_gem_request,
3904 client_list);
3905 list_del(&request->client_list);
3906 request->file_priv = NULL;
3907 }
Chris Wilson1c255952010-09-26 11:03:27 +01003908 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00003909}
Chris Wilson31169712009-09-14 16:50:28 +01003910
Chris Wilson31169712009-09-14 16:50:28 +01003911static int
Chris Wilson1637ef42010-04-20 17:10:35 +01003912i915_gpu_is_active(struct drm_device *dev)
3913{
3914 drm_i915_private_t *dev_priv = dev->dev_private;
3915 int lists_empty;
3916
Chris Wilson1637ef42010-04-20 17:10:35 +01003917 lists_empty = list_empty(&dev_priv->mm.flushing_list) &&
Chris Wilson17250b72010-10-28 12:51:39 +01003918 list_empty(&dev_priv->mm.active_list);
Chris Wilson1637ef42010-04-20 17:10:35 +01003919
3920 return !lists_empty;
3921}
3922
3923static int
Ying Han1495f232011-05-24 17:12:27 -07003924i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01003925{
Chris Wilson17250b72010-10-28 12:51:39 +01003926 struct drm_i915_private *dev_priv =
3927 container_of(shrinker,
3928 struct drm_i915_private,
3929 mm.inactive_shrinker);
3930 struct drm_device *dev = dev_priv->dev;
3931 struct drm_i915_gem_object *obj, *next;
Ying Han1495f232011-05-24 17:12:27 -07003932 int nr_to_scan = sc->nr_to_scan;
Chris Wilson17250b72010-10-28 12:51:39 +01003933 int cnt;
3934
3935 if (!mutex_trylock(&dev->struct_mutex))
Chris Wilsonbbe2e112010-10-28 22:35:07 +01003936 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01003937
3938 /* "fast-path" to count number of available objects */
3939 if (nr_to_scan == 0) {
Chris Wilson17250b72010-10-28 12:51:39 +01003940 cnt = 0;
3941 list_for_each_entry(obj,
3942 &dev_priv->mm.inactive_list,
3943 mm_list)
3944 cnt++;
3945 mutex_unlock(&dev->struct_mutex);
3946 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01003947 }
3948
Chris Wilson1637ef42010-04-20 17:10:35 +01003949rescan:
Chris Wilson31169712009-09-14 16:50:28 +01003950 /* first scan for clean buffers */
Chris Wilson17250b72010-10-28 12:51:39 +01003951 i915_gem_retire_requests(dev);
Chris Wilson31169712009-09-14 16:50:28 +01003952
Chris Wilson17250b72010-10-28 12:51:39 +01003953 list_for_each_entry_safe(obj, next,
3954 &dev_priv->mm.inactive_list,
3955 mm_list) {
3956 if (i915_gem_object_is_purgeable(obj)) {
Chris Wilson20217462010-11-23 15:26:33 +00003957 if (i915_gem_object_unbind(obj) == 0 &&
3958 --nr_to_scan == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01003959 break;
Chris Wilson31169712009-09-14 16:50:28 +01003960 }
Chris Wilson31169712009-09-14 16:50:28 +01003961 }
3962
3963 /* second pass, evict/count anything still on the inactive list */
Chris Wilson17250b72010-10-28 12:51:39 +01003964 cnt = 0;
3965 list_for_each_entry_safe(obj, next,
3966 &dev_priv->mm.inactive_list,
3967 mm_list) {
Chris Wilson20217462010-11-23 15:26:33 +00003968 if (nr_to_scan &&
3969 i915_gem_object_unbind(obj) == 0)
Chris Wilson17250b72010-10-28 12:51:39 +01003970 nr_to_scan--;
Chris Wilson20217462010-11-23 15:26:33 +00003971 else
Chris Wilson17250b72010-10-28 12:51:39 +01003972 cnt++;
Chris Wilson31169712009-09-14 16:50:28 +01003973 }
3974
Chris Wilson17250b72010-10-28 12:51:39 +01003975 if (nr_to_scan && i915_gpu_is_active(dev)) {
Chris Wilson1637ef42010-04-20 17:10:35 +01003976 /*
3977 * We are desperate for pages, so as a last resort, wait
3978 * for the GPU to finish and discard whatever we can.
3979 * This has a dramatic impact to reduce the number of
3980 * OOM-killer events whilst running the GPU aggressively.
3981 */
Ben Widawskyb93f9cf2012-01-25 15:39:34 -08003982 if (i915_gpu_idle(dev, true) == 0)
Chris Wilson1637ef42010-04-20 17:10:35 +01003983 goto rescan;
3984 }
Chris Wilson17250b72010-10-28 12:51:39 +01003985 mutex_unlock(&dev->struct_mutex);
3986 return cnt / 100 * sysctl_vfs_cache_pressure;
Chris Wilson31169712009-09-14 16:50:28 +01003987}