blob: 528958d8fa5ac06b16327c7ef4617a0e1f0455fe [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
Daniel Vetterbe6a0372015-03-18 10:46:04 +01002 * Copyright © 2008-2015 Intel Corporation
Eric Anholt673a3942008-07-30 12:06:12 -07003 *
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
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Chris Wilsonc13d87e2016-07-20 09:21:15 +010032#include "i915_gem_dmabuf.h"
Yu Zhangeb822892015-02-10 19:05:49 +080033#include "i915_vgpu.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010034#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070035#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010036#include "intel_frontbuffer.h"
Peter Antoine0ccdacf2016-04-13 15:03:25 +010037#include "intel_mocs.h"
Chris Wilsonc13d87e2016-07-20 09:21:15 +010038#include <linux/reservation.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070039#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070041#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080042#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020043#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070044
Chris Wilson05394f32010-11-08 19:18:58 +000045static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Daniel Vettere62b59e2015-01-21 14:53:48 +010046static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson61050802012-04-17 15:31:31 +010047
Chris Wilsonc76ce032013-08-08 14:41:03 +010048static bool cpu_cache_is_coherent(struct drm_device *dev,
49 enum i915_cache_level level)
50{
51 return HAS_LLC(dev) || level != I915_CACHE_NONE;
52}
53
Chris Wilson2c225692013-08-09 12:26:45 +010054static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
55{
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +053056 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
57 return false;
58
Chris Wilson2c225692013-08-09 12:26:45 +010059 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
60 return true;
61
62 return obj->pin_display;
63}
64
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053065static int
66insert_mappable_node(struct drm_i915_private *i915,
67 struct drm_mm_node *node, u32 size)
68{
69 memset(node, 0, sizeof(*node));
70 return drm_mm_insert_node_in_range_generic(&i915->ggtt.base.mm, node,
71 size, 0, 0, 0,
72 i915->ggtt.mappable_end,
73 DRM_MM_SEARCH_DEFAULT,
74 DRM_MM_CREATE_DEFAULT);
75}
76
77static void
78remove_mappable_node(struct drm_mm_node *node)
79{
80 drm_mm_remove_node(node);
81}
82
Chris Wilson73aa8082010-09-30 11:46:12 +010083/* some bookkeeping */
84static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +010085 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +010086{
Daniel Vetterc20e8352013-07-24 22:40:23 +020087 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010088 dev_priv->mm.object_count++;
89 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020090 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010091}
92
93static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +010094 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +010095{
Daniel Vetterc20e8352013-07-24 22:40:23 +020096 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010097 dev_priv->mm.object_count--;
98 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020099 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100100}
101
Chris Wilson21dd3732011-01-26 15:55:56 +0000102static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100103i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100104{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100105 int ret;
106
Chris Wilson4c7d62c2016-10-28 13:58:32 +0100107 might_sleep();
108
Chris Wilsond98c52c2016-04-13 17:35:05 +0100109 if (!i915_reset_in_progress(error))
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100110 return 0;
111
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200112 /*
113 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
114 * userspace. If it takes that long something really bad is going on and
115 * we should simply try to bail out and fail as gracefully as possible.
116 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 ret = wait_event_interruptible_timeout(error->reset_queue,
Chris Wilsond98c52c2016-04-13 17:35:05 +0100118 !i915_reset_in_progress(error),
Chris Wilsonb52992c2016-10-28 13:58:24 +0100119 I915_RESET_TIMEOUT);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 if (ret == 0) {
121 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
122 return -EIO;
123 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100124 return ret;
Chris Wilsond98c52c2016-04-13 17:35:05 +0100125 } else {
126 return 0;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200127 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100128}
129
Chris Wilson54cf91d2010-11-25 18:00:26 +0000130int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100131{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100132 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100133 int ret;
134
Daniel Vetter33196de2012-11-14 17:14:05 +0100135 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100136 if (ret)
137 return ret;
138
139 ret = mutex_lock_interruptible(&dev->struct_mutex);
140 if (ret)
141 return ret;
142
Chris Wilson76c1dec2010-09-25 11:22:51 +0100143 return 0;
144}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100145
Eric Anholt673a3942008-07-30 12:06:12 -0700146int
Eric Anholt5a125c32008-10-22 21:40:13 -0700147i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000148 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700149{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300150 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen62106b42016-03-18 10:42:57 +0200151 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300152 struct drm_i915_gem_get_aperture *args = data;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100153 struct i915_vma *vma;
Chris Wilson6299f992010-11-24 12:23:44 +0000154 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700155
Chris Wilson6299f992010-11-24 12:23:44 +0000156 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100157 mutex_lock(&dev->struct_mutex);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000158 list_for_each_entry(vma, &ggtt->base.active_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100159 if (i915_vma_is_pinned(vma))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100160 pinned += vma->node.size;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000161 list_for_each_entry(vma, &ggtt->base.inactive_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100162 if (i915_vma_is_pinned(vma))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100163 pinned += vma->node.size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100164 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700165
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300166 args->aper_size = ggtt->base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400167 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000168
Eric Anholt5a125c32008-10-22 21:40:13 -0700169 return 0;
170}
171
Chris Wilson6a2c4232014-11-04 04:51:40 -0800172static int
173i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100174{
Al Viro93c76a32015-12-04 23:45:44 -0500175 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800176 char *vaddr = obj->phys_handle->vaddr;
177 struct sg_table *st;
178 struct scatterlist *sg;
179 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100180
Chris Wilson6a2c4232014-11-04 04:51:40 -0800181 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
182 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100183
Chris Wilson6a2c4232014-11-04 04:51:40 -0800184 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
185 struct page *page;
186 char *src;
187
188 page = shmem_read_mapping_page(mapping, i);
189 if (IS_ERR(page))
190 return PTR_ERR(page);
191
192 src = kmap_atomic(page);
193 memcpy(vaddr, src, PAGE_SIZE);
194 drm_clflush_virt_range(vaddr, PAGE_SIZE);
195 kunmap_atomic(src);
196
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300197 put_page(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800198 vaddr += PAGE_SIZE;
199 }
200
Chris Wilsonc0336662016-05-06 15:40:21 +0100201 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800202
203 st = kmalloc(sizeof(*st), GFP_KERNEL);
204 if (st == NULL)
205 return -ENOMEM;
206
207 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
208 kfree(st);
209 return -ENOMEM;
210 }
211
212 sg = st->sgl;
213 sg->offset = 0;
214 sg->length = obj->base.size;
215
216 sg_dma_address(sg) = obj->phys_handle->busaddr;
217 sg_dma_len(sg) = obj->base.size;
218
219 obj->pages = st;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800220 return 0;
221}
222
223static void
224i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
225{
226 int ret;
227
228 BUG_ON(obj->madv == __I915_MADV_PURGED);
229
230 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +0100231 if (WARN_ON(ret)) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800232 /* In the event of a disaster, abandon all caches and
233 * hope for the best.
234 */
Chris Wilson6a2c4232014-11-04 04:51:40 -0800235 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
236 }
237
238 if (obj->madv == I915_MADV_DONTNEED)
239 obj->dirty = 0;
240
241 if (obj->dirty) {
Al Viro93c76a32015-12-04 23:45:44 -0500242 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800243 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100244 int i;
245
246 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800247 struct page *page;
248 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100249
Chris Wilson6a2c4232014-11-04 04:51:40 -0800250 page = shmem_read_mapping_page(mapping, i);
251 if (IS_ERR(page))
252 continue;
253
254 dst = kmap_atomic(page);
255 drm_clflush_virt_range(vaddr, PAGE_SIZE);
256 memcpy(dst, vaddr, PAGE_SIZE);
257 kunmap_atomic(dst);
258
259 set_page_dirty(page);
260 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100261 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300262 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100263 vaddr += PAGE_SIZE;
264 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800265 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100266 }
267
Chris Wilson6a2c4232014-11-04 04:51:40 -0800268 sg_free_table(obj->pages);
269 kfree(obj->pages);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800270}
271
272static void
273i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
274{
275 drm_pci_free(obj->base.dev, obj->phys_handle);
276}
277
278static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
279 .get_pages = i915_gem_object_get_pages_phys,
280 .put_pages = i915_gem_object_put_pages_phys,
281 .release = i915_gem_object_release_phys,
282};
283
Chris Wilson35a96112016-08-14 18:44:40 +0100284int i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Chris Wilsonaa653a62016-08-04 07:52:27 +0100285{
286 struct i915_vma *vma;
287 LIST_HEAD(still_in_list);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100288 int ret;
Chris Wilsonaa653a62016-08-04 07:52:27 +0100289
Chris Wilson02bef8f2016-08-14 18:44:41 +0100290 lockdep_assert_held(&obj->base.dev->struct_mutex);
291
292 /* Closed vma are removed from the obj->vma_list - but they may
293 * still have an active binding on the object. To remove those we
294 * must wait for all rendering to complete to the object (as unbinding
295 * must anyway), and retire the requests.
Chris Wilsonaa653a62016-08-04 07:52:27 +0100296 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100297 ret = i915_gem_object_wait(obj,
298 I915_WAIT_INTERRUPTIBLE |
299 I915_WAIT_LOCKED |
300 I915_WAIT_ALL,
301 MAX_SCHEDULE_TIMEOUT,
302 NULL);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100303 if (ret)
304 return ret;
305
306 i915_gem_retire_requests(to_i915(obj->base.dev));
307
Chris Wilsonaa653a62016-08-04 07:52:27 +0100308 while ((vma = list_first_entry_or_null(&obj->vma_list,
309 struct i915_vma,
310 obj_link))) {
311 list_move_tail(&vma->obj_link, &still_in_list);
312 ret = i915_vma_unbind(vma);
313 if (ret)
314 break;
315 }
316 list_splice(&still_in_list, &obj->vma_list);
317
318 return ret;
319}
320
Chris Wilsone95433c2016-10-28 13:58:27 +0100321static long
322i915_gem_object_wait_fence(struct dma_fence *fence,
323 unsigned int flags,
324 long timeout,
325 struct intel_rps_client *rps)
326{
327 struct drm_i915_gem_request *rq;
328
329 BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1);
330
331 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
332 return timeout;
333
334 if (!dma_fence_is_i915(fence))
335 return dma_fence_wait_timeout(fence,
336 flags & I915_WAIT_INTERRUPTIBLE,
337 timeout);
338
339 rq = to_request(fence);
340 if (i915_gem_request_completed(rq))
341 goto out;
342
343 /* This client is about to stall waiting for the GPU. In many cases
344 * this is undesirable and limits the throughput of the system, as
345 * many clients cannot continue processing user input/output whilst
346 * blocked. RPS autotuning may take tens of milliseconds to respond
347 * to the GPU load and thus incurs additional latency for the client.
348 * We can circumvent that by promoting the GPU frequency to maximum
349 * before we wait. This makes the GPU throttle up much more quickly
350 * (good for benchmarks and user experience, e.g. window animations),
351 * but at a cost of spending more power processing the workload
352 * (bad for battery). Not all clients even want their results
353 * immediately and for them we should just let the GPU select its own
354 * frequency to maximise efficiency. To prevent a single client from
355 * forcing the clocks too high for the whole system, we only allow
356 * each client to waitboost once in a busy period.
357 */
358 if (rps) {
359 if (INTEL_GEN(rq->i915) >= 6)
360 gen6_rps_boost(rq->i915, rps, rq->emitted_jiffies);
361 else
362 rps = NULL;
363 }
364
365 timeout = i915_wait_request(rq, flags, timeout);
366
367out:
368 if (flags & I915_WAIT_LOCKED && i915_gem_request_completed(rq))
369 i915_gem_request_retire_upto(rq);
370
371 if (rps && rq->fence.seqno == rq->engine->last_submitted_seqno) {
372 /* The GPU is now idle and this client has stalled.
373 * Since no other client has submitted a request in the
374 * meantime, assume that this client is the only one
375 * supplying work to the GPU but is unable to keep that
376 * work supplied because it is waiting. Since the GPU is
377 * then never kept fully busy, RPS autoclocking will
378 * keep the clocks relatively low, causing further delays.
379 * Compensate by giving the synchronous client credit for
380 * a waitboost next time.
381 */
382 spin_lock(&rq->i915->rps.client_lock);
383 list_del_init(&rps->link);
384 spin_unlock(&rq->i915->rps.client_lock);
385 }
386
387 return timeout;
388}
389
390static long
391i915_gem_object_wait_reservation(struct reservation_object *resv,
392 unsigned int flags,
393 long timeout,
394 struct intel_rps_client *rps)
395{
396 struct dma_fence *excl;
397
398 if (flags & I915_WAIT_ALL) {
399 struct dma_fence **shared;
400 unsigned int count, i;
401 int ret;
402
403 ret = reservation_object_get_fences_rcu(resv,
404 &excl, &count, &shared);
405 if (ret)
406 return ret;
407
408 for (i = 0; i < count; i++) {
409 timeout = i915_gem_object_wait_fence(shared[i],
410 flags, timeout,
411 rps);
412 if (timeout <= 0)
413 break;
414
415 dma_fence_put(shared[i]);
416 }
417
418 for (; i < count; i++)
419 dma_fence_put(shared[i]);
420 kfree(shared);
421 } else {
422 excl = reservation_object_get_excl_rcu(resv);
423 }
424
425 if (excl && timeout > 0)
426 timeout = i915_gem_object_wait_fence(excl, flags, timeout, rps);
427
428 dma_fence_put(excl);
429
430 return timeout;
431}
432
Chris Wilson00e60f22016-08-04 16:32:40 +0100433/**
Chris Wilsone95433c2016-10-28 13:58:27 +0100434 * Waits for rendering to the object to be completed
Chris Wilson00e60f22016-08-04 16:32:40 +0100435 * @obj: i915 gem object
Chris Wilsone95433c2016-10-28 13:58:27 +0100436 * @flags: how to wait (under a lock, for all rendering or just for writes etc)
437 * @timeout: how long to wait
438 * @rps: client (user process) to charge for any waitboosting
Chris Wilson00e60f22016-08-04 16:32:40 +0100439 */
440int
Chris Wilsone95433c2016-10-28 13:58:27 +0100441i915_gem_object_wait(struct drm_i915_gem_object *obj,
442 unsigned int flags,
443 long timeout,
444 struct intel_rps_client *rps)
Chris Wilson00e60f22016-08-04 16:32:40 +0100445{
446 struct reservation_object *resv;
447 struct i915_gem_active *active;
448 unsigned long active_mask;
449 int idx;
450
Chris Wilsone95433c2016-10-28 13:58:27 +0100451 might_sleep();
452#if IS_ENABLED(CONFIG_LOCKDEP)
453 GEM_BUG_ON(debug_locks &&
454 !!lockdep_is_held(&obj->base.dev->struct_mutex) !=
455 !!(flags & I915_WAIT_LOCKED));
456#endif
457 GEM_BUG_ON(timeout < 0);
Chris Wilson00e60f22016-08-04 16:32:40 +0100458
Chris Wilsone95433c2016-10-28 13:58:27 +0100459 if (flags & I915_WAIT_ALL) {
Chris Wilson00e60f22016-08-04 16:32:40 +0100460 active = obj->last_read;
461 active_mask = i915_gem_object_get_active(obj);
462 } else {
463 active_mask = 1;
464 active = &obj->last_write;
465 }
466
467 for_each_active(active_mask, idx) {
Chris Wilsone95433c2016-10-28 13:58:27 +0100468 struct drm_i915_gem_request *request;
Chris Wilson00e60f22016-08-04 16:32:40 +0100469
Chris Wilsone95433c2016-10-28 13:58:27 +0100470 request = i915_gem_active_get_unlocked(&active[idx]);
471 if (request) {
472 timeout = i915_gem_object_wait_fence(&request->fence,
473 flags, timeout,
474 rps);
475 i915_gem_request_put(request);
476 }
477 if (timeout < 0)
478 return timeout;
Chris Wilson00e60f22016-08-04 16:32:40 +0100479 }
480
481 resv = i915_gem_object_get_dmabuf_resv(obj);
Chris Wilsone95433c2016-10-28 13:58:27 +0100482 if (resv)
483 timeout = i915_gem_object_wait_reservation(resv,
484 flags, timeout,
485 rps);
486 return timeout < 0 ? timeout : 0;
Chris Wilson00e60f22016-08-04 16:32:40 +0100487}
488
489static struct intel_rps_client *to_rps_client(struct drm_file *file)
490{
491 struct drm_i915_file_private *fpriv = file->driver_priv;
492
493 return &fpriv->rps;
494}
495
Chris Wilson00731152014-05-21 12:42:56 +0100496int
497i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
498 int align)
499{
500 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800501 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100502
503 if (obj->phys_handle) {
504 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
505 return -EBUSY;
506
507 return 0;
508 }
509
510 if (obj->madv != I915_MADV_WILLNEED)
511 return -EFAULT;
512
513 if (obj->base.filp == NULL)
514 return -EINVAL;
515
Chris Wilson4717ca92016-08-04 07:52:28 +0100516 ret = i915_gem_object_unbind(obj);
517 if (ret)
518 return ret;
519
520 ret = i915_gem_object_put_pages(obj);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800521 if (ret)
522 return ret;
523
Chris Wilson00731152014-05-21 12:42:56 +0100524 /* create a new object */
525 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
526 if (!phys)
527 return -ENOMEM;
528
Chris Wilson00731152014-05-21 12:42:56 +0100529 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800530 obj->ops = &i915_gem_phys_ops;
531
532 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100533}
534
535static int
536i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
537 struct drm_i915_gem_pwrite *args,
538 struct drm_file *file_priv)
539{
540 struct drm_device *dev = obj->base.dev;
541 void *vaddr = obj->phys_handle->vaddr + args->offset;
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300542 char __user *user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilsone95433c2016-10-28 13:58:27 +0100543 int ret;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800544
545 /* We manually control the domain here and pretend that it
546 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
547 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100548 lockdep_assert_held(&obj->base.dev->struct_mutex);
549 ret = i915_gem_object_wait(obj,
550 I915_WAIT_INTERRUPTIBLE |
551 I915_WAIT_LOCKED |
552 I915_WAIT_ALL,
553 MAX_SCHEDULE_TIMEOUT,
554 to_rps_client(file_priv));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800555 if (ret)
556 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100557
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700558 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100559 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
560 unsigned long unwritten;
561
562 /* The physical object once assigned is fixed for the lifetime
563 * of the obj, so we can safely drop the lock and continue
564 * to access vaddr.
565 */
566 mutex_unlock(&dev->struct_mutex);
567 unwritten = copy_from_user(vaddr, user_data, args->size);
568 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200569 if (unwritten) {
570 ret = -EFAULT;
571 goto out;
572 }
Chris Wilson00731152014-05-21 12:42:56 +0100573 }
574
Chris Wilson6a2c4232014-11-04 04:51:40 -0800575 drm_clflush_virt_range(vaddr, args->size);
Chris Wilsonc0336662016-05-06 15:40:21 +0100576 i915_gem_chipset_flush(to_i915(dev));
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200577
578out:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700579 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200580 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100581}
582
Chris Wilson42dcedd2012-11-15 11:32:30 +0000583void *i915_gem_object_alloc(struct drm_device *dev)
584{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100585 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100586 return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000587}
588
589void i915_gem_object_free(struct drm_i915_gem_object *obj)
590{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100591 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100592 kmem_cache_free(dev_priv->objects, obj);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000593}
594
Dave Airlieff72145b2011-02-07 12:16:14 +1000595static int
596i915_gem_create(struct drm_file *file,
597 struct drm_device *dev,
598 uint64_t size,
599 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700600{
Chris Wilson05394f32010-11-08 19:18:58 +0000601 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300602 int ret;
603 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700604
Dave Airlieff72145b2011-02-07 12:16:14 +1000605 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200606 if (size == 0)
607 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700608
609 /* Allocate the new object */
Dave Gordond37cd8a2016-04-22 19:14:32 +0100610 obj = i915_gem_object_create(dev, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100611 if (IS_ERR(obj))
612 return PTR_ERR(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700613
Chris Wilson05394f32010-11-08 19:18:58 +0000614 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100615 /* drop reference from allocate - handle holds it now */
Chris Wilson34911fd2016-07-20 13:31:54 +0100616 i915_gem_object_put_unlocked(obj);
Daniel Vetterd861e332013-07-24 23:25:03 +0200617 if (ret)
618 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100619
Dave Airlieff72145b2011-02-07 12:16:14 +1000620 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700621 return 0;
622}
623
Dave Airlieff72145b2011-02-07 12:16:14 +1000624int
625i915_gem_dumb_create(struct drm_file *file,
626 struct drm_device *dev,
627 struct drm_mode_create_dumb *args)
628{
629 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300630 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000631 args->size = args->pitch * args->height;
632 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000633 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000634}
635
Dave Airlieff72145b2011-02-07 12:16:14 +1000636/**
637 * Creates a new mm object and returns a handle to it.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100638 * @dev: drm device pointer
639 * @data: ioctl data blob
640 * @file: drm file pointer
Dave Airlieff72145b2011-02-07 12:16:14 +1000641 */
642int
643i915_gem_create_ioctl(struct drm_device *dev, void *data,
644 struct drm_file *file)
645{
646 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200647
Dave Airlieff72145b2011-02-07 12:16:14 +1000648 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000649 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000650}
651
Daniel Vetter8c599672011-12-14 13:57:31 +0100652static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100653__copy_to_user_swizzled(char __user *cpu_vaddr,
654 const char *gpu_vaddr, int gpu_offset,
655 int length)
656{
657 int ret, cpu_offset = 0;
658
659 while (length > 0) {
660 int cacheline_end = ALIGN(gpu_offset + 1, 64);
661 int this_length = min(cacheline_end - gpu_offset, length);
662 int swizzled_gpu_offset = gpu_offset ^ 64;
663
664 ret = __copy_to_user(cpu_vaddr + cpu_offset,
665 gpu_vaddr + swizzled_gpu_offset,
666 this_length);
667 if (ret)
668 return ret + length;
669
670 cpu_offset += this_length;
671 gpu_offset += this_length;
672 length -= this_length;
673 }
674
675 return 0;
676}
677
678static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700679__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
680 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100681 int length)
682{
683 int ret, cpu_offset = 0;
684
685 while (length > 0) {
686 int cacheline_end = ALIGN(gpu_offset + 1, 64);
687 int this_length = min(cacheline_end - gpu_offset, length);
688 int swizzled_gpu_offset = gpu_offset ^ 64;
689
690 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
691 cpu_vaddr + cpu_offset,
692 this_length);
693 if (ret)
694 return ret + length;
695
696 cpu_offset += this_length;
697 gpu_offset += this_length;
698 length -= this_length;
699 }
700
701 return 0;
702}
703
Brad Volkin4c914c02014-02-18 10:15:45 -0800704/*
705 * Pins the specified object's pages and synchronizes the object with
706 * GPU accesses. Sets needs_clflush to non-zero if the caller should
707 * flush the object from the CPU cache.
708 */
709int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
Chris Wilson43394c72016-08-18 17:16:47 +0100710 unsigned int *needs_clflush)
Brad Volkin4c914c02014-02-18 10:15:45 -0800711{
712 int ret;
713
Chris Wilsone95433c2016-10-28 13:58:27 +0100714 lockdep_assert_held(&obj->base.dev->struct_mutex);
Brad Volkin4c914c02014-02-18 10:15:45 -0800715
Chris Wilsone95433c2016-10-28 13:58:27 +0100716 *needs_clflush = 0;
Chris Wilson43394c72016-08-18 17:16:47 +0100717 if (!i915_gem_object_has_struct_page(obj))
718 return -ENODEV;
Brad Volkin4c914c02014-02-18 10:15:45 -0800719
Chris Wilsone95433c2016-10-28 13:58:27 +0100720 ret = i915_gem_object_wait(obj,
721 I915_WAIT_INTERRUPTIBLE |
722 I915_WAIT_LOCKED,
723 MAX_SCHEDULE_TIMEOUT,
724 NULL);
Chris Wilsonc13d87e2016-07-20 09:21:15 +0100725 if (ret)
726 return ret;
727
Chris Wilson97649512016-08-18 17:16:50 +0100728 ret = i915_gem_object_get_pages(obj);
729 if (ret)
730 return ret;
731
732 i915_gem_object_pin_pages(obj);
733
Chris Wilsona314d5c2016-08-18 17:16:48 +0100734 i915_gem_object_flush_gtt_write_domain(obj);
735
Chris Wilson43394c72016-08-18 17:16:47 +0100736 /* If we're not in the cpu read domain, set ourself into the gtt
737 * read domain and manually flush cachelines (if required). This
738 * optimizes for the case when the gpu will dirty the data
739 * anyway again before the next pread happens.
740 */
741 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
Brad Volkin4c914c02014-02-18 10:15:45 -0800742 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
743 obj->cache_level);
Brad Volkin4c914c02014-02-18 10:15:45 -0800744
Chris Wilson43394c72016-08-18 17:16:47 +0100745 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
746 ret = i915_gem_object_set_to_cpu_domain(obj, false);
Chris Wilson97649512016-08-18 17:16:50 +0100747 if (ret)
748 goto err_unpin;
749
Chris Wilson43394c72016-08-18 17:16:47 +0100750 *needs_clflush = 0;
751 }
752
Chris Wilson97649512016-08-18 17:16:50 +0100753 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100754 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100755
756err_unpin:
757 i915_gem_object_unpin_pages(obj);
758 return ret;
Chris Wilson43394c72016-08-18 17:16:47 +0100759}
760
761int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj,
762 unsigned int *needs_clflush)
763{
764 int ret;
765
Chris Wilsone95433c2016-10-28 13:58:27 +0100766 lockdep_assert_held(&obj->base.dev->struct_mutex);
767
Chris Wilson43394c72016-08-18 17:16:47 +0100768 *needs_clflush = 0;
769 if (!i915_gem_object_has_struct_page(obj))
770 return -ENODEV;
771
Chris Wilsone95433c2016-10-28 13:58:27 +0100772 ret = i915_gem_object_wait(obj,
773 I915_WAIT_INTERRUPTIBLE |
774 I915_WAIT_LOCKED |
775 I915_WAIT_ALL,
776 MAX_SCHEDULE_TIMEOUT,
777 NULL);
Chris Wilson43394c72016-08-18 17:16:47 +0100778 if (ret)
779 return ret;
780
Chris Wilson97649512016-08-18 17:16:50 +0100781 ret = i915_gem_object_get_pages(obj);
782 if (ret)
783 return ret;
784
785 i915_gem_object_pin_pages(obj);
786
Chris Wilsona314d5c2016-08-18 17:16:48 +0100787 i915_gem_object_flush_gtt_write_domain(obj);
788
Chris Wilson43394c72016-08-18 17:16:47 +0100789 /* If we're not in the cpu write domain, set ourself into the
790 * gtt write domain and manually flush cachelines (as required).
791 * This optimizes for the case when the gpu will use the data
792 * right away and we therefore have to clflush anyway.
793 */
794 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
795 *needs_clflush |= cpu_write_needs_clflush(obj) << 1;
796
797 /* Same trick applies to invalidate partially written cachelines read
798 * before writing.
799 */
800 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
801 *needs_clflush |= !cpu_cache_is_coherent(obj->base.dev,
802 obj->cache_level);
803
Chris Wilson43394c72016-08-18 17:16:47 +0100804 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
805 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilson97649512016-08-18 17:16:50 +0100806 if (ret)
807 goto err_unpin;
808
Chris Wilson43394c72016-08-18 17:16:47 +0100809 *needs_clflush = 0;
810 }
811
812 if ((*needs_clflush & CLFLUSH_AFTER) == 0)
813 obj->cache_dirty = true;
814
815 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
816 obj->dirty = 1;
Chris Wilson97649512016-08-18 17:16:50 +0100817 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100818 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100819
820err_unpin:
821 i915_gem_object_unpin_pages(obj);
822 return ret;
Brad Volkin4c914c02014-02-18 10:15:45 -0800823}
824
Daniel Vetterd174bd62012-03-25 19:47:40 +0200825/* Per-page copy function for the shmem pread fastpath.
826 * Flushes invalid cachelines before reading the target if
827 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700828static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200829shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
830 char __user *user_data,
831 bool page_do_bit17_swizzling, bool needs_clflush)
832{
833 char *vaddr;
834 int ret;
835
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200836 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200837 return -EINVAL;
838
839 vaddr = kmap_atomic(page);
840 if (needs_clflush)
841 drm_clflush_virt_range(vaddr + shmem_page_offset,
842 page_length);
843 ret = __copy_to_user_inatomic(user_data,
844 vaddr + shmem_page_offset,
845 page_length);
846 kunmap_atomic(vaddr);
847
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100848 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200849}
850
Daniel Vetter23c18c72012-03-25 19:47:42 +0200851static void
852shmem_clflush_swizzled_range(char *addr, unsigned long length,
853 bool swizzled)
854{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200855 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200856 unsigned long start = (unsigned long) addr;
857 unsigned long end = (unsigned long) addr + length;
858
859 /* For swizzling simply ensure that we always flush both
860 * channels. Lame, but simple and it works. Swizzled
861 * pwrite/pread is far from a hotpath - current userspace
862 * doesn't use it at all. */
863 start = round_down(start, 128);
864 end = round_up(end, 128);
865
866 drm_clflush_virt_range((void *)start, end - start);
867 } else {
868 drm_clflush_virt_range(addr, length);
869 }
870
871}
872
Daniel Vetterd174bd62012-03-25 19:47:40 +0200873/* Only difference to the fast-path function is that this can handle bit17
874 * and uses non-atomic copy and kmap functions. */
875static int
876shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
877 char __user *user_data,
878 bool page_do_bit17_swizzling, bool needs_clflush)
879{
880 char *vaddr;
881 int ret;
882
883 vaddr = kmap(page);
884 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200885 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
886 page_length,
887 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200888
889 if (page_do_bit17_swizzling)
890 ret = __copy_to_user_swizzled(user_data,
891 vaddr, shmem_page_offset,
892 page_length);
893 else
894 ret = __copy_to_user(user_data,
895 vaddr + shmem_page_offset,
896 page_length);
897 kunmap(page);
898
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100899 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200900}
901
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530902static inline unsigned long
903slow_user_access(struct io_mapping *mapping,
904 uint64_t page_base, int page_offset,
905 char __user *user_data,
906 unsigned long length, bool pwrite)
907{
908 void __iomem *ioaddr;
909 void *vaddr;
910 uint64_t unwritten;
911
912 ioaddr = io_mapping_map_wc(mapping, page_base, PAGE_SIZE);
913 /* We can use the cpu mem copy function because this is X86. */
914 vaddr = (void __force *)ioaddr + page_offset;
915 if (pwrite)
916 unwritten = __copy_from_user(vaddr, user_data, length);
917 else
918 unwritten = __copy_to_user(user_data, vaddr, length);
919
920 io_mapping_unmap(ioaddr);
921 return unwritten;
922}
923
924static int
925i915_gem_gtt_pread(struct drm_device *dev,
926 struct drm_i915_gem_object *obj, uint64_t size,
927 uint64_t data_offset, uint64_t data_ptr)
928{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100929 struct drm_i915_private *dev_priv = to_i915(dev);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530930 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson058d88c2016-08-15 10:49:06 +0100931 struct i915_vma *vma;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530932 struct drm_mm_node node;
933 char __user *user_data;
934 uint64_t remain;
935 uint64_t offset;
936 int ret;
937
Chris Wilson9c870d02016-10-24 13:42:15 +0100938 intel_runtime_pm_get(to_i915(dev));
Chris Wilson058d88c2016-08-15 10:49:06 +0100939 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, PIN_MAPPABLE);
Chris Wilson18034582016-08-18 17:16:45 +0100940 if (!IS_ERR(vma)) {
941 node.start = i915_ggtt_offset(vma);
942 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +0100943 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +0100944 if (ret) {
945 i915_vma_unpin(vma);
946 vma = ERR_PTR(ret);
947 }
948 }
Chris Wilson058d88c2016-08-15 10:49:06 +0100949 if (IS_ERR(vma)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530950 ret = insert_mappable_node(dev_priv, &node, PAGE_SIZE);
951 if (ret)
952 goto out;
953
954 ret = i915_gem_object_get_pages(obj);
955 if (ret) {
956 remove_mappable_node(&node);
957 goto out;
958 }
959
960 i915_gem_object_pin_pages(obj);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530961 }
962
963 ret = i915_gem_object_set_to_gtt_domain(obj, false);
964 if (ret)
965 goto out_unpin;
966
967 user_data = u64_to_user_ptr(data_ptr);
968 remain = size;
969 offset = data_offset;
970
971 mutex_unlock(&dev->struct_mutex);
972 if (likely(!i915.prefault_disable)) {
Al Viro4bce9f62016-09-17 18:02:44 -0400973 ret = fault_in_pages_writeable(user_data, remain);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530974 if (ret) {
975 mutex_lock(&dev->struct_mutex);
976 goto out_unpin;
977 }
978 }
979
980 while (remain > 0) {
981 /* Operation in this page
982 *
983 * page_base = page offset within aperture
984 * page_offset = offset within page
985 * page_length = bytes to copy for this page
986 */
987 u32 page_base = node.start;
988 unsigned page_offset = offset_in_page(offset);
989 unsigned page_length = PAGE_SIZE - page_offset;
990 page_length = remain < page_length ? remain : page_length;
991 if (node.allocated) {
992 wmb();
993 ggtt->base.insert_page(&ggtt->base,
994 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
995 node.start,
996 I915_CACHE_NONE, 0);
997 wmb();
998 } else {
999 page_base += offset & PAGE_MASK;
1000 }
1001 /* This is a slow read/write as it tries to read from
1002 * and write to user memory which may result into page
1003 * faults, and so we cannot perform this under struct_mutex.
1004 */
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001005 if (slow_user_access(&ggtt->mappable, page_base,
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301006 page_offset, user_data,
1007 page_length, false)) {
1008 ret = -EFAULT;
1009 break;
1010 }
1011
1012 remain -= page_length;
1013 user_data += page_length;
1014 offset += page_length;
1015 }
1016
1017 mutex_lock(&dev->struct_mutex);
1018 if (ret == 0 && (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) {
1019 /* The user has modified the object whilst we tried
1020 * reading from it, and we now have no idea what domain
1021 * the pages should be in. As we have just been touching
1022 * them directly, flush everything back to the GTT
1023 * domain.
1024 */
1025 ret = i915_gem_object_set_to_gtt_domain(obj, false);
1026 }
1027
1028out_unpin:
1029 if (node.allocated) {
1030 wmb();
1031 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001032 node.start, node.size);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301033 i915_gem_object_unpin_pages(obj);
1034 remove_mappable_node(&node);
1035 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001036 i915_vma_unpin(vma);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301037 }
1038out:
Chris Wilson9c870d02016-10-24 13:42:15 +01001039 intel_runtime_pm_put(to_i915(dev));
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301040 return ret;
1041}
1042
Eric Anholteb014592009-03-10 11:44:52 -07001043static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001044i915_gem_shmem_pread(struct drm_device *dev,
1045 struct drm_i915_gem_object *obj,
1046 struct drm_i915_gem_pread *args,
1047 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -07001048{
Daniel Vetter8461d222011-12-14 13:57:32 +01001049 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -07001050 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +01001051 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +01001052 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +01001053 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +02001054 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +02001055 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +02001056 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -07001057
Brad Volkin4c914c02014-02-18 10:15:45 -08001058 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001059 if (ret)
1060 return ret;
1061
Chris Wilson43394c72016-08-18 17:16:47 +01001062 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
1063 user_data = u64_to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -07001064 offset = args->offset;
Chris Wilson43394c72016-08-18 17:16:47 +01001065 remain = args->size;
Daniel Vetter8461d222011-12-14 13:57:32 +01001066
Imre Deak67d5a502013-02-18 19:28:02 +02001067 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
1068 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +02001069 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001070
1071 if (remain <= 0)
1072 break;
1073
Eric Anholteb014592009-03-10 11:44:52 -07001074 /* Operation in this page
1075 *
Eric Anholteb014592009-03-10 11:44:52 -07001076 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -07001077 * page_length = bytes to copy for this page
1078 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +01001079 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -07001080 page_length = remain;
1081 if ((shmem_page_offset + page_length) > PAGE_SIZE)
1082 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -07001083
Daniel Vetter8461d222011-12-14 13:57:32 +01001084 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
1085 (page_to_phys(page) & (1 << 17)) != 0;
1086
Daniel Vetterd174bd62012-03-25 19:47:40 +02001087 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
1088 user_data, page_do_bit17_swizzling,
1089 needs_clflush);
1090 if (ret == 0)
1091 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -07001092
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001093 mutex_unlock(&dev->struct_mutex);
1094
Jani Nikulad330a952014-01-21 11:24:25 +02001095 if (likely(!i915.prefault_disable) && !prefaulted) {
Al Viro4bce9f62016-09-17 18:02:44 -04001096 ret = fault_in_pages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +02001097 /* Userspace is tricking us, but we've already clobbered
1098 * its pages with the prefault and promised to write the
1099 * data up to the first fault. Hence ignore any errors
1100 * and just continue. */
1101 (void)ret;
1102 prefaulted = 1;
1103 }
1104
Daniel Vetterd174bd62012-03-25 19:47:40 +02001105 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
1106 user_data, page_do_bit17_swizzling,
1107 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -07001108
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001109 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001110
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001111 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +01001112 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +01001113
Chris Wilson17793c92014-03-07 08:30:36 +00001114next_page:
Eric Anholteb014592009-03-10 11:44:52 -07001115 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +01001116 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -07001117 offset += page_length;
1118 }
1119
Chris Wilson4f27b752010-10-14 15:26:45 +01001120out:
Chris Wilson43394c72016-08-18 17:16:47 +01001121 i915_gem_obj_finish_shmem_access(obj);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001122
Eric Anholteb014592009-03-10 11:44:52 -07001123 return ret;
1124}
1125
Eric Anholt673a3942008-07-30 12:06:12 -07001126/**
1127 * Reads data from the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001128 * @dev: drm device pointer
1129 * @data: ioctl data blob
1130 * @file: drm file pointer
Eric Anholt673a3942008-07-30 12:06:12 -07001131 *
1132 * On error, the contents of *data are undefined.
1133 */
1134int
1135i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001136 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001137{
1138 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001139 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +01001140 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001141
Chris Wilson51311d02010-11-17 09:10:42 +00001142 if (args->size == 0)
1143 return 0;
1144
1145 if (!access_ok(VERIFY_WRITE,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001146 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001147 args->size))
1148 return -EFAULT;
1149
Chris Wilson03ac0642016-07-20 13:31:51 +01001150 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001151 if (!obj)
1152 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001153
Chris Wilson7dcd2492010-09-26 20:21:44 +01001154 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +00001155 if (args->offset > obj->base.size ||
1156 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001157 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001158 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001159 }
1160
Chris Wilsondb53a302011-02-03 11:57:46 +00001161 trace_i915_gem_object_pread(obj, args->offset, args->size);
1162
Chris Wilsone95433c2016-10-28 13:58:27 +01001163 ret = i915_gem_object_wait(obj,
1164 I915_WAIT_INTERRUPTIBLE,
1165 MAX_SCHEDULE_TIMEOUT,
1166 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001167 if (ret)
1168 goto err;
1169
1170 ret = i915_mutex_lock_interruptible(dev);
1171 if (ret)
1172 goto err;
1173
Daniel Vetterdbf7bff2012-03-25 19:47:29 +02001174 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -07001175
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301176 /* pread for non shmem backed objects */
Chris Wilson9c870d02016-10-24 13:42:15 +01001177 if (ret == -EFAULT || ret == -ENODEV)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301178 ret = i915_gem_gtt_pread(dev, obj, args->size,
1179 args->offset, args->data_ptr);
1180
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001181 i915_gem_object_put(obj);
Chris Wilson4f27b752010-10-14 15:26:45 +01001182 mutex_unlock(&dev->struct_mutex);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001183
1184 return ret;
1185
1186err:
1187 i915_gem_object_put_unlocked(obj);
Eric Anholteb014592009-03-10 11:44:52 -07001188 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001189}
1190
Keith Packard0839ccb2008-10-30 19:38:48 -07001191/* This is the fast write path which cannot handle
1192 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001193 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001194
Keith Packard0839ccb2008-10-30 19:38:48 -07001195static inline int
1196fast_user_write(struct io_mapping *mapping,
1197 loff_t page_base, int page_offset,
1198 char __user *user_data,
1199 int length)
1200{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001201 void __iomem *vaddr_atomic;
1202 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -07001203 unsigned long unwritten;
1204
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07001205 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001206 /* We can use the cpu mem copy function because this is X86. */
1207 vaddr = (void __force*)vaddr_atomic + page_offset;
1208 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -07001209 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07001210 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001211 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -07001212}
1213
Eric Anholt3de09aa2009-03-09 09:42:23 -07001214/**
1215 * This is the fast pwrite path, where we copy the data directly from the
1216 * user into the GTT, uncached.
Daniel Vetter62f90b32016-07-15 21:48:07 +02001217 * @i915: i915 device private data
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001218 * @obj: i915 gem object
1219 * @args: pwrite arguments structure
1220 * @file: drm file pointer
Eric Anholt3de09aa2009-03-09 09:42:23 -07001221 */
Eric Anholt673a3942008-07-30 12:06:12 -07001222static int
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301223i915_gem_gtt_pwrite_fast(struct drm_i915_private *i915,
Chris Wilson05394f32010-11-08 19:18:58 +00001224 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -07001225 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +00001226 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001227{
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301228 struct i915_ggtt *ggtt = &i915->ggtt;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301229 struct drm_device *dev = obj->base.dev;
Chris Wilson058d88c2016-08-15 10:49:06 +01001230 struct i915_vma *vma;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301231 struct drm_mm_node node;
1232 uint64_t remain, offset;
Eric Anholt673a3942008-07-30 12:06:12 -07001233 char __user *user_data;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301234 int ret;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301235 bool hit_slow_path = false;
1236
Chris Wilson3e510a82016-08-05 10:14:23 +01001237 if (i915_gem_object_is_tiled(obj))
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301238 return -EFAULT;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001239
Chris Wilson9c870d02016-10-24 13:42:15 +01001240 intel_runtime_pm_get(i915);
Chris Wilson058d88c2016-08-15 10:49:06 +01001241 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilsonde895082016-08-04 16:32:34 +01001242 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +01001243 if (!IS_ERR(vma)) {
1244 node.start = i915_ggtt_offset(vma);
1245 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +01001246 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +01001247 if (ret) {
1248 i915_vma_unpin(vma);
1249 vma = ERR_PTR(ret);
1250 }
1251 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001252 if (IS_ERR(vma)) {
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301253 ret = insert_mappable_node(i915, &node, PAGE_SIZE);
1254 if (ret)
1255 goto out;
1256
1257 ret = i915_gem_object_get_pages(obj);
1258 if (ret) {
1259 remove_mappable_node(&node);
1260 goto out;
1261 }
1262
1263 i915_gem_object_pin_pages(obj);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301264 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001265
1266 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1267 if (ret)
1268 goto out_unpin;
1269
Chris Wilsonb19482d2016-08-18 17:16:43 +01001270 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301271 obj->dirty = true;
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001272
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301273 user_data = u64_to_user_ptr(args->data_ptr);
1274 offset = args->offset;
1275 remain = args->size;
1276 while (remain) {
Eric Anholt673a3942008-07-30 12:06:12 -07001277 /* Operation in this page
1278 *
Keith Packard0839ccb2008-10-30 19:38:48 -07001279 * page_base = page offset within aperture
1280 * page_offset = offset within page
1281 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -07001282 */
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301283 u32 page_base = node.start;
1284 unsigned page_offset = offset_in_page(offset);
1285 unsigned page_length = PAGE_SIZE - page_offset;
1286 page_length = remain < page_length ? remain : page_length;
1287 if (node.allocated) {
1288 wmb(); /* flush the write before we modify the GGTT */
1289 ggtt->base.insert_page(&ggtt->base,
1290 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
1291 node.start, I915_CACHE_NONE, 0);
1292 wmb(); /* flush modifications to the GGTT (insert_page) */
1293 } else {
1294 page_base += offset & PAGE_MASK;
1295 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001296 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -07001297 * source page isn't available. Return the error and we'll
1298 * retry in the slow path.
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301299 * If the object is non-shmem backed, we retry again with the
1300 * path that handles page fault.
Keith Packard0839ccb2008-10-30 19:38:48 -07001301 */
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001302 if (fast_user_write(&ggtt->mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +02001303 page_offset, user_data, page_length)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301304 hit_slow_path = true;
1305 mutex_unlock(&dev->struct_mutex);
Chris Wilsonf7bbe782016-08-19 16:54:27 +01001306 if (slow_user_access(&ggtt->mappable,
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301307 page_base,
1308 page_offset, user_data,
1309 page_length, true)) {
1310 ret = -EFAULT;
1311 mutex_lock(&dev->struct_mutex);
1312 goto out_flush;
1313 }
1314
1315 mutex_lock(&dev->struct_mutex);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001316 }
Eric Anholt673a3942008-07-30 12:06:12 -07001317
Keith Packard0839ccb2008-10-30 19:38:48 -07001318 remain -= page_length;
1319 user_data += page_length;
1320 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -07001321 }
Eric Anholt673a3942008-07-30 12:06:12 -07001322
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001323out_flush:
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301324 if (hit_slow_path) {
1325 if (ret == 0 &&
1326 (obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0) {
1327 /* The user has modified the object whilst we tried
1328 * reading from it, and we now have no idea what domain
1329 * the pages should be in. As we have just been touching
1330 * them directly, flush everything back to the GTT
1331 * domain.
1332 */
1333 ret = i915_gem_object_set_to_gtt_domain(obj, false);
1334 }
1335 }
1336
Chris Wilsonb19482d2016-08-18 17:16:43 +01001337 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001338out_unpin:
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301339 if (node.allocated) {
1340 wmb();
1341 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001342 node.start, node.size);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301343 i915_gem_object_unpin_pages(obj);
1344 remove_mappable_node(&node);
1345 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001346 i915_vma_unpin(vma);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301347 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001348out:
Chris Wilson9c870d02016-10-24 13:42:15 +01001349 intel_runtime_pm_put(i915);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001350 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001351}
1352
Daniel Vetterd174bd62012-03-25 19:47:40 +02001353/* Per-page copy function for the shmem pwrite fastpath.
1354 * Flushes invalid cachelines before writing to the target if
1355 * needs_clflush_before is set and flushes out any written cachelines after
1356 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -07001357static int
Daniel Vetterd174bd62012-03-25 19:47:40 +02001358shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
1359 char __user *user_data,
1360 bool page_do_bit17_swizzling,
1361 bool needs_clflush_before,
1362 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001363{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001364 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001365 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001366
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001367 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +02001368 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001369
Daniel Vetterd174bd62012-03-25 19:47:40 +02001370 vaddr = kmap_atomic(page);
1371 if (needs_clflush_before)
1372 drm_clflush_virt_range(vaddr + shmem_page_offset,
1373 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +00001374 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
1375 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001376 if (needs_clflush_after)
1377 drm_clflush_virt_range(vaddr + shmem_page_offset,
1378 page_length);
1379 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001380
Chris Wilson755d2212012-09-04 21:02:55 +01001381 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -07001382}
1383
Daniel Vetterd174bd62012-03-25 19:47:40 +02001384/* Only difference to the fast-path function is that this can handle bit17
1385 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -07001386static int
Daniel Vetterd174bd62012-03-25 19:47:40 +02001387shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
1388 char __user *user_data,
1389 bool page_do_bit17_swizzling,
1390 bool needs_clflush_before,
1391 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001392{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001393 char *vaddr;
1394 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001395
Daniel Vetterd174bd62012-03-25 19:47:40 +02001396 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001397 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +02001398 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
1399 page_length,
1400 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001401 if (page_do_bit17_swizzling)
1402 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +01001403 user_data,
1404 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001405 else
1406 ret = __copy_from_user(vaddr + shmem_page_offset,
1407 user_data,
1408 page_length);
1409 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +02001410 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
1411 page_length,
1412 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001413 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001414
Chris Wilson755d2212012-09-04 21:02:55 +01001415 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001416}
1417
Eric Anholt40123c12009-03-09 13:42:30 -07001418static int
Daniel Vettere244a442012-03-25 19:47:28 +02001419i915_gem_shmem_pwrite(struct drm_device *dev,
1420 struct drm_i915_gem_object *obj,
1421 struct drm_i915_gem_pwrite *args,
1422 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -07001423{
Eric Anholt40123c12009-03-09 13:42:30 -07001424 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +01001425 loff_t offset;
1426 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +01001427 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +01001428 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +02001429 int hit_slowpath = 0;
Chris Wilson43394c72016-08-18 17:16:47 +01001430 unsigned int needs_clflush;
Imre Deak67d5a502013-02-18 19:28:02 +02001431 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -07001432
Chris Wilson43394c72016-08-18 17:16:47 +01001433 ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush);
1434 if (ret)
1435 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001436
Daniel Vetter8c599672011-12-14 13:57:31 +01001437 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Chris Wilson43394c72016-08-18 17:16:47 +01001438 user_data = u64_to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -07001439 offset = args->offset;
Chris Wilson43394c72016-08-18 17:16:47 +01001440 remain = args->size;
Eric Anholt40123c12009-03-09 13:42:30 -07001441
Imre Deak67d5a502013-02-18 19:28:02 +02001442 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
1443 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +02001444 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +02001445 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001446
Chris Wilson9da3da62012-06-01 15:20:22 +01001447 if (remain <= 0)
1448 break;
1449
Eric Anholt40123c12009-03-09 13:42:30 -07001450 /* Operation in this page
1451 *
Eric Anholt40123c12009-03-09 13:42:30 -07001452 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -07001453 * page_length = bytes to copy for this page
1454 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +01001455 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -07001456
1457 page_length = remain;
1458 if ((shmem_page_offset + page_length) > PAGE_SIZE)
1459 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -07001460
Daniel Vetter58642882012-03-25 19:47:37 +02001461 /* If we don't overwrite a cacheline completely we need to be
1462 * careful to have up-to-date data by first clflushing. Don't
1463 * overcomplicate things and flush the entire patch. */
Chris Wilson43394c72016-08-18 17:16:47 +01001464 partial_cacheline_write = needs_clflush & CLFLUSH_BEFORE &&
Daniel Vetter58642882012-03-25 19:47:37 +02001465 ((shmem_page_offset | page_length)
1466 & (boot_cpu_data.x86_clflush_size - 1));
1467
Daniel Vetter8c599672011-12-14 13:57:31 +01001468 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
1469 (page_to_phys(page) & (1 << 17)) != 0;
1470
Daniel Vetterd174bd62012-03-25 19:47:40 +02001471 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
1472 user_data, page_do_bit17_swizzling,
1473 partial_cacheline_write,
Chris Wilson43394c72016-08-18 17:16:47 +01001474 needs_clflush & CLFLUSH_AFTER);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001475 if (ret == 0)
1476 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001477
Daniel Vettere244a442012-03-25 19:47:28 +02001478 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001479 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001480 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1481 user_data, page_do_bit17_swizzling,
1482 partial_cacheline_write,
Chris Wilson43394c72016-08-18 17:16:47 +01001483 needs_clflush & CLFLUSH_AFTER);
Eric Anholt40123c12009-03-09 13:42:30 -07001484
Daniel Vettere244a442012-03-25 19:47:28 +02001485 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001486
Chris Wilson755d2212012-09-04 21:02:55 +01001487 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001488 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001489
Chris Wilson17793c92014-03-07 08:30:36 +00001490next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001491 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001492 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001493 offset += page_length;
1494 }
1495
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001496out:
Chris Wilson43394c72016-08-18 17:16:47 +01001497 i915_gem_obj_finish_shmem_access(obj);
Chris Wilson755d2212012-09-04 21:02:55 +01001498
Daniel Vettere244a442012-03-25 19:47:28 +02001499 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001500 /*
1501 * Fixup: Flush cpu caches in case we didn't flush the dirty
1502 * cachelines in-line while writing and the object moved
1503 * out of the cpu write domain while we've dropped the lock.
1504 */
Chris Wilson43394c72016-08-18 17:16:47 +01001505 if (!(needs_clflush & CLFLUSH_AFTER) &&
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001506 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001507 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson43394c72016-08-18 17:16:47 +01001508 needs_clflush |= CLFLUSH_AFTER;
Daniel Vettere244a442012-03-25 19:47:28 +02001509 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001510 }
Eric Anholt40123c12009-03-09 13:42:30 -07001511
Chris Wilson43394c72016-08-18 17:16:47 +01001512 if (needs_clflush & CLFLUSH_AFTER)
Chris Wilsonc0336662016-05-06 15:40:21 +01001513 i915_gem_chipset_flush(to_i915(dev));
Daniel Vetter58642882012-03-25 19:47:37 +02001514
Rodrigo Vivide152b62015-07-07 16:28:51 -07001515 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Eric Anholt40123c12009-03-09 13:42:30 -07001516 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001517}
1518
1519/**
1520 * Writes data to the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001521 * @dev: drm device
1522 * @data: ioctl data blob
1523 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001524 *
1525 * On error, the contents of the buffer that were to be modified are undefined.
1526 */
1527int
1528i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001529 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001530{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001531 struct drm_i915_private *dev_priv = to_i915(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07001532 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001533 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001534 int ret;
1535
1536 if (args->size == 0)
1537 return 0;
1538
1539 if (!access_ok(VERIFY_READ,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001540 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001541 args->size))
1542 return -EFAULT;
1543
Jani Nikulad330a952014-01-21 11:24:25 +02001544 if (likely(!i915.prefault_disable)) {
Al Viro4bce9f62016-09-17 18:02:44 -04001545 ret = fault_in_pages_readable(u64_to_user_ptr(args->data_ptr),
Xiong Zhang0b74b502013-07-19 13:51:24 +08001546 args->size);
1547 if (ret)
1548 return -EFAULT;
1549 }
Eric Anholt673a3942008-07-30 12:06:12 -07001550
Chris Wilson03ac0642016-07-20 13:31:51 +01001551 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001552 if (!obj)
1553 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001554
Chris Wilson7dcd2492010-09-26 20:21:44 +01001555 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001556 if (args->offset > obj->base.size ||
1557 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001558 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001559 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001560 }
1561
Chris Wilsondb53a302011-02-03 11:57:46 +00001562 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1563
Chris Wilsone95433c2016-10-28 13:58:27 +01001564 ret = i915_gem_object_wait(obj,
1565 I915_WAIT_INTERRUPTIBLE |
1566 I915_WAIT_ALL,
1567 MAX_SCHEDULE_TIMEOUT,
1568 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001569 if (ret)
1570 goto err;
1571
1572 intel_runtime_pm_get(dev_priv);
1573
1574 ret = i915_mutex_lock_interruptible(dev);
1575 if (ret)
1576 goto err_rpm;
1577
Daniel Vetter935aaa62012-03-25 19:47:35 +02001578 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001579 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1580 * it would end up going through the fenced access, and we'll get
1581 * different detiling behavior between reading and writing.
1582 * pread/pwrite currently are reading and writing from the CPU
1583 * perspective, requiring manual detiling by the client.
1584 */
Chris Wilson6eae0052016-06-20 15:05:52 +01001585 if (!i915_gem_object_has_struct_page(obj) ||
Chris Wilson9c870d02016-10-24 13:42:15 +01001586 cpu_write_needs_clflush(obj))
Daniel Vetter935aaa62012-03-25 19:47:35 +02001587 /* Note that the gtt paths might fail with non-page-backed user
1588 * pointers (e.g. gtt mappings when moving data between
Chris Wilson9c870d02016-10-24 13:42:15 +01001589 * textures). Fallback to the shmem path in that case.
1590 */
1591 ret = i915_gem_gtt_pwrite_fast(dev_priv, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -07001592
Chris Wilsond1054ee2016-07-16 18:42:36 +01001593 if (ret == -EFAULT || ret == -ENOSPC) {
Chris Wilson6a2c4232014-11-04 04:51:40 -08001594 if (obj->phys_handle)
1595 ret = i915_gem_phys_pwrite(obj, args, file);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301596 else
Chris Wilson43394c72016-08-18 17:16:47 +01001597 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Chris Wilson6a2c4232014-11-04 04:51:40 -08001598 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001599
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001600 i915_gem_object_put(obj);
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001601 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001602 intel_runtime_pm_put(dev_priv);
1603
Eric Anholt673a3942008-07-30 12:06:12 -07001604 return ret;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001605
1606err_rpm:
1607 intel_runtime_pm_put(dev_priv);
1608err:
1609 i915_gem_object_put_unlocked(obj);
1610 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001611}
1612
Chris Wilsond243ad82016-08-18 17:16:44 +01001613static inline enum fb_op_origin
Chris Wilsonaeecc962016-06-17 14:46:39 -03001614write_origin(struct drm_i915_gem_object *obj, unsigned domain)
1615{
Chris Wilson50349242016-08-18 17:17:04 +01001616 return (domain == I915_GEM_DOMAIN_GTT ?
1617 obj->frontbuffer_ggtt_origin : ORIGIN_CPU);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001618}
1619
Eric Anholt673a3942008-07-30 12:06:12 -07001620/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001621 * Called when user space prepares to use an object with the CPU, either
1622 * through the mmap ioctl's mapping or a GTT mapping.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001623 * @dev: drm device
1624 * @data: ioctl data blob
1625 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001626 */
1627int
1628i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001629 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001630{
1631 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001632 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001633 uint32_t read_domains = args->read_domains;
1634 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001635 int ret;
1636
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001637 /* Only handle setting domains to types used by the CPU. */
Chris Wilsonb8f90962016-08-05 10:14:07 +01001638 if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001639 return -EINVAL;
1640
1641 /* Having something in the write domain implies it's in the read
1642 * domain, and only that read domain. Enforce that in the request.
1643 */
1644 if (write_domain != 0 && read_domains != write_domain)
1645 return -EINVAL;
1646
Chris Wilson03ac0642016-07-20 13:31:51 +01001647 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001648 if (!obj)
1649 return -ENOENT;
Jesse Barnes652c3932009-08-17 13:31:43 -07001650
Chris Wilson3236f572012-08-24 09:35:09 +01001651 /* Try to flush the object off the GPU without holding the lock.
1652 * We will repeat the flush holding the lock in the normal manner
1653 * to catch cases where we are gazumped.
1654 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001655 ret = i915_gem_object_wait(obj,
1656 I915_WAIT_INTERRUPTIBLE |
1657 (write_domain ? I915_WAIT_ALL : 0),
1658 MAX_SCHEDULE_TIMEOUT,
1659 to_rps_client(file));
Chris Wilson3236f572012-08-24 09:35:09 +01001660 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001661 goto err;
1662
1663 ret = i915_mutex_lock_interruptible(dev);
1664 if (ret)
1665 goto err;
Chris Wilson3236f572012-08-24 09:35:09 +01001666
Chris Wilson43566de2015-01-02 16:29:29 +05301667 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001668 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301669 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001670 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001671
Daniel Vetter031b6982015-06-26 19:35:16 +02001672 if (write_domain != 0)
Chris Wilsonaeecc962016-06-17 14:46:39 -03001673 intel_fb_obj_invalidate(obj, write_origin(obj, write_domain));
Daniel Vetter031b6982015-06-26 19:35:16 +02001674
Chris Wilsonf8c417c2016-07-20 13:31:53 +01001675 i915_gem_object_put(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001676 mutex_unlock(&dev->struct_mutex);
1677 return ret;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001678
1679err:
1680 i915_gem_object_put_unlocked(obj);
1681 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001682}
1683
1684/**
1685 * Called when user space has done writes to this buffer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001686 * @dev: drm device
1687 * @data: ioctl data blob
1688 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001689 */
1690int
1691i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001692 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001693{
1694 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001695 struct drm_i915_gem_object *obj;
Chris Wilsonc21724c2016-08-05 10:14:19 +01001696 int err = 0;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001697
Chris Wilson03ac0642016-07-20 13:31:51 +01001698 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001699 if (!obj)
1700 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001701
Eric Anholt673a3942008-07-30 12:06:12 -07001702 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilsonc21724c2016-08-05 10:14:19 +01001703 if (READ_ONCE(obj->pin_display)) {
1704 err = i915_mutex_lock_interruptible(dev);
1705 if (!err) {
1706 i915_gem_object_flush_cpu_write_domain(obj);
1707 mutex_unlock(&dev->struct_mutex);
1708 }
1709 }
Eric Anholte47c68e2008-11-14 13:35:19 -08001710
Chris Wilsonc21724c2016-08-05 10:14:19 +01001711 i915_gem_object_put_unlocked(obj);
1712 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001713}
1714
1715/**
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001716 * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address
1717 * it is mapped to.
1718 * @dev: drm device
1719 * @data: ioctl data blob
1720 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001721 *
1722 * While the mapping holds a reference on the contents of the object, it doesn't
1723 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001724 *
1725 * IMPORTANT:
1726 *
1727 * DRM driver writers who look a this function as an example for how to do GEM
1728 * mmap support, please don't implement mmap support like here. The modern way
1729 * to implement DRM mmap support is with an mmap offset ioctl (like
1730 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1731 * That way debug tooling like valgrind will understand what's going on, hiding
1732 * the mmap call in a driver private ioctl will break that. The i915 driver only
1733 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001734 */
1735int
1736i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001737 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001738{
1739 struct drm_i915_gem_mmap *args = data;
Chris Wilson03ac0642016-07-20 13:31:51 +01001740 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001741 unsigned long addr;
1742
Akash Goel1816f922015-01-02 16:29:30 +05301743 if (args->flags & ~(I915_MMAP_WC))
1744 return -EINVAL;
1745
Borislav Petkov568a58e2016-03-29 17:42:01 +02001746 if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT))
Akash Goel1816f922015-01-02 16:29:30 +05301747 return -ENODEV;
1748
Chris Wilson03ac0642016-07-20 13:31:51 +01001749 obj = i915_gem_object_lookup(file, args->handle);
1750 if (!obj)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001751 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001752
Daniel Vetter1286ff72012-05-10 15:25:09 +02001753 /* prime objects have no backing filp to GEM mmap
1754 * pages from.
1755 */
Chris Wilson03ac0642016-07-20 13:31:51 +01001756 if (!obj->base.filp) {
Chris Wilson34911fd2016-07-20 13:31:54 +01001757 i915_gem_object_put_unlocked(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001758 return -EINVAL;
1759 }
1760
Chris Wilson03ac0642016-07-20 13:31:51 +01001761 addr = vm_mmap(obj->base.filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001762 PROT_READ | PROT_WRITE, MAP_SHARED,
1763 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301764 if (args->flags & I915_MMAP_WC) {
1765 struct mm_struct *mm = current->mm;
1766 struct vm_area_struct *vma;
1767
Michal Hocko80a89a52016-05-23 16:26:11 -07001768 if (down_write_killable(&mm->mmap_sem)) {
Chris Wilson34911fd2016-07-20 13:31:54 +01001769 i915_gem_object_put_unlocked(obj);
Michal Hocko80a89a52016-05-23 16:26:11 -07001770 return -EINTR;
1771 }
Akash Goel1816f922015-01-02 16:29:30 +05301772 vma = find_vma(mm, addr);
1773 if (vma)
1774 vma->vm_page_prot =
1775 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1776 else
1777 addr = -ENOMEM;
1778 up_write(&mm->mmap_sem);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001779
1780 /* This may race, but that's ok, it only gets set */
Chris Wilson50349242016-08-18 17:17:04 +01001781 WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU);
Akash Goel1816f922015-01-02 16:29:30 +05301782 }
Chris Wilson34911fd2016-07-20 13:31:54 +01001783 i915_gem_object_put_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001784 if (IS_ERR((void *)addr))
1785 return addr;
1786
1787 args->addr_ptr = (uint64_t) addr;
1788
1789 return 0;
1790}
1791
Chris Wilson03af84f2016-08-18 17:17:01 +01001792static unsigned int tile_row_pages(struct drm_i915_gem_object *obj)
1793{
1794 u64 size;
1795
1796 size = i915_gem_object_get_stride(obj);
1797 size *= i915_gem_object_get_tiling(obj) == I915_TILING_Y ? 32 : 8;
1798
1799 return size >> PAGE_SHIFT;
1800}
1801
Jesse Barnesde151cf2008-11-12 10:03:55 -08001802/**
Chris Wilson4cc69072016-08-25 19:05:19 +01001803 * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps
1804 *
1805 * A history of the GTT mmap interface:
1806 *
1807 * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to
1808 * aligned and suitable for fencing, and still fit into the available
1809 * mappable space left by the pinned display objects. A classic problem
1810 * we called the page-fault-of-doom where we would ping-pong between
1811 * two objects that could not fit inside the GTT and so the memcpy
1812 * would page one object in at the expense of the other between every
1813 * single byte.
1814 *
1815 * 1 - Objects can be any size, and have any compatible fencing (X Y, or none
1816 * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the
1817 * object is too large for the available space (or simply too large
1818 * for the mappable aperture!), a view is created instead and faulted
1819 * into userspace. (This view is aligned and sized appropriately for
1820 * fenced access.)
1821 *
1822 * Restrictions:
1823 *
1824 * * snoopable objects cannot be accessed via the GTT. It can cause machine
1825 * hangs on some architectures, corruption on others. An attempt to service
1826 * a GTT page fault from a snoopable object will generate a SIGBUS.
1827 *
1828 * * the object must be able to fit into RAM (physical memory, though no
1829 * limited to the mappable aperture).
1830 *
1831 *
1832 * Caveats:
1833 *
1834 * * a new GTT page fault will synchronize rendering from the GPU and flush
1835 * all data to system memory. Subsequent access will not be synchronized.
1836 *
1837 * * all mappings are revoked on runtime device suspend.
1838 *
1839 * * there are only 8, 16 or 32 fence registers to share between all users
1840 * (older machines require fence register for display and blitter access
1841 * as well). Contention of the fence registers will cause the previous users
1842 * to be unmapped and any new access will generate new page faults.
1843 *
1844 * * running out of memory while servicing a fault may generate a SIGBUS,
1845 * rather than the expected SIGSEGV.
1846 */
1847int i915_gem_mmap_gtt_version(void)
1848{
1849 return 1;
1850}
1851
1852/**
Jesse Barnesde151cf2008-11-12 10:03:55 -08001853 * i915_gem_fault - fault a page into the GTT
Chris Wilson058d88c2016-08-15 10:49:06 +01001854 * @area: CPU VMA in question
Geliang Tangd9072a32015-09-15 05:58:44 -07001855 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001856 *
1857 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1858 * from userspace. The fault handler takes care of binding the object to
1859 * the GTT (if needed), allocating and programming a fence register (again,
1860 * only if needed based on whether the old reg is still valid or the object
1861 * is tiled) and inserting a new PTE into the faulting process.
1862 *
1863 * Note that the faulting process may involve evicting existing objects
1864 * from the GTT and/or fence registers to make room. So performance may
1865 * suffer if the GTT working set is large or there are few fence registers
1866 * left.
Chris Wilson4cc69072016-08-25 19:05:19 +01001867 *
1868 * The current feature set supported by i915_gem_fault() and thus GTT mmaps
1869 * is exposed via I915_PARAM_MMAP_GTT_VERSION (see i915_gem_mmap_gtt_version).
Jesse Barnesde151cf2008-11-12 10:03:55 -08001870 */
Chris Wilson058d88c2016-08-15 10:49:06 +01001871int i915_gem_fault(struct vm_area_struct *area, struct vm_fault *vmf)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001872{
Chris Wilson03af84f2016-08-18 17:17:01 +01001873#define MIN_CHUNK_PAGES ((1 << 20) >> PAGE_SHIFT) /* 1 MiB */
Chris Wilson058d88c2016-08-15 10:49:06 +01001874 struct drm_i915_gem_object *obj = to_intel_bo(area->vm_private_data);
Chris Wilson05394f32010-11-08 19:18:58 +00001875 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001876 struct drm_i915_private *dev_priv = to_i915(dev);
1877 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001878 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001879 struct i915_vma *vma;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001880 pgoff_t page_offset;
Chris Wilson82118872016-08-18 17:17:05 +01001881 unsigned int flags;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001882 int ret;
Paulo Zanonif65c9162013-11-27 18:20:34 -02001883
Jesse Barnesde151cf2008-11-12 10:03:55 -08001884 /* We don't use vmf->pgoff since that has the fake offset */
Chris Wilson058d88c2016-08-15 10:49:06 +01001885 page_offset = ((unsigned long)vmf->virtual_address - area->vm_start) >>
Jesse Barnesde151cf2008-11-12 10:03:55 -08001886 PAGE_SHIFT;
1887
Chris Wilsondb53a302011-02-03 11:57:46 +00001888 trace_i915_gem_object_fault(obj, page_offset, true, write);
1889
Chris Wilson6e4930f2014-02-07 18:37:06 -02001890 /* Try to flush the object off the GPU first without holding the lock.
Chris Wilsonb8f90962016-08-05 10:14:07 +01001891 * Upon acquiring the lock, we will perform our sanity checks and then
Chris Wilson6e4930f2014-02-07 18:37:06 -02001892 * repeat the flush holding the lock in the normal manner to catch cases
1893 * where we are gazumped.
1894 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001895 ret = i915_gem_object_wait(obj,
1896 I915_WAIT_INTERRUPTIBLE,
1897 MAX_SCHEDULE_TIMEOUT,
1898 NULL);
Chris Wilson6e4930f2014-02-07 18:37:06 -02001899 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001900 goto err;
1901
1902 intel_runtime_pm_get(dev_priv);
1903
1904 ret = i915_mutex_lock_interruptible(dev);
1905 if (ret)
1906 goto err_rpm;
Chris Wilson6e4930f2014-02-07 18:37:06 -02001907
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001908 /* Access to snoopable pages through the GTT is incoherent. */
1909 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001910 ret = -EFAULT;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001911 goto err_unlock;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001912 }
1913
Chris Wilson82118872016-08-18 17:17:05 +01001914 /* If the object is smaller than a couple of partial vma, it is
1915 * not worth only creating a single partial vma - we may as well
1916 * clear enough space for the full object.
1917 */
1918 flags = PIN_MAPPABLE;
1919 if (obj->base.size > 2 * MIN_CHUNK_PAGES << PAGE_SHIFT)
1920 flags |= PIN_NONBLOCK | PIN_NONFAULT;
1921
Chris Wilsona61007a2016-08-18 17:17:02 +01001922 /* Now pin it into the GTT as needed */
Chris Wilson82118872016-08-18 17:17:05 +01001923 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, flags);
Chris Wilsona61007a2016-08-18 17:17:02 +01001924 if (IS_ERR(vma)) {
1925 struct i915_ggtt_view view;
Chris Wilson03af84f2016-08-18 17:17:01 +01001926 unsigned int chunk_size;
1927
Chris Wilsona61007a2016-08-18 17:17:02 +01001928 /* Use a partial view if it is bigger than available space */
Chris Wilson03af84f2016-08-18 17:17:01 +01001929 chunk_size = MIN_CHUNK_PAGES;
1930 if (i915_gem_object_is_tiled(obj))
1931 chunk_size = max(chunk_size, tile_row_pages(obj));
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001932
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001933 memset(&view, 0, sizeof(view));
1934 view.type = I915_GGTT_VIEW_PARTIAL;
1935 view.params.partial.offset = rounddown(page_offset, chunk_size);
1936 view.params.partial.size =
Chris Wilsona61007a2016-08-18 17:17:02 +01001937 min_t(unsigned int, chunk_size,
Chris Wilson908b1232016-10-11 10:06:56 +01001938 vma_pages(area) - view.params.partial.offset);
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001939
Chris Wilsonaa136d92016-08-18 17:17:03 +01001940 /* If the partial covers the entire object, just create a
1941 * normal VMA.
1942 */
1943 if (chunk_size >= obj->base.size >> PAGE_SHIFT)
1944 view.type = I915_GGTT_VIEW_NORMAL;
1945
Chris Wilson50349242016-08-18 17:17:04 +01001946 /* Userspace is now writing through an untracked VMA, abandon
1947 * all hope that the hardware is able to track future writes.
1948 */
1949 obj->frontbuffer_ggtt_origin = ORIGIN_CPU;
1950
Chris Wilsona61007a2016-08-18 17:17:02 +01001951 vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, PIN_MAPPABLE);
1952 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001953 if (IS_ERR(vma)) {
1954 ret = PTR_ERR(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001955 goto err_unlock;
Chris Wilson058d88c2016-08-15 10:49:06 +01001956 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001957
Chris Wilsonc9839302012-11-20 10:45:17 +00001958 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1959 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001960 goto err_unpin;
Chris Wilsonc9839302012-11-20 10:45:17 +00001961
Chris Wilson49ef5292016-08-18 17:17:00 +01001962 ret = i915_vma_get_fence(vma);
Chris Wilsonc9839302012-11-20 10:45:17 +00001963 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001964 goto err_unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001965
Chris Wilson275f0392016-10-24 13:42:14 +01001966 /* Mark as being mmapped into userspace for later revocation */
Chris Wilson9c870d02016-10-24 13:42:15 +01001967 assert_rpm_wakelock_held(dev_priv);
Chris Wilson275f0392016-10-24 13:42:14 +01001968 if (list_empty(&obj->userfault_link))
1969 list_add(&obj->userfault_link, &dev_priv->mm.userfault_list);
Chris Wilson275f0392016-10-24 13:42:14 +01001970
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001971 /* Finally, remap it using the new GTT offset */
Chris Wilsonc58305a2016-08-19 16:54:28 +01001972 ret = remap_io_mapping(area,
1973 area->vm_start + (vma->ggtt_view.params.partial.offset << PAGE_SHIFT),
1974 (ggtt->mappable_base + vma->node.start) >> PAGE_SHIFT,
1975 min_t(u64, vma->size, area->vm_end - area->vm_start),
1976 &ggtt->mappable);
Chris Wilsona61007a2016-08-18 17:17:02 +01001977
Chris Wilsonb8f90962016-08-05 10:14:07 +01001978err_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +01001979 __i915_vma_unpin(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001980err_unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001981 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001982err_rpm:
1983 intel_runtime_pm_put(dev_priv);
1984err:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001985 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001986 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001987 /*
1988 * We eat errors when the gpu is terminally wedged to avoid
1989 * userspace unduly crashing (gl has no provisions for mmaps to
1990 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1991 * and so needs to be reported.
1992 */
1993 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001994 ret = VM_FAULT_SIGBUS;
1995 break;
1996 }
Chris Wilson045e7692010-11-07 09:18:22 +00001997 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001998 /*
1999 * EAGAIN means the gpu is hung and we'll wait for the error
2000 * handler to reset everything when re-faulting in
2001 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00002002 */
Chris Wilsonc7150892009-09-23 00:43:56 +01002003 case 0:
2004 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00002005 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03002006 case -EBUSY:
2007 /*
2008 * EBUSY is ok: this just means that another thread
2009 * already did the job.
2010 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02002011 ret = VM_FAULT_NOPAGE;
2012 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002013 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02002014 ret = VM_FAULT_OOM;
2015 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02002016 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00002017 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02002018 ret = VM_FAULT_SIGBUS;
2019 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002020 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02002021 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02002022 ret = VM_FAULT_SIGBUS;
2023 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002024 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02002025 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002026}
2027
2028/**
Chris Wilson901782b2009-07-10 08:18:50 +01002029 * i915_gem_release_mmap - remove physical page mappings
2030 * @obj: obj in question
2031 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02002032 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01002033 * relinquish ownership of the pages back to the system.
2034 *
2035 * It is vital that we remove the page mapping if we have mapped a tiled
2036 * object through the GTT and then lose the fence register due to
2037 * resource pressure. Similarly if the object has been moved out of the
2038 * aperture, than pages mapped into userspace must be revoked. Removing the
2039 * mapping will then trigger a page fault on the next user access, allowing
2040 * fixup by i915_gem_fault().
2041 */
Eric Anholtd05ca302009-07-10 13:02:26 -07002042void
Chris Wilson05394f32010-11-08 19:18:58 +00002043i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01002044{
Chris Wilson275f0392016-10-24 13:42:14 +01002045 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson275f0392016-10-24 13:42:14 +01002046
Chris Wilson349f2cc2016-04-13 17:35:12 +01002047 /* Serialisation between user GTT access and our code depends upon
2048 * revoking the CPU's PTE whilst the mutex is held. The next user
2049 * pagefault then has to wait until we release the mutex.
Chris Wilson9c870d02016-10-24 13:42:15 +01002050 *
2051 * Note that RPM complicates somewhat by adding an additional
2052 * requirement that operations to the GGTT be made holding the RPM
2053 * wakeref.
Chris Wilson349f2cc2016-04-13 17:35:12 +01002054 */
Chris Wilson275f0392016-10-24 13:42:14 +01002055 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson9c870d02016-10-24 13:42:15 +01002056 intel_runtime_pm_get(i915);
Chris Wilson349f2cc2016-04-13 17:35:12 +01002057
Chris Wilson3594a3e2016-10-24 13:42:16 +01002058 if (list_empty(&obj->userfault_link))
Chris Wilson9c870d02016-10-24 13:42:15 +01002059 goto out;
Chris Wilson901782b2009-07-10 08:18:50 +01002060
Chris Wilson3594a3e2016-10-24 13:42:16 +01002061 list_del_init(&obj->userfault_link);
David Herrmann6796cb12014-01-03 14:24:19 +01002062 drm_vma_node_unmap(&obj->base.vma_node,
2063 obj->base.dev->anon_inode->i_mapping);
Chris Wilson349f2cc2016-04-13 17:35:12 +01002064
2065 /* Ensure that the CPU's PTE are revoked and there are not outstanding
2066 * memory transactions from userspace before we return. The TLB
2067 * flushing implied above by changing the PTE above *should* be
2068 * sufficient, an extra barrier here just provides us with a bit
2069 * of paranoid documentation about our requirement to serialise
2070 * memory writes before touching registers / GSM.
2071 */
2072 wmb();
Chris Wilson9c870d02016-10-24 13:42:15 +01002073
2074out:
2075 intel_runtime_pm_put(i915);
Chris Wilson901782b2009-07-10 08:18:50 +01002076}
2077
Chris Wilson7c108fd2016-10-24 13:42:18 +01002078void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv)
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002079{
Chris Wilson3594a3e2016-10-24 13:42:16 +01002080 struct drm_i915_gem_object *obj, *on;
Chris Wilson7c108fd2016-10-24 13:42:18 +01002081 int i;
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002082
Chris Wilson3594a3e2016-10-24 13:42:16 +01002083 /*
2084 * Only called during RPM suspend. All users of the userfault_list
2085 * must be holding an RPM wakeref to ensure that this can not
2086 * run concurrently with themselves (and use the struct_mutex for
2087 * protection between themselves).
2088 */
2089
2090 list_for_each_entry_safe(obj, on,
2091 &dev_priv->mm.userfault_list, userfault_link) {
Chris Wilson275f0392016-10-24 13:42:14 +01002092 list_del_init(&obj->userfault_link);
Chris Wilson275f0392016-10-24 13:42:14 +01002093 drm_vma_node_unmap(&obj->base.vma_node,
2094 obj->base.dev->anon_inode->i_mapping);
Chris Wilson275f0392016-10-24 13:42:14 +01002095 }
Chris Wilson7c108fd2016-10-24 13:42:18 +01002096
2097 /* The fence will be lost when the device powers down. If any were
2098 * in use by hardware (i.e. they are pinned), we should not be powering
2099 * down! All other fences will be reacquired by the user upon waking.
2100 */
2101 for (i = 0; i < dev_priv->num_fence_regs; i++) {
2102 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
2103
2104 if (WARN_ON(reg->pin_count))
2105 continue;
2106
2107 if (!reg->vma)
2108 continue;
2109
2110 GEM_BUG_ON(!list_empty(&reg->vma->obj->userfault_link));
2111 reg->dirty = true;
2112 }
Chris Wilsoneedd10f2014-06-16 08:57:44 +01002113}
2114
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002115/**
2116 * i915_gem_get_ggtt_size - return required global GTT size for an object
Chris Wilsona9f14812016-08-04 16:32:28 +01002117 * @dev_priv: i915 device
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002118 * @size: object size
2119 * @tiling_mode: tiling mode
2120 *
2121 * Return the required global GTT size for an object, taking into account
2122 * potential fence register mapping.
2123 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002124u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv,
2125 u64 size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00002126{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002127 u64 ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002128
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002129 GEM_BUG_ON(size == 0);
2130
Chris Wilsona9f14812016-08-04 16:32:28 +01002131 if (INTEL_GEN(dev_priv) >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002132 tiling_mode == I915_TILING_NONE)
2133 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002134
2135 /* Previous chips need a power-of-two fence region when tiling */
Chris Wilsona9f14812016-08-04 16:32:28 +01002136 if (IS_GEN3(dev_priv))
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002137 ggtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002138 else
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002139 ggtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002140
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002141 while (ggtt_size < size)
2142 ggtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002143
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002144 return ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00002145}
2146
Jesse Barnesde151cf2008-11-12 10:03:55 -08002147/**
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002148 * i915_gem_get_ggtt_alignment - return required global GTT alignment
Chris Wilsona9f14812016-08-04 16:32:28 +01002149 * @dev_priv: i915 device
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002150 * @size: object size
2151 * @tiling_mode: tiling mode
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002152 * @fenced: is fenced alignment required or not
Jesse Barnesde151cf2008-11-12 10:03:55 -08002153 *
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002154 * Return the required global GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01002155 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002156 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002157u64 i915_gem_get_ggtt_alignment(struct drm_i915_private *dev_priv, u64 size,
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002158 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002159{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002160 GEM_BUG_ON(size == 0);
2161
Jesse Barnesde151cf2008-11-12 10:03:55 -08002162 /*
2163 * Minimum alignment is 4k (GTT page size), but might be greater
2164 * if a fence register is needed for the object.
2165 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002166 if (INTEL_GEN(dev_priv) >= 4 || (!fenced && IS_G33(dev_priv)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002167 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002168 return 4096;
2169
2170 /*
2171 * Previous chips need to be aligned to the size of the smallest
2172 * fence register that can contain the object.
2173 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002174 return i915_gem_get_ggtt_size(dev_priv, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002175}
2176
Chris Wilsond8cb5082012-08-11 15:41:03 +01002177static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2178{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002179 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002180 int err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002181
Chris Wilsonf3f61842016-08-05 10:14:14 +01002182 err = drm_gem_create_mmap_offset(&obj->base);
2183 if (!err)
2184 return 0;
Daniel Vetterda494d72012-12-20 15:11:16 +01002185
Chris Wilsonf3f61842016-08-05 10:14:14 +01002186 /* We can idle the GPU locklessly to flush stale objects, but in order
2187 * to claim that space for ourselves, we need to take the big
2188 * struct_mutex to free the requests+objects and allocate our slot.
Chris Wilsond8cb5082012-08-11 15:41:03 +01002189 */
Chris Wilsonea746f32016-09-09 14:11:49 +01002190 err = i915_gem_wait_for_idle(dev_priv, I915_WAIT_INTERRUPTIBLE);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002191 if (err)
2192 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002193
Chris Wilsonf3f61842016-08-05 10:14:14 +01002194 err = i915_mutex_lock_interruptible(&dev_priv->drm);
2195 if (!err) {
2196 i915_gem_retire_requests(dev_priv);
2197 err = drm_gem_create_mmap_offset(&obj->base);
2198 mutex_unlock(&dev_priv->drm.struct_mutex);
2199 }
Daniel Vetterda494d72012-12-20 15:11:16 +01002200
Chris Wilsonf3f61842016-08-05 10:14:14 +01002201 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002202}
2203
2204static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2205{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002206 drm_gem_free_mmap_offset(&obj->base);
2207}
2208
Dave Airlieda6b51d2014-12-24 13:11:17 +10002209int
Dave Airlieff72145b2011-02-07 12:16:14 +10002210i915_gem_mmap_gtt(struct drm_file *file,
2211 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002212 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10002213 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002214{
Chris Wilson05394f32010-11-08 19:18:58 +00002215 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002216 int ret;
2217
Chris Wilson03ac0642016-07-20 13:31:51 +01002218 obj = i915_gem_object_lookup(file, handle);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002219 if (!obj)
2220 return -ENOENT;
Chris Wilsonab182822009-09-22 18:46:17 +01002221
Chris Wilsond8cb5082012-08-11 15:41:03 +01002222 ret = i915_gem_object_create_mmap_offset(obj);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002223 if (ret == 0)
2224 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002225
Chris Wilsonf3f61842016-08-05 10:14:14 +01002226 i915_gem_object_put_unlocked(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002227 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002228}
2229
Dave Airlieff72145b2011-02-07 12:16:14 +10002230/**
2231 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2232 * @dev: DRM device
2233 * @data: GTT mapping ioctl data
2234 * @file: GEM object info
2235 *
2236 * Simply returns the fake offset to userspace so it can mmap it.
2237 * The mmap call will end up in drm_gem_mmap(), which will set things
2238 * up so we can get faults in the handler above.
2239 *
2240 * The fault handler will take care of binding the object into the GTT
2241 * (since it may have been evicted to make room for something), allocating
2242 * a fence register, and mapping the appropriate aperture address into
2243 * userspace.
2244 */
2245int
2246i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2247 struct drm_file *file)
2248{
2249 struct drm_i915_gem_mmap_gtt *args = data;
2250
Dave Airlieda6b51d2014-12-24 13:11:17 +10002251 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002252}
2253
Daniel Vetter225067e2012-08-20 10:23:20 +02002254/* Immediately discard the backing storage */
2255static void
2256i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002257{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002258 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002259
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002260 if (obj->base.filp == NULL)
2261 return;
2262
Daniel Vetter225067e2012-08-20 10:23:20 +02002263 /* Our goal here is to return as much of the memory as
2264 * is possible back to the system as we are called from OOM.
2265 * To do this we must instruct the shmfs to drop all of its
2266 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002267 */
Chris Wilson55372522014-03-25 13:23:06 +00002268 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02002269 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01002270}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002271
Chris Wilson55372522014-03-25 13:23:06 +00002272/* Try to discard unwanted pages */
2273static void
2274i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02002275{
Chris Wilson55372522014-03-25 13:23:06 +00002276 struct address_space *mapping;
2277
2278 switch (obj->madv) {
2279 case I915_MADV_DONTNEED:
2280 i915_gem_object_truncate(obj);
2281 case __I915_MADV_PURGED:
2282 return;
2283 }
2284
2285 if (obj->base.filp == NULL)
2286 return;
2287
Al Viro93c76a32015-12-04 23:45:44 -05002288 mapping = obj->base.filp->f_mapping,
Chris Wilson55372522014-03-25 13:23:06 +00002289 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002290}
2291
Chris Wilson5cdf5882010-09-27 15:51:07 +01002292static void
Chris Wilson05394f32010-11-08 19:18:58 +00002293i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002294{
Dave Gordon85d12252016-05-20 11:54:06 +01002295 struct sgt_iter sgt_iter;
2296 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002297 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002298
Chris Wilson05394f32010-11-08 19:18:58 +00002299 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07002300
Chris Wilson6c085a72012-08-20 11:40:46 +02002301 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +01002302 if (WARN_ON(ret)) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002303 /* In the event of a disaster, abandon all caches and
2304 * hope for the best.
2305 */
Chris Wilson2c225692013-08-09 12:26:45 +01002306 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02002307 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2308 }
2309
Imre Deake2273302015-07-09 12:59:05 +03002310 i915_gem_gtt_finish_object(obj);
2311
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002312 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07002313 i915_gem_object_save_bit_17_swizzle(obj);
2314
Chris Wilson05394f32010-11-08 19:18:58 +00002315 if (obj->madv == I915_MADV_DONTNEED)
2316 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01002317
Dave Gordon85d12252016-05-20 11:54:06 +01002318 for_each_sgt_page(page, sgt_iter, obj->pages) {
Chris Wilson05394f32010-11-08 19:18:58 +00002319 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002320 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002321
Chris Wilson05394f32010-11-08 19:18:58 +00002322 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002323 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002324
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002325 put_page(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002326 }
Chris Wilson05394f32010-11-08 19:18:58 +00002327 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002328
Chris Wilson9da3da62012-06-01 15:20:22 +01002329 sg_free_table(obj->pages);
2330 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002331}
2332
Chris Wilsondd624af2013-01-15 12:39:35 +00002333int
Chris Wilson37e680a2012-06-07 15:38:42 +01002334i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2335{
2336 const struct drm_i915_gem_object_ops *ops = obj->ops;
2337
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002338 lockdep_assert_held(&obj->base.dev->struct_mutex);
2339
Chris Wilson2f745ad2012-09-04 21:02:58 +01002340 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002341 return 0;
2342
Chris Wilsona5570172012-09-04 21:02:54 +01002343 if (obj->pages_pin_count)
2344 return -EBUSY;
2345
Chris Wilson15717de2016-08-04 07:52:26 +01002346 GEM_BUG_ON(obj->bind_count);
Ben Widawsky3e123022013-07-31 17:00:04 -07002347
Chris Wilsona2165e32012-12-03 11:49:00 +00002348 /* ->put_pages might need to allocate memory for the bit17 swizzle
2349 * array, hence protect them from being reaped by removing them from gtt
2350 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002351 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002352
Chris Wilson0a798eb2016-04-08 12:11:11 +01002353 if (obj->mapping) {
Chris Wilson4b30cb22016-08-18 17:16:42 +01002354 void *ptr;
2355
2356 ptr = ptr_mask_bits(obj->mapping);
2357 if (is_vmalloc_addr(ptr))
2358 vunmap(ptr);
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002359 else
Chris Wilson4b30cb22016-08-18 17:16:42 +01002360 kunmap(kmap_to_page(ptr));
2361
Chris Wilson0a798eb2016-04-08 12:11:11 +01002362 obj->mapping = NULL;
2363 }
2364
Chris Wilson37e680a2012-06-07 15:38:42 +01002365 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002366 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002367
Chris Wilson55372522014-03-25 13:23:06 +00002368 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002369
2370 return 0;
2371}
2372
Chris Wilson4ff340f02016-10-18 13:02:50 +01002373static unsigned int swiotlb_max_size(void)
Chris Wilson871dfbd2016-10-11 09:20:21 +01002374{
2375#if IS_ENABLED(CONFIG_SWIOTLB)
2376 return rounddown(swiotlb_nr_tbl() << IO_TLB_SHIFT, PAGE_SIZE);
2377#else
2378 return 0;
2379#endif
2380}
2381
Chris Wilson37e680a2012-06-07 15:38:42 +01002382static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002383i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002384{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002385 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002386 int page_count, i;
2387 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002388 struct sg_table *st;
2389 struct scatterlist *sg;
Dave Gordon85d12252016-05-20 11:54:06 +01002390 struct sgt_iter sgt_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002391 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002392 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson4ff340f02016-10-18 13:02:50 +01002393 unsigned int max_segment;
Imre Deake2273302015-07-09 12:59:05 +03002394 int ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002395 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002396
Chris Wilson6c085a72012-08-20 11:40:46 +02002397 /* Assert that the object is not currently in any GPU domain. As it
2398 * wasn't in the GTT, there shouldn't be any way it could have been in
2399 * a GPU cache
2400 */
2401 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2402 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2403
Chris Wilson871dfbd2016-10-11 09:20:21 +01002404 max_segment = swiotlb_max_size();
2405 if (!max_segment)
Chris Wilson4ff340f02016-10-18 13:02:50 +01002406 max_segment = rounddown(UINT_MAX, PAGE_SIZE);
Chris Wilson871dfbd2016-10-11 09:20:21 +01002407
Chris Wilson9da3da62012-06-01 15:20:22 +01002408 st = kmalloc(sizeof(*st), GFP_KERNEL);
2409 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002410 return -ENOMEM;
2411
Chris Wilson9da3da62012-06-01 15:20:22 +01002412 page_count = obj->base.size / PAGE_SIZE;
2413 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002414 kfree(st);
2415 return -ENOMEM;
2416 }
2417
2418 /* Get the list of pages out of our struct file. They'll be pinned
2419 * at this point until we release them.
2420 *
2421 * Fail silently without starting the shrinker
2422 */
Al Viro93c76a32015-12-04 23:45:44 -05002423 mapping = obj->base.filp->f_mapping;
Michal Hockoc62d2552015-11-06 16:28:49 -08002424 gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM));
Mel Gormand0164ad2015-11-06 16:28:21 -08002425 gfp |= __GFP_NORETRY | __GFP_NOWARN;
Imre Deak90797e62013-02-18 19:28:03 +02002426 sg = st->sgl;
2427 st->nents = 0;
2428 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002429 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2430 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002431 i915_gem_shrink(dev_priv,
2432 page_count,
2433 I915_SHRINK_BOUND |
2434 I915_SHRINK_UNBOUND |
2435 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002436 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2437 }
2438 if (IS_ERR(page)) {
2439 /* We've tried hard to allocate the memory by reaping
2440 * our own buffer, now let the real VM do its job and
2441 * go down in flames if truly OOM.
2442 */
David Herrmannf461d1b2014-05-25 14:34:10 +02002443 page = shmem_read_mapping_page(mapping, i);
Imre Deake2273302015-07-09 12:59:05 +03002444 if (IS_ERR(page)) {
2445 ret = PTR_ERR(page);
Chris Wilson6c085a72012-08-20 11:40:46 +02002446 goto err_pages;
Imre Deake2273302015-07-09 12:59:05 +03002447 }
Chris Wilson6c085a72012-08-20 11:40:46 +02002448 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002449 if (!i ||
2450 sg->length >= max_segment ||
2451 page_to_pfn(page) != last_pfn + 1) {
Imre Deak90797e62013-02-18 19:28:03 +02002452 if (i)
2453 sg = sg_next(sg);
2454 st->nents++;
2455 sg_set_page(sg, page, PAGE_SIZE, 0);
2456 } else {
2457 sg->length += PAGE_SIZE;
2458 }
2459 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002460
2461 /* Check that the i965g/gm workaround works. */
2462 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002463 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002464 if (sg) /* loop terminated early; short sg table */
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002465 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002466 obj->pages = st;
2467
Imre Deake2273302015-07-09 12:59:05 +03002468 ret = i915_gem_gtt_prepare_object(obj);
2469 if (ret)
2470 goto err_pages;
2471
Eric Anholt673a3942008-07-30 12:06:12 -07002472 if (i915_gem_object_needs_bit17_swizzle(obj))
2473 i915_gem_object_do_bit_17_swizzle(obj);
2474
Chris Wilson3e510a82016-08-05 10:14:23 +01002475 if (i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01002476 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2477 i915_gem_object_pin_pages(obj);
2478
Eric Anholt673a3942008-07-30 12:06:12 -07002479 return 0;
2480
2481err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002482 sg_mark_end(sg);
Dave Gordon85d12252016-05-20 11:54:06 +01002483 for_each_sgt_page(page, sgt_iter, st)
2484 put_page(page);
Chris Wilson9da3da62012-06-01 15:20:22 +01002485 sg_free_table(st);
2486 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002487
2488 /* shmemfs first checks if there is enough memory to allocate the page
2489 * and reports ENOSPC should there be insufficient, along with the usual
2490 * ENOMEM for a genuine allocation failure.
2491 *
2492 * We use ENOSPC in our driver to mean that we have run out of aperture
2493 * space and so want to translate the error from shmemfs back to our
2494 * usual understanding of ENOMEM.
2495 */
Imre Deake2273302015-07-09 12:59:05 +03002496 if (ret == -ENOSPC)
2497 ret = -ENOMEM;
2498
2499 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002500}
2501
Chris Wilson37e680a2012-06-07 15:38:42 +01002502/* Ensure that the associated pages are gathered from the backing storage
2503 * and pinned into our object. i915_gem_object_get_pages() may be called
2504 * multiple times before they are released by a single call to
2505 * i915_gem_object_put_pages() - once the pages are no longer referenced
2506 * either as a result of memory pressure (reaping pages under the shrinker)
2507 * or as the object is itself released.
2508 */
2509int
2510i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2511{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002512 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson37e680a2012-06-07 15:38:42 +01002513 const struct drm_i915_gem_object_ops *ops = obj->ops;
2514 int ret;
2515
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002516 lockdep_assert_held(&obj->base.dev->struct_mutex);
2517
Chris Wilson2f745ad2012-09-04 21:02:58 +01002518 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002519 return 0;
2520
Chris Wilson43e28f02013-01-08 10:53:09 +00002521 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002522 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002523 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002524 }
2525
Chris Wilsona5570172012-09-04 21:02:54 +01002526 BUG_ON(obj->pages_pin_count);
2527
Chris Wilson37e680a2012-06-07 15:38:42 +01002528 ret = ops->get_pages(obj);
2529 if (ret)
2530 return ret;
2531
Ben Widawsky35c20a62013-05-31 11:28:48 -07002532 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilsonee286372015-04-07 16:20:25 +01002533
2534 obj->get_page.sg = obj->pages->sgl;
2535 obj->get_page.last = 0;
2536
Chris Wilson37e680a2012-06-07 15:38:42 +01002537 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002538}
2539
Dave Gordondd6034c2016-05-20 11:54:04 +01002540/* The 'mapping' part of i915_gem_object_pin_map() below */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002541static void *i915_gem_object_map(const struct drm_i915_gem_object *obj,
2542 enum i915_map_type type)
Dave Gordondd6034c2016-05-20 11:54:04 +01002543{
2544 unsigned long n_pages = obj->base.size >> PAGE_SHIFT;
2545 struct sg_table *sgt = obj->pages;
Dave Gordon85d12252016-05-20 11:54:06 +01002546 struct sgt_iter sgt_iter;
2547 struct page *page;
Dave Gordonb338fa42016-05-20 11:54:05 +01002548 struct page *stack_pages[32];
2549 struct page **pages = stack_pages;
Dave Gordondd6034c2016-05-20 11:54:04 +01002550 unsigned long i = 0;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002551 pgprot_t pgprot;
Dave Gordondd6034c2016-05-20 11:54:04 +01002552 void *addr;
2553
2554 /* A single page can always be kmapped */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002555 if (n_pages == 1 && type == I915_MAP_WB)
Dave Gordondd6034c2016-05-20 11:54:04 +01002556 return kmap(sg_page(sgt->sgl));
2557
Dave Gordonb338fa42016-05-20 11:54:05 +01002558 if (n_pages > ARRAY_SIZE(stack_pages)) {
2559 /* Too big for stack -- allocate temporary array instead */
2560 pages = drm_malloc_gfp(n_pages, sizeof(*pages), GFP_TEMPORARY);
2561 if (!pages)
2562 return NULL;
2563 }
Dave Gordondd6034c2016-05-20 11:54:04 +01002564
Dave Gordon85d12252016-05-20 11:54:06 +01002565 for_each_sgt_page(page, sgt_iter, sgt)
2566 pages[i++] = page;
Dave Gordondd6034c2016-05-20 11:54:04 +01002567
2568 /* Check that we have the expected number of pages */
2569 GEM_BUG_ON(i != n_pages);
2570
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002571 switch (type) {
2572 case I915_MAP_WB:
2573 pgprot = PAGE_KERNEL;
2574 break;
2575 case I915_MAP_WC:
2576 pgprot = pgprot_writecombine(PAGE_KERNEL_IO);
2577 break;
2578 }
2579 addr = vmap(pages, n_pages, 0, pgprot);
Dave Gordondd6034c2016-05-20 11:54:04 +01002580
Dave Gordonb338fa42016-05-20 11:54:05 +01002581 if (pages != stack_pages)
2582 drm_free_large(pages);
Dave Gordondd6034c2016-05-20 11:54:04 +01002583
2584 return addr;
2585}
2586
2587/* get, pin, and map the pages of the object into kernel space */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002588void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj,
2589 enum i915_map_type type)
Chris Wilson0a798eb2016-04-08 12:11:11 +01002590{
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002591 enum i915_map_type has_type;
2592 bool pinned;
2593 void *ptr;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002594 int ret;
2595
2596 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002597 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002598
2599 ret = i915_gem_object_get_pages(obj);
2600 if (ret)
2601 return ERR_PTR(ret);
2602
2603 i915_gem_object_pin_pages(obj);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002604 pinned = obj->pages_pin_count > 1;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002605
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002606 ptr = ptr_unpack_bits(obj->mapping, has_type);
2607 if (ptr && has_type != type) {
2608 if (pinned) {
2609 ret = -EBUSY;
2610 goto err;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002611 }
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002612
2613 if (is_vmalloc_addr(ptr))
2614 vunmap(ptr);
2615 else
2616 kunmap(kmap_to_page(ptr));
2617
2618 ptr = obj->mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002619 }
2620
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002621 if (!ptr) {
2622 ptr = i915_gem_object_map(obj, type);
2623 if (!ptr) {
2624 ret = -ENOMEM;
2625 goto err;
2626 }
2627
2628 obj->mapping = ptr_pack_bits(ptr, type);
2629 }
2630
2631 return ptr;
2632
2633err:
2634 i915_gem_object_unpin_pages(obj);
2635 return ERR_PTR(ret);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002636}
2637
Chris Wilsoncaea7472010-11-12 13:53:37 +00002638static void
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002639i915_gem_object_retire__write(struct i915_gem_active *active,
2640 struct drm_i915_gem_request *request)
Chris Wilsonb4716182015-04-27 13:41:17 +01002641{
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002642 struct drm_i915_gem_object *obj =
2643 container_of(active, struct drm_i915_gem_object, last_write);
Chris Wilsonb4716182015-04-27 13:41:17 +01002644
Rodrigo Vivide152b62015-07-07 16:28:51 -07002645 intel_fb_obj_flush(obj, true, ORIGIN_CS);
Chris Wilsonb4716182015-04-27 13:41:17 +01002646}
2647
2648static void
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002649i915_gem_object_retire__read(struct i915_gem_active *active,
2650 struct drm_i915_gem_request *request)
Chris Wilsoncaea7472010-11-12 13:53:37 +00002651{
Chris Wilsonfa545cb2016-08-04 07:52:35 +01002652 int idx = request->engine->id;
2653 struct drm_i915_gem_object *obj =
2654 container_of(active, struct drm_i915_gem_object, last_read[idx]);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002655
Chris Wilson573adb32016-08-04 16:32:39 +01002656 GEM_BUG_ON(!i915_gem_object_has_active_engine(obj, idx));
Chris Wilsonb4716182015-04-27 13:41:17 +01002657
Chris Wilson573adb32016-08-04 16:32:39 +01002658 i915_gem_object_clear_active(obj, idx);
2659 if (i915_gem_object_is_active(obj))
Chris Wilsonb4716182015-04-27 13:41:17 +01002660 return;
Chris Wilson65ce3022012-07-20 12:41:02 +01002661
Chris Wilson6c246952015-07-27 10:26:26 +01002662 /* Bump our place on the bound list to keep it roughly in LRU order
2663 * so that we don't steal from recently used but inactive objects
2664 * (unless we are forced to ofc!)
2665 */
Chris Wilsonb0decaf2016-08-04 07:52:44 +01002666 if (obj->bind_count)
2667 list_move_tail(&obj->global_list,
2668 &request->i915->mm.bound_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002669
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002670 if (i915_gem_object_has_active_reference(obj)) {
2671 i915_gem_object_clear_active_reference(obj);
2672 i915_gem_object_put(obj);
2673 }
Chris Wilsonc8725f32014-03-17 12:21:55 +00002674}
2675
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002676static bool i915_context_is_banned(const struct i915_gem_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002677{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002678 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002679
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002680 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002681 return true;
2682
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002683 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
Chris Wilson676fa572014-12-24 08:13:39 -08002684 if (ctx->hang_stats.ban_period_seconds &&
2685 elapsed <= ctx->hang_stats.ban_period_seconds) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002686 DRM_DEBUG("context hanging too fast, banning!\n");
2687 return true;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002688 }
2689
2690 return false;
2691}
2692
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002693static void i915_set_reset_status(struct i915_gem_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002694 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002695{
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002696 struct i915_ctx_hang_stats *hs = &ctx->hang_stats;
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002697
2698 if (guilty) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002699 hs->banned = i915_context_is_banned(ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002700 hs->batch_active++;
2701 hs->guilty_ts = get_seconds();
2702 } else {
2703 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002704 }
2705}
2706
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002707struct drm_i915_gem_request *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002708i915_gem_find_active_request(struct intel_engine_cs *engine)
Chris Wilson9375e442010-09-19 12:21:28 +01002709{
Chris Wilson4db080f2013-12-04 11:37:09 +00002710 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002711
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002712 /* We are called by the error capture and reset at a random
2713 * point in time. In particular, note that neither is crucially
2714 * ordered with an interrupt. After a hang, the GPU is dead and we
2715 * assume that no more writes can happen (we waited long enough for
2716 * all writes that were in transaction to be flushed) - adding an
2717 * extra delay for a recent interrupt is pointless. Hence, we do
2718 * not need an engine->irq_seqno_barrier() before the seqno reads.
2719 */
Chris Wilsonefdf7c02016-08-04 07:52:33 +01002720 list_for_each_entry(request, &engine->request_list, link) {
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002721 if (i915_gem_request_completed(request))
Chris Wilson4db080f2013-12-04 11:37:09 +00002722 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002723
Chris Wilson5590af32016-09-09 14:11:54 +01002724 if (!i915_sw_fence_done(&request->submit))
2725 break;
2726
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002727 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002728 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002729
2730 return NULL;
2731}
2732
Chris Wilson821ed7d2016-09-09 14:11:53 +01002733static void reset_request(struct drm_i915_gem_request *request)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002734{
Chris Wilson821ed7d2016-09-09 14:11:53 +01002735 void *vaddr = request->ring->vaddr;
2736 u32 head;
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002737
Chris Wilson821ed7d2016-09-09 14:11:53 +01002738 /* As this request likely depends on state from the lost
2739 * context, clear out all the user operations leaving the
2740 * breadcrumb at the end (so we get the fence notifications).
2741 */
2742 head = request->head;
2743 if (request->postfix < head) {
2744 memset(vaddr + head, 0, request->ring->size - head);
2745 head = 0;
2746 }
2747 memset(vaddr + head, 0, request->postfix - head);
Chris Wilson4db080f2013-12-04 11:37:09 +00002748}
2749
Chris Wilson821ed7d2016-09-09 14:11:53 +01002750static void i915_gem_reset_engine(struct intel_engine_cs *engine)
Chris Wilson4db080f2013-12-04 11:37:09 +00002751{
Chris Wilsondcff85c2016-08-05 10:14:11 +01002752 struct drm_i915_gem_request *request;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002753 struct i915_gem_context *incomplete_ctx;
2754 bool ring_hung;
Chris Wilson608c1a52015-09-03 13:01:40 +01002755
Chris Wilson821ed7d2016-09-09 14:11:53 +01002756 if (engine->irq_seqno_barrier)
2757 engine->irq_seqno_barrier(engine);
2758
2759 request = i915_gem_find_active_request(engine);
2760 if (!request)
2761 return;
2762
2763 ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
Chris Wilson77c60702016-10-04 21:11:29 +01002764 if (engine->hangcheck.seqno != intel_engine_get_seqno(engine))
2765 ring_hung = false;
2766
Chris Wilson821ed7d2016-09-09 14:11:53 +01002767 i915_set_reset_status(request->ctx, ring_hung);
2768 if (!ring_hung)
2769 return;
2770
2771 DRM_DEBUG_DRIVER("resetting %s to restart from tail of request 0x%x\n",
2772 engine->name, request->fence.seqno);
2773
2774 /* Setup the CS to resume from the breadcrumb of the hung request */
2775 engine->reset_hw(engine, request);
2776
2777 /* Users of the default context do not rely on logical state
2778 * preserved between batches. They have to emit full state on
2779 * every batch and so it is safe to execute queued requests following
2780 * the hang.
2781 *
2782 * Other contexts preserve state, now corrupt. We want to skip all
2783 * queued requests that reference the corrupt context.
2784 */
2785 incomplete_ctx = request->ctx;
2786 if (i915_gem_context_is_default(incomplete_ctx))
2787 return;
2788
2789 list_for_each_entry_continue(request, &engine->request_list, link)
2790 if (request->ctx == incomplete_ctx)
2791 reset_request(request);
2792}
2793
2794void i915_gem_reset(struct drm_i915_private *dev_priv)
2795{
2796 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302797 enum intel_engine_id id;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002798
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002799 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2800
Chris Wilson821ed7d2016-09-09 14:11:53 +01002801 i915_gem_retire_requests(dev_priv);
2802
Akash Goel3b3f1652016-10-13 22:44:48 +05302803 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002804 i915_gem_reset_engine(engine);
2805
2806 i915_gem_restore_fences(&dev_priv->drm);
Chris Wilsonf2a91d12016-09-21 14:51:06 +01002807
2808 if (dev_priv->gt.awake) {
2809 intel_sanitize_gt_powersave(dev_priv);
2810 intel_enable_gt_powersave(dev_priv);
2811 if (INTEL_GEN(dev_priv) >= 6)
2812 gen6_rps_busy(dev_priv);
2813 }
Chris Wilson821ed7d2016-09-09 14:11:53 +01002814}
2815
2816static void nop_submit_request(struct drm_i915_gem_request *request)
2817{
2818}
2819
2820static void i915_gem_cleanup_engine(struct intel_engine_cs *engine)
2821{
2822 engine->submit_request = nop_submit_request;
Chris Wilson70c2a242016-09-09 14:11:46 +01002823
Chris Wilsonc4b09302016-07-20 09:21:10 +01002824 /* Mark all pending requests as complete so that any concurrent
2825 * (lockless) lookup doesn't try and wait upon the request as we
2826 * reset it.
2827 */
Chris Wilson87b723a2016-08-09 08:37:02 +01002828 intel_engine_init_seqno(engine, engine->last_submitted_seqno);
Chris Wilsonc4b09302016-07-20 09:21:10 +01002829
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002830 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002831 * Clear the execlists queue up before freeing the requests, as those
2832 * are the ones that keep the context and ringbuffer backing objects
2833 * pinned in place.
2834 */
Oscar Mateodcb4c122014-11-13 10:28:10 +00002835
Tomas Elf7de1691a2015-10-19 16:32:32 +01002836 if (i915.enable_execlists) {
Chris Wilson70c2a242016-09-09 14:11:46 +01002837 spin_lock(&engine->execlist_lock);
2838 INIT_LIST_HEAD(&engine->execlist_queue);
2839 i915_gem_request_put(engine->execlist_port[0].request);
2840 i915_gem_request_put(engine->execlist_port[1].request);
2841 memset(engine->execlist_port, 0, sizeof(engine->execlist_port));
2842 spin_unlock(&engine->execlist_lock);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002843 }
2844
Chris Wilsonb913b332016-07-13 09:10:31 +01002845 engine->i915->gt.active_engines &= ~intel_engine_flag(engine);
Eric Anholt673a3942008-07-30 12:06:12 -07002846}
2847
Chris Wilson821ed7d2016-09-09 14:11:53 +01002848void i915_gem_set_wedged(struct drm_i915_private *dev_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002849{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002850 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302851 enum intel_engine_id id;
Eric Anholt673a3942008-07-30 12:06:12 -07002852
Chris Wilson821ed7d2016-09-09 14:11:53 +01002853 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2854 set_bit(I915_WEDGED, &dev_priv->gpu_error.flags);
Chris Wilson4db080f2013-12-04 11:37:09 +00002855
Chris Wilson821ed7d2016-09-09 14:11:53 +01002856 i915_gem_context_lost(dev_priv);
Akash Goel3b3f1652016-10-13 22:44:48 +05302857 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002858 i915_gem_cleanup_engine(engine);
Chris Wilsonb913b332016-07-13 09:10:31 +01002859 mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0);
Chris Wilsondfaae392010-09-22 10:31:52 +01002860
Chris Wilson821ed7d2016-09-09 14:11:53 +01002861 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002862}
2863
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002864static void
Eric Anholt673a3942008-07-30 12:06:12 -07002865i915_gem_retire_work_handler(struct work_struct *work)
2866{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002867 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002868 container_of(work, typeof(*dev_priv), gt.retire_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002869 struct drm_device *dev = &dev_priv->drm;
Eric Anholt673a3942008-07-30 12:06:12 -07002870
Chris Wilson891b48c2010-09-29 12:26:37 +01002871 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002872 if (mutex_trylock(&dev->struct_mutex)) {
Chris Wilson67d97da2016-07-04 08:08:31 +01002873 i915_gem_retire_requests(dev_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002874 mutex_unlock(&dev->struct_mutex);
2875 }
Chris Wilson67d97da2016-07-04 08:08:31 +01002876
2877 /* Keep the retire handler running until we are finally idle.
2878 * We do not need to do this test under locking as in the worst-case
2879 * we queue the retire worker once too often.
2880 */
Chris Wilsonc9615612016-07-09 10:12:06 +01002881 if (READ_ONCE(dev_priv->gt.awake)) {
2882 i915_queue_hangcheck(dev_priv);
Chris Wilson67d97da2016-07-04 08:08:31 +01002883 queue_delayed_work(dev_priv->wq,
2884 &dev_priv->gt.retire_work,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002885 round_jiffies_up_relative(HZ));
Chris Wilsonc9615612016-07-09 10:12:06 +01002886 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002887}
Chris Wilson891b48c2010-09-29 12:26:37 +01002888
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002889static void
2890i915_gem_idle_work_handler(struct work_struct *work)
2891{
2892 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002893 container_of(work, typeof(*dev_priv), gt.idle_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002894 struct drm_device *dev = &dev_priv->drm;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002895 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302896 enum intel_engine_id id;
Chris Wilson67d97da2016-07-04 08:08:31 +01002897 bool rearm_hangcheck;
2898
2899 if (!READ_ONCE(dev_priv->gt.awake))
2900 return;
2901
2902 if (READ_ONCE(dev_priv->gt.active_engines))
2903 return;
2904
2905 rearm_hangcheck =
2906 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
2907
2908 if (!mutex_trylock(&dev->struct_mutex)) {
2909 /* Currently busy, come back later */
2910 mod_delayed_work(dev_priv->wq,
2911 &dev_priv->gt.idle_work,
2912 msecs_to_jiffies(50));
2913 goto out_rearm;
2914 }
2915
2916 if (dev_priv->gt.active_engines)
2917 goto out_unlock;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002918
Akash Goel3b3f1652016-10-13 22:44:48 +05302919 for_each_engine(engine, dev_priv, id)
Chris Wilson67d97da2016-07-04 08:08:31 +01002920 i915_gem_batch_pool_fini(&engine->batch_pool);
Zou Nan hai852835f2010-05-21 09:08:56 +08002921
Chris Wilson67d97da2016-07-04 08:08:31 +01002922 GEM_BUG_ON(!dev_priv->gt.awake);
2923 dev_priv->gt.awake = false;
2924 rearm_hangcheck = false;
Daniel Vetter30ecad72015-12-09 09:29:36 +01002925
Chris Wilson67d97da2016-07-04 08:08:31 +01002926 if (INTEL_GEN(dev_priv) >= 6)
2927 gen6_rps_idle(dev_priv);
2928 intel_runtime_pm_put(dev_priv);
2929out_unlock:
2930 mutex_unlock(&dev->struct_mutex);
Chris Wilson35c94182015-04-07 16:20:37 +01002931
Chris Wilson67d97da2016-07-04 08:08:31 +01002932out_rearm:
2933 if (rearm_hangcheck) {
2934 GEM_BUG_ON(!dev_priv->gt.awake);
2935 i915_queue_hangcheck(dev_priv);
Chris Wilson35c94182015-04-07 16:20:37 +01002936 }
Eric Anholt673a3942008-07-30 12:06:12 -07002937}
2938
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002939void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
2940{
2941 struct drm_i915_gem_object *obj = to_intel_bo(gem);
2942 struct drm_i915_file_private *fpriv = file->driver_priv;
2943 struct i915_vma *vma, *vn;
2944
2945 mutex_lock(&obj->base.dev->struct_mutex);
2946 list_for_each_entry_safe(vma, vn, &obj->vma_list, obj_link)
2947 if (vma->vm->file == fpriv)
2948 i915_vma_close(vma);
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002949
2950 if (i915_gem_object_is_active(obj) &&
2951 !i915_gem_object_has_active_reference(obj)) {
2952 i915_gem_object_set_active_reference(obj);
2953 i915_gem_object_get(obj);
2954 }
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002955 mutex_unlock(&obj->base.dev->struct_mutex);
2956}
2957
Chris Wilsone95433c2016-10-28 13:58:27 +01002958static unsigned long to_wait_timeout(s64 timeout_ns)
2959{
2960 if (timeout_ns < 0)
2961 return MAX_SCHEDULE_TIMEOUT;
2962
2963 if (timeout_ns == 0)
2964 return 0;
2965
2966 return nsecs_to_jiffies_timeout(timeout_ns);
2967}
2968
Ben Widawsky5816d642012-04-11 11:18:19 -07002969/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002970 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002971 * @dev: drm device pointer
2972 * @data: ioctl data blob
2973 * @file: drm file pointer
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002974 *
2975 * Returns 0 if successful, else an error is returned with the remaining time in
2976 * the timeout parameter.
2977 * -ETIME: object is still busy after timeout
2978 * -ERESTARTSYS: signal interrupted the wait
2979 * -ENONENT: object doesn't exist
2980 * Also possible, but rare:
2981 * -EAGAIN: GPU wedged
2982 * -ENOMEM: damn
2983 * -ENODEV: Internal IRQ fail
2984 * -E?: The add request failed
2985 *
2986 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2987 * non-zero timeout parameter the wait ioctl will wait for the given number of
2988 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2989 * without holding struct_mutex the object may become re-busied before this
2990 * function completes. A similar but shorter * race condition exists in the busy
2991 * ioctl
2992 */
2993int
2994i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2995{
2996 struct drm_i915_gem_wait *args = data;
2997 struct drm_i915_gem_object *obj;
Chris Wilsone95433c2016-10-28 13:58:27 +01002998 ktime_t start;
2999 long ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003000
Daniel Vetter11b5d512014-09-29 15:31:26 +02003001 if (args->flags != 0)
3002 return -EINVAL;
3003
Chris Wilson03ac0642016-07-20 13:31:51 +01003004 obj = i915_gem_object_lookup(file, args->bo_handle);
Chris Wilson033d5492016-08-05 10:14:17 +01003005 if (!obj)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003006 return -ENOENT;
Chris Wilson033d5492016-08-05 10:14:17 +01003007
Chris Wilsone95433c2016-10-28 13:58:27 +01003008 start = ktime_get();
3009
3010 ret = i915_gem_object_wait(obj,
3011 I915_WAIT_INTERRUPTIBLE | I915_WAIT_ALL,
3012 to_wait_timeout(args->timeout_ns),
3013 to_rps_client(file));
3014
3015 if (args->timeout_ns > 0) {
3016 args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start));
3017 if (args->timeout_ns < 0)
3018 args->timeout_ns = 0;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003019 }
3020
Chris Wilson033d5492016-08-05 10:14:17 +01003021 i915_gem_object_put_unlocked(obj);
John Harrisonff865882014-11-24 18:49:28 +00003022 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003023}
3024
Chris Wilson8ef85612016-04-28 09:56:39 +01003025static void __i915_vma_iounmap(struct i915_vma *vma)
3026{
Chris Wilson20dfbde2016-08-04 16:32:30 +01003027 GEM_BUG_ON(i915_vma_is_pinned(vma));
Chris Wilson8ef85612016-04-28 09:56:39 +01003028
3029 if (vma->iomap == NULL)
3030 return;
3031
3032 io_mapping_unmap(vma->iomap);
3033 vma->iomap = NULL;
3034}
3035
Chris Wilsondf0e9a22016-08-04 07:52:47 +01003036int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003037{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003038 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003039 unsigned long active;
Chris Wilson43e28f02013-01-08 10:53:09 +00003040 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003041
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003042 lockdep_assert_held(&obj->base.dev->struct_mutex);
3043
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003044 /* First wait upon any activity as retiring the request may
3045 * have side-effects such as unpinning or even unbinding this vma.
3046 */
3047 active = i915_vma_get_active(vma);
Chris Wilsondf0e9a22016-08-04 07:52:47 +01003048 if (active) {
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003049 int idx;
3050
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003051 /* When a closed VMA is retired, it is unbound - eek.
3052 * In order to prevent it from being recursively closed,
3053 * take a pin on the vma so that the second unbind is
3054 * aborted.
3055 */
Chris Wilson20dfbde2016-08-04 16:32:30 +01003056 __i915_vma_pin(vma);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003057
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003058 for_each_active(active, idx) {
3059 ret = i915_gem_active_retire(&vma->last_read[idx],
3060 &vma->vm->dev->struct_mutex);
3061 if (ret)
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003062 break;
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003063 }
3064
Chris Wilson20dfbde2016-08-04 16:32:30 +01003065 __i915_vma_unpin(vma);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003066 if (ret)
3067 return ret;
3068
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003069 GEM_BUG_ON(i915_vma_is_active(vma));
3070 }
3071
Chris Wilson20dfbde2016-08-04 16:32:30 +01003072 if (i915_vma_is_pinned(vma))
Chris Wilsonb0decaf2016-08-04 07:52:44 +01003073 return -EBUSY;
3074
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003075 if (!drm_mm_node_allocated(&vma->node))
3076 goto destroy;
Ben Widawsky433544b2013-08-13 18:09:06 -07003077
Chris Wilson15717de2016-08-04 07:52:26 +01003078 GEM_BUG_ON(obj->bind_count == 0);
3079 GEM_BUG_ON(!obj->pages);
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003080
Chris Wilson05a20d02016-08-18 17:16:55 +01003081 if (i915_vma_is_map_and_fenceable(vma)) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003082 /* release the fence reg _after_ flushing */
Chris Wilson49ef5292016-08-18 17:17:00 +01003083 ret = i915_vma_put_fence(vma);
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003084 if (ret)
3085 return ret;
Chris Wilson8ef85612016-04-28 09:56:39 +01003086
Chris Wilsoncd3127d2016-08-18 17:17:09 +01003087 /* Force a pagefault for domain tracking on next user access */
3088 i915_gem_release_mmap(obj);
3089
Chris Wilson8ef85612016-04-28 09:56:39 +01003090 __i915_vma_iounmap(vma);
Chris Wilson05a20d02016-08-18 17:16:55 +01003091 vma->flags &= ~I915_VMA_CAN_FENCE;
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003092 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003093
Chris Wilson50e046b2016-08-04 07:52:46 +01003094 if (likely(!vma->vm->closed)) {
3095 trace_i915_vma_unbind(vma);
3096 vma->vm->unbind_vma(vma);
3097 }
Chris Wilson3272db52016-08-04 16:32:32 +01003098 vma->flags &= ~(I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND);
Ben Widawsky6f65e292013-12-06 14:10:56 -08003099
Chris Wilson50e046b2016-08-04 07:52:46 +01003100 drm_mm_remove_node(&vma->node);
3101 list_move_tail(&vma->vm_link, &vma->vm->unbound_list);
3102
Chris Wilson05a20d02016-08-18 17:16:55 +01003103 if (vma->pages != obj->pages) {
3104 GEM_BUG_ON(!vma->pages);
3105 sg_free_table(vma->pages);
3106 kfree(vma->pages);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003107 }
Chris Wilson247177d2016-08-15 10:48:47 +01003108 vma->pages = NULL;
Eric Anholt673a3942008-07-30 12:06:12 -07003109
Ben Widawsky2f633152013-07-17 12:19:03 -07003110 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003111 * no more VMAs exist. */
Chris Wilson15717de2016-08-04 07:52:26 +01003112 if (--obj->bind_count == 0)
3113 list_move_tail(&obj->global_list,
3114 &to_i915(obj->base.dev)->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003115
Chris Wilson70903c32013-12-04 09:59:09 +00003116 /* And finally now the object is completely decoupled from this vma,
3117 * we can drop its hold on the backing storage and allow it to be
3118 * reaped by the shrinker.
3119 */
3120 i915_gem_object_unpin_pages(obj);
3121
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003122destroy:
Chris Wilson3272db52016-08-04 16:32:32 +01003123 if (unlikely(i915_vma_is_closed(vma)))
Chris Wilsonb1f788c2016-08-04 07:52:45 +01003124 i915_vma_destroy(vma);
3125
Chris Wilson88241782011-01-07 17:09:48 +00003126 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003127}
3128
Chris Wilsondcff85c2016-08-05 10:14:11 +01003129int i915_gem_wait_for_idle(struct drm_i915_private *dev_priv,
Chris Wilsonea746f32016-09-09 14:11:49 +01003130 unsigned int flags)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003131{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003132 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05303133 enum intel_engine_id id;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003134 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003135
Akash Goel3b3f1652016-10-13 22:44:48 +05303136 for_each_engine(engine, dev_priv, id) {
Chris Wilson62e63002016-06-24 14:55:52 +01003137 if (engine->last_context == NULL)
3138 continue;
3139
Chris Wilsonea746f32016-09-09 14:11:49 +01003140 ret = intel_engine_idle(engine, flags);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003141 if (ret)
3142 return ret;
3143 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003144
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003145 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003146}
3147
Chris Wilson4144f9b2014-09-11 08:43:48 +01003148static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003149 unsigned long cache_level)
3150{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003151 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003152 struct drm_mm_node *other;
3153
Chris Wilson4144f9b2014-09-11 08:43:48 +01003154 /*
3155 * On some machines we have to be careful when putting differing types
3156 * of snoopable memory together to avoid the prefetcher crossing memory
3157 * domains and dying. During vm initialisation, we decide whether or not
3158 * these constraints apply and set the drm_mm.color_adjust
3159 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003160 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003161 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003162 return true;
3163
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003164 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003165 return true;
3166
3167 if (list_empty(&gtt_space->node_list))
3168 return true;
3169
3170 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3171 if (other->allocated && !other->hole_follows && other->color != cache_level)
3172 return false;
3173
3174 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3175 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3176 return false;
3177
3178 return true;
3179}
3180
Jesse Barnesde151cf2008-11-12 10:03:55 -08003181/**
Chris Wilson59bfa122016-08-04 16:32:31 +01003182 * i915_vma_insert - finds a slot for the vma in its address space
3183 * @vma: the vma
Chris Wilson91b2db62016-08-04 16:32:23 +01003184 * @size: requested size in bytes (can be larger than the VMA)
Chris Wilson59bfa122016-08-04 16:32:31 +01003185 * @alignment: required alignment
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003186 * @flags: mask of PIN_* flags to use
Chris Wilson59bfa122016-08-04 16:32:31 +01003187 *
3188 * First we try to allocate some free space that meets the requirements for
3189 * the VMA. Failiing that, if the flags permit, it will evict an old VMA,
3190 * preferrably the oldest idle entry to make room for the new VMA.
3191 *
3192 * Returns:
3193 * 0 on success, negative error code otherwise.
Eric Anholt673a3942008-07-30 12:06:12 -07003194 */
Chris Wilson59bfa122016-08-04 16:32:31 +01003195static int
3196i915_vma_insert(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003197{
Chris Wilson59bfa122016-08-04 16:32:31 +01003198 struct drm_i915_private *dev_priv = to_i915(vma->vm->dev);
3199 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsonde180032016-08-04 16:32:29 +01003200 u64 start, end;
Chris Wilson07f73f62009-09-14 16:50:30 +01003201 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003202
Chris Wilson3272db52016-08-04 16:32:32 +01003203 GEM_BUG_ON(vma->flags & (I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND));
Chris Wilson59bfa122016-08-04 16:32:31 +01003204 GEM_BUG_ON(drm_mm_node_allocated(&vma->node));
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003205
Chris Wilsonde180032016-08-04 16:32:29 +01003206 size = max(size, vma->size);
3207 if (flags & PIN_MAPPABLE)
Chris Wilson3e510a82016-08-05 10:14:23 +01003208 size = i915_gem_get_ggtt_size(dev_priv, size,
3209 i915_gem_object_get_tiling(obj));
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003210
Chris Wilsond8923dc2016-08-18 17:17:07 +01003211 alignment = max(max(alignment, vma->display_alignment),
3212 i915_gem_get_ggtt_alignment(dev_priv, size,
3213 i915_gem_object_get_tiling(obj),
3214 flags & PIN_MAPPABLE));
Chris Wilsona00b10c2010-09-24 21:15:47 +01003215
Michel Thierry101b5062015-10-01 13:33:57 +01003216 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
Chris Wilsonde180032016-08-04 16:32:29 +01003217
3218 end = vma->vm->total;
Michel Thierry101b5062015-10-01 13:33:57 +01003219 if (flags & PIN_MAPPABLE)
Chris Wilson91b2db62016-08-04 16:32:23 +01003220 end = min_t(u64, end, dev_priv->ggtt.mappable_end);
Michel Thierry101b5062015-10-01 13:33:57 +01003221 if (flags & PIN_ZONE_4G)
Michel Thierry48ea1e32016-01-11 11:39:27 +00003222 end = min_t(u64, end, (1ULL << 32) - PAGE_SIZE);
Michel Thierry101b5062015-10-01 13:33:57 +01003223
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003224 /* If binding the object/GGTT view requires more space than the entire
3225 * aperture has, reject it early before evicting everything in a vain
3226 * attempt to find space.
Chris Wilson654fc602010-05-27 13:18:21 +01003227 */
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003228 if (size > end) {
Chris Wilsonde180032016-08-04 16:32:29 +01003229 DRM_DEBUG("Attempting to bind an object larger than the aperture: request=%llu [object=%zd] > %s aperture=%llu\n",
Chris Wilson91b2db62016-08-04 16:32:23 +01003230 size, obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003231 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003232 end);
Chris Wilson59bfa122016-08-04 16:32:31 +01003233 return -E2BIG;
Chris Wilson654fc602010-05-27 13:18:21 +01003234 }
3235
Chris Wilson37e680a2012-06-07 15:38:42 +01003236 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003237 if (ret)
Chris Wilson59bfa122016-08-04 16:32:31 +01003238 return ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02003239
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003240 i915_gem_object_pin_pages(obj);
3241
Chris Wilson506a8e82015-12-08 11:55:07 +00003242 if (flags & PIN_OFFSET_FIXED) {
Chris Wilson59bfa122016-08-04 16:32:31 +01003243 u64 offset = flags & PIN_OFFSET_MASK;
Chris Wilsonde180032016-08-04 16:32:29 +01003244 if (offset & (alignment - 1) || offset > end - size) {
Chris Wilson506a8e82015-12-08 11:55:07 +00003245 ret = -EINVAL;
Chris Wilsonde180032016-08-04 16:32:29 +01003246 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003247 }
Chris Wilsonde180032016-08-04 16:32:29 +01003248
Chris Wilson506a8e82015-12-08 11:55:07 +00003249 vma->node.start = offset;
3250 vma->node.size = size;
3251 vma->node.color = obj->cache_level;
Chris Wilsonde180032016-08-04 16:32:29 +01003252 ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node);
Chris Wilson506a8e82015-12-08 11:55:07 +00003253 if (ret) {
3254 ret = i915_gem_evict_for_vma(vma);
3255 if (ret == 0)
Chris Wilsonde180032016-08-04 16:32:29 +01003256 ret = drm_mm_reserve_node(&vma->vm->mm, &vma->node);
3257 if (ret)
3258 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003259 }
Michel Thierry101b5062015-10-01 13:33:57 +01003260 } else {
Chris Wilsonde180032016-08-04 16:32:29 +01003261 u32 search_flag, alloc_flag;
3262
Chris Wilson506a8e82015-12-08 11:55:07 +00003263 if (flags & PIN_HIGH) {
3264 search_flag = DRM_MM_SEARCH_BELOW;
3265 alloc_flag = DRM_MM_CREATE_TOP;
3266 } else {
3267 search_flag = DRM_MM_SEARCH_DEFAULT;
3268 alloc_flag = DRM_MM_CREATE_DEFAULT;
3269 }
Michel Thierry101b5062015-10-01 13:33:57 +01003270
Chris Wilson954c4692016-08-04 16:32:26 +01003271 /* We only allocate in PAGE_SIZE/GTT_PAGE_SIZE (4096) chunks,
3272 * so we know that we always have a minimum alignment of 4096.
3273 * The drm_mm range manager is optimised to return results
3274 * with zero alignment, so where possible use the optimal
3275 * path.
3276 */
3277 if (alignment <= 4096)
3278 alignment = 0;
3279
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003280search_free:
Chris Wilsonde180032016-08-04 16:32:29 +01003281 ret = drm_mm_insert_node_in_range_generic(&vma->vm->mm,
3282 &vma->node,
Chris Wilson506a8e82015-12-08 11:55:07 +00003283 size, alignment,
3284 obj->cache_level,
3285 start, end,
3286 search_flag,
3287 alloc_flag);
3288 if (ret) {
Chris Wilsonde180032016-08-04 16:32:29 +01003289 ret = i915_gem_evict_something(vma->vm, size, alignment,
Chris Wilson506a8e82015-12-08 11:55:07 +00003290 obj->cache_level,
3291 start, end,
3292 flags);
3293 if (ret == 0)
3294 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003295
Chris Wilsonde180032016-08-04 16:32:29 +01003296 goto err_unpin;
Chris Wilson506a8e82015-12-08 11:55:07 +00003297 }
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003298
3299 GEM_BUG_ON(vma->node.start < start);
3300 GEM_BUG_ON(vma->node.start + vma->node.size > end);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003301 }
Chris Wilson37508582016-08-04 16:32:24 +01003302 GEM_BUG_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level));
Eric Anholt673a3942008-07-30 12:06:12 -07003303
Ben Widawsky35c20a62013-05-31 11:28:48 -07003304 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilsonde180032016-08-04 16:32:29 +01003305 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
Chris Wilson15717de2016-08-04 07:52:26 +01003306 obj->bind_count++;
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003307
Chris Wilson59bfa122016-08-04 16:32:31 +01003308 return 0;
Ben Widawsky2f633152013-07-17 12:19:03 -07003309
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003310err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003311 i915_gem_object_unpin_pages(obj);
Chris Wilson59bfa122016-08-04 16:32:31 +01003312 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003313}
3314
Chris Wilson000433b2013-08-08 14:41:09 +01003315bool
Chris Wilson2c225692013-08-09 12:26:45 +01003316i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3317 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003318{
Eric Anholt673a3942008-07-30 12:06:12 -07003319 /* If we don't have a page list set up, then we're not pinned
3320 * to GPU, and we can ignore the cache flush because it'll happen
3321 * again at bind time.
3322 */
Chris Wilson05394f32010-11-08 19:18:58 +00003323 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003324 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003325
Imre Deak769ce462013-02-13 21:56:05 +02003326 /*
3327 * Stolen memory is always coherent with the GPU as it is explicitly
3328 * marked as wc by the system, or the system is cache-coherent.
3329 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003330 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003331 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003332
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003333 /* If the GPU is snooping the contents of the CPU cache,
3334 * we do not need to manually clear the CPU cache lines. However,
3335 * the caches are only snooped when the render cache is
3336 * flushed/invalidated. As we always have to emit invalidations
3337 * and flushes when moving into and out of the RENDER domain, correct
3338 * snooping behaviour occurs naturally as the result of our domain
3339 * tracking.
3340 */
Chris Wilson0f719792015-01-13 13:32:52 +00003341 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3342 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003343 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003344 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003345
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003346 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003347 drm_clflush_sg(obj->pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003348 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003349
3350 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003351}
3352
3353/** Flushes the GTT write domain for the object if it's dirty. */
3354static void
Chris Wilson05394f32010-11-08 19:18:58 +00003355i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003356{
Chris Wilson3b5724d2016-08-18 17:16:49 +01003357 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003358
Chris Wilson05394f32010-11-08 19:18:58 +00003359 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003360 return;
3361
Chris Wilson63256ec2011-01-04 18:42:07 +00003362 /* No actual flushing is required for the GTT write domain. Writes
Chris Wilson3b5724d2016-08-18 17:16:49 +01003363 * to it "immediately" go to main memory as far as we know, so there's
Eric Anholte47c68e2008-11-14 13:35:19 -08003364 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003365 *
3366 * However, we do have to enforce the order so that all writes through
3367 * the GTT land before any writes to the device, such as updates to
3368 * the GATT itself.
Chris Wilson3b5724d2016-08-18 17:16:49 +01003369 *
3370 * We also have to wait a bit for the writes to land from the GTT.
3371 * An uncached read (i.e. mmio) seems to be ideal for the round-trip
3372 * timing. This issue has only been observed when switching quickly
3373 * between GTT writes and CPU reads from inside the kernel on recent hw,
3374 * and it appears to only affect discrete GTT blocks (i.e. on LLC
3375 * system agents we cannot reproduce this behaviour).
Eric Anholte47c68e2008-11-14 13:35:19 -08003376 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003377 wmb();
Chris Wilson3b5724d2016-08-18 17:16:49 +01003378 if (INTEL_GEN(dev_priv) >= 6 && !HAS_LLC(dev_priv))
Akash Goel3b3f1652016-10-13 22:44:48 +05303379 POSTING_READ(RING_ACTHD(dev_priv->engine[RCS]->mmio_base));
Chris Wilson63256ec2011-01-04 18:42:07 +00003380
Chris Wilsond243ad82016-08-18 17:16:44 +01003381 intel_fb_obj_flush(obj, false, write_origin(obj, I915_GEM_DOMAIN_GTT));
Daniel Vetterf99d7062014-06-19 16:01:59 +02003382
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003383 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003384 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003385 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003386 I915_GEM_DOMAIN_GTT);
Eric Anholte47c68e2008-11-14 13:35:19 -08003387}
3388
3389/** Flushes the CPU write domain for the object if it's dirty. */
3390static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003391i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003392{
Chris Wilson05394f32010-11-08 19:18:58 +00003393 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003394 return;
3395
Daniel Vettere62b59e2015-01-21 14:53:48 +01003396 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilsonc0336662016-05-06 15:40:21 +01003397 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilson000433b2013-08-08 14:41:09 +01003398
Rodrigo Vivide152b62015-07-07 16:28:51 -07003399 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003400
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003401 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003402 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003403 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003404 I915_GEM_DOMAIN_CPU);
Eric Anholte47c68e2008-11-14 13:35:19 -08003405}
3406
Chris Wilson383d5822016-08-18 17:17:08 +01003407static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj)
3408{
3409 struct i915_vma *vma;
3410
3411 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3412 if (!i915_vma_is_ggtt(vma))
3413 continue;
3414
3415 if (i915_vma_is_active(vma))
3416 continue;
3417
3418 if (!drm_mm_node_allocated(&vma->node))
3419 continue;
3420
3421 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3422 }
3423}
3424
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003425/**
3426 * Moves a single object to the GTT read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003427 * @obj: object to act on
3428 * @write: ask for write access or read only
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003429 *
3430 * This function returns when the move is complete, including waiting on
3431 * flushes to occur.
3432 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003433int
Chris Wilson20217462010-11-23 15:26:33 +00003434i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003435{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003436 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003437 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003438
Chris Wilsone95433c2016-10-28 13:58:27 +01003439 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003440
Chris Wilsone95433c2016-10-28 13:58:27 +01003441 ret = i915_gem_object_wait(obj,
3442 I915_WAIT_INTERRUPTIBLE |
3443 I915_WAIT_LOCKED |
3444 (write ? I915_WAIT_ALL : 0),
3445 MAX_SCHEDULE_TIMEOUT,
3446 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003447 if (ret)
3448 return ret;
3449
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003450 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3451 return 0;
3452
Chris Wilson43566de2015-01-02 16:29:29 +05303453 /* Flush and acquire obj->pages so that we are coherent through
3454 * direct access in memory with previous cached writes through
3455 * shmemfs and that our cache domain tracking remains valid.
3456 * For example, if the obj->filp was moved to swap without us
3457 * being notified and releasing the pages, we would mistakenly
3458 * continue to assume that the obj remained out of the CPU cached
3459 * domain.
3460 */
3461 ret = i915_gem_object_get_pages(obj);
3462 if (ret)
3463 return ret;
3464
Daniel Vettere62b59e2015-01-21 14:53:48 +01003465 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003466
Chris Wilsond0a57782012-10-09 19:24:37 +01003467 /* Serialise direct access to this object with the barriers for
3468 * coherent writes from the GPU, by effectively invalidating the
3469 * GTT domain upon first access.
3470 */
3471 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3472 mb();
3473
Chris Wilson05394f32010-11-08 19:18:58 +00003474 old_write_domain = obj->base.write_domain;
3475 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003476
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003477 /* It should now be out of any other write domains, and we can update
3478 * the domain values for our changes.
3479 */
Chris Wilson05394f32010-11-08 19:18:58 +00003480 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3481 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003482 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003483 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3484 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3485 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003486 }
3487
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003488 trace_i915_gem_object_change_domain(obj,
3489 old_read_domains,
3490 old_write_domain);
3491
Chris Wilson8325a092012-04-24 15:52:35 +01003492 /* And bump the LRU for this access */
Chris Wilson383d5822016-08-18 17:17:08 +01003493 i915_gem_object_bump_inactive_ggtt(obj);
Chris Wilson8325a092012-04-24 15:52:35 +01003494
Eric Anholte47c68e2008-11-14 13:35:19 -08003495 return 0;
3496}
3497
Chris Wilsonef55f922015-10-09 14:11:27 +01003498/**
3499 * Changes the cache-level of an object across all VMA.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003500 * @obj: object to act on
3501 * @cache_level: new cache level to set for the object
Chris Wilsonef55f922015-10-09 14:11:27 +01003502 *
3503 * After this function returns, the object will be in the new cache-level
3504 * across all GTT and the contents of the backing storage will be coherent,
3505 * with respect to the new cache-level. In order to keep the backing storage
3506 * coherent for all users, we only allow a single cache level to be set
3507 * globally on the object and prevent it from being changed whilst the
3508 * hardware is reading from the object. That is if the object is currently
3509 * on the scanout it will be set to uncached (or equivalent display
3510 * cache coherency) and all non-MOCS GPU access will also be uncached so
3511 * that all direct access to the scanout remains coherent.
3512 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003513int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3514 enum i915_cache_level cache_level)
3515{
Chris Wilsonaa653a62016-08-04 07:52:27 +01003516 struct i915_vma *vma;
Ville Syrjäläed75a552015-08-11 19:47:10 +03003517 int ret = 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003518
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003519 lockdep_assert_held(&obj->base.dev->struct_mutex);
3520
Chris Wilsone4ffd172011-04-04 09:44:39 +01003521 if (obj->cache_level == cache_level)
Ville Syrjäläed75a552015-08-11 19:47:10 +03003522 goto out;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003523
Chris Wilsonef55f922015-10-09 14:11:27 +01003524 /* Inspect the list of currently bound VMA and unbind any that would
3525 * be invalid given the new cache-level. This is principally to
3526 * catch the issue of the CS prefetch crossing page boundaries and
3527 * reading an invalid PTE on older architectures.
3528 */
Chris Wilsonaa653a62016-08-04 07:52:27 +01003529restart:
3530 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003531 if (!drm_mm_node_allocated(&vma->node))
3532 continue;
3533
Chris Wilson20dfbde2016-08-04 16:32:30 +01003534 if (i915_vma_is_pinned(vma)) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003535 DRM_DEBUG("can not change the cache level of pinned objects\n");
3536 return -EBUSY;
3537 }
3538
Chris Wilsonaa653a62016-08-04 07:52:27 +01003539 if (i915_gem_valid_gtt_space(vma, cache_level))
3540 continue;
3541
3542 ret = i915_vma_unbind(vma);
3543 if (ret)
3544 return ret;
3545
3546 /* As unbinding may affect other elements in the
3547 * obj->vma_list (due to side-effects from retiring
3548 * an active vma), play safe and restart the iterator.
3549 */
3550 goto restart;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003551 }
3552
Chris Wilsonef55f922015-10-09 14:11:27 +01003553 /* We can reuse the existing drm_mm nodes but need to change the
3554 * cache-level on the PTE. We could simply unbind them all and
3555 * rebind with the correct cache-level on next use. However since
3556 * we already have a valid slot, dma mapping, pages etc, we may as
3557 * rewrite the PTE in the belief that doing so tramples upon less
3558 * state and so involves less work.
3559 */
Chris Wilson15717de2016-08-04 07:52:26 +01003560 if (obj->bind_count) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003561 /* Before we change the PTE, the GPU must not be accessing it.
3562 * If we wait upon the object, we know that all the bound
3563 * VMA are no longer active.
3564 */
Chris Wilsone95433c2016-10-28 13:58:27 +01003565 ret = i915_gem_object_wait(obj,
3566 I915_WAIT_INTERRUPTIBLE |
3567 I915_WAIT_LOCKED |
3568 I915_WAIT_ALL,
3569 MAX_SCHEDULE_TIMEOUT,
3570 NULL);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003571 if (ret)
3572 return ret;
3573
Chris Wilsonaa653a62016-08-04 07:52:27 +01003574 if (!HAS_LLC(obj->base.dev) && cache_level != I915_CACHE_NONE) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003575 /* Access to snoopable pages through the GTT is
3576 * incoherent and on some machines causes a hard
3577 * lockup. Relinquish the CPU mmaping to force
3578 * userspace to refault in the pages and we can
3579 * then double check if the GTT mapping is still
3580 * valid for that pointer access.
3581 */
3582 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003583
Chris Wilsonef55f922015-10-09 14:11:27 +01003584 /* As we no longer need a fence for GTT access,
3585 * we can relinquish it now (and so prevent having
3586 * to steal a fence from someone else on the next
3587 * fence request). Note GPU activity would have
3588 * dropped the fence as all snoopable access is
3589 * supposed to be linear.
3590 */
Chris Wilson49ef5292016-08-18 17:17:00 +01003591 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3592 ret = i915_vma_put_fence(vma);
3593 if (ret)
3594 return ret;
3595 }
Chris Wilsonef55f922015-10-09 14:11:27 +01003596 } else {
3597 /* We either have incoherent backing store and
3598 * so no GTT access or the architecture is fully
3599 * coherent. In such cases, existing GTT mmaps
3600 * ignore the cache bit in the PTE and we can
3601 * rewrite it without confusing the GPU or having
3602 * to force userspace to fault back in its mmaps.
3603 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003604 }
3605
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003606 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003607 if (!drm_mm_node_allocated(&vma->node))
3608 continue;
3609
3610 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3611 if (ret)
3612 return ret;
3613 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003614 }
3615
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003616 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003617 vma->node.color = cache_level;
3618 obj->cache_level = cache_level;
3619
Ville Syrjäläed75a552015-08-11 19:47:10 +03003620out:
Chris Wilsonef55f922015-10-09 14:11:27 +01003621 /* Flush the dirty CPU caches to the backing storage so that the
3622 * object is now coherent at its new cache level (with respect
3623 * to the access domain).
3624 */
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05303625 if (obj->cache_dirty && cpu_write_needs_clflush(obj)) {
Chris Wilson0f719792015-01-13 13:32:52 +00003626 if (i915_gem_clflush_object(obj, true))
Chris Wilsonc0336662016-05-06 15:40:21 +01003627 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilsone4ffd172011-04-04 09:44:39 +01003628 }
3629
Chris Wilsone4ffd172011-04-04 09:44:39 +01003630 return 0;
3631}
3632
Ben Widawsky199adf42012-09-21 17:01:20 -07003633int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3634 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003635{
Ben Widawsky199adf42012-09-21 17:01:20 -07003636 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003637 struct drm_i915_gem_object *obj;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003638
Chris Wilson03ac0642016-07-20 13:31:51 +01003639 obj = i915_gem_object_lookup(file, args->handle);
3640 if (!obj)
Chris Wilson432be692015-05-07 12:14:55 +01003641 return -ENOENT;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003642
Chris Wilson651d7942013-08-08 14:41:10 +01003643 switch (obj->cache_level) {
3644 case I915_CACHE_LLC:
3645 case I915_CACHE_L3_LLC:
3646 args->caching = I915_CACHING_CACHED;
3647 break;
3648
Chris Wilson4257d3b2013-08-08 14:41:11 +01003649 case I915_CACHE_WT:
3650 args->caching = I915_CACHING_DISPLAY;
3651 break;
3652
Chris Wilson651d7942013-08-08 14:41:10 +01003653 default:
3654 args->caching = I915_CACHING_NONE;
3655 break;
3656 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003657
Chris Wilson34911fd2016-07-20 13:31:54 +01003658 i915_gem_object_put_unlocked(obj);
Chris Wilson432be692015-05-07 12:14:55 +01003659 return 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003660}
3661
Ben Widawsky199adf42012-09-21 17:01:20 -07003662int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3663 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003664{
Chris Wilson9c870d02016-10-24 13:42:15 +01003665 struct drm_i915_private *i915 = to_i915(dev);
Ben Widawsky199adf42012-09-21 17:01:20 -07003666 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003667 struct drm_i915_gem_object *obj;
3668 enum i915_cache_level level;
3669 int ret;
3670
Ben Widawsky199adf42012-09-21 17:01:20 -07003671 switch (args->caching) {
3672 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003673 level = I915_CACHE_NONE;
3674 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003675 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003676 /*
3677 * Due to a HW issue on BXT A stepping, GPU stores via a
3678 * snooped mapping may leave stale data in a corresponding CPU
3679 * cacheline, whereas normally such cachelines would get
3680 * invalidated.
3681 */
Chris Wilson9c870d02016-10-24 13:42:15 +01003682 if (!HAS_LLC(i915) && !HAS_SNOOP(i915))
Imre Deake5756c12015-08-14 18:43:30 +03003683 return -ENODEV;
3684
Chris Wilsone6994ae2012-07-10 10:27:08 +01003685 level = I915_CACHE_LLC;
3686 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003687 case I915_CACHING_DISPLAY:
Chris Wilson9c870d02016-10-24 13:42:15 +01003688 level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003689 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003690 default:
3691 return -EINVAL;
3692 }
3693
Ben Widawsky3bc29132012-09-26 16:15:20 -07003694 ret = i915_mutex_lock_interruptible(dev);
3695 if (ret)
Chris Wilson9c870d02016-10-24 13:42:15 +01003696 return ret;
Ben Widawsky3bc29132012-09-26 16:15:20 -07003697
Chris Wilson03ac0642016-07-20 13:31:51 +01003698 obj = i915_gem_object_lookup(file, args->handle);
3699 if (!obj) {
Chris Wilsone6994ae2012-07-10 10:27:08 +01003700 ret = -ENOENT;
3701 goto unlock;
3702 }
3703
3704 ret = i915_gem_object_set_cache_level(obj, level);
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003705 i915_gem_object_put(obj);
Chris Wilsone6994ae2012-07-10 10:27:08 +01003706unlock:
3707 mutex_unlock(&dev->struct_mutex);
3708 return ret;
3709}
3710
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003711/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003712 * Prepare buffer for display plane (scanout, cursors, etc).
3713 * Can be called from an uninterruptible phase (modesetting) and allows
3714 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003715 */
Chris Wilson058d88c2016-08-15 10:49:06 +01003716struct i915_vma *
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003717i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3718 u32 alignment,
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003719 const struct i915_ggtt_view *view)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003720{
Chris Wilson058d88c2016-08-15 10:49:06 +01003721 struct i915_vma *vma;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003722 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003723 int ret;
3724
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003725 lockdep_assert_held(&obj->base.dev->struct_mutex);
3726
Chris Wilsoncc98b412013-08-09 12:25:09 +01003727 /* Mark the pin_display early so that we account for the
3728 * display coherency whilst setting up the cache domains.
3729 */
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003730 obj->pin_display++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003731
Eric Anholta7ef0642011-03-29 16:59:54 -07003732 /* The display engine is not coherent with the LLC cache on gen6. As
3733 * a result, we make sure that the pinning that is about to occur is
3734 * done with uncached PTEs. This is lowest common denominator for all
3735 * chipsets.
3736 *
3737 * However for gen6+, we could do better by using the GFDT bit instead
3738 * of uncaching, which would allow us to flush all the LLC-cached data
3739 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3740 */
Chris Wilson651d7942013-08-08 14:41:10 +01003741 ret = i915_gem_object_set_cache_level(obj,
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003742 HAS_WT(to_i915(obj->base.dev)) ?
3743 I915_CACHE_WT : I915_CACHE_NONE);
Chris Wilson058d88c2016-08-15 10:49:06 +01003744 if (ret) {
3745 vma = ERR_PTR(ret);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003746 goto err_unpin_display;
Chris Wilson058d88c2016-08-15 10:49:06 +01003747 }
Eric Anholta7ef0642011-03-29 16:59:54 -07003748
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003749 /* As the user may map the buffer once pinned in the display plane
3750 * (e.g. libkms for the bootup splash), we have to ensure that we
Chris Wilson2efb8132016-08-18 17:17:06 +01003751 * always use map_and_fenceable for all scanout buffers. However,
3752 * it may simply be too big to fit into mappable, in which case
3753 * put it anyway and hope that userspace can cope (but always first
3754 * try to preserve the existing ABI).
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003755 */
Chris Wilson2efb8132016-08-18 17:17:06 +01003756 vma = ERR_PTR(-ENOSPC);
3757 if (view->type == I915_GGTT_VIEW_NORMAL)
3758 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment,
3759 PIN_MAPPABLE | PIN_NONBLOCK);
3760 if (IS_ERR(vma))
3761 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, 0);
Chris Wilson058d88c2016-08-15 10:49:06 +01003762 if (IS_ERR(vma))
Chris Wilsoncc98b412013-08-09 12:25:09 +01003763 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003764
Chris Wilsond8923dc2016-08-18 17:17:07 +01003765 vma->display_alignment = max_t(u64, vma->display_alignment, alignment);
3766
Daniel Vettere62b59e2015-01-21 14:53:48 +01003767 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003768
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003769 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003770 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003771
3772 /* It should now be out of any other write domains, and we can update
3773 * the domain values for our changes.
3774 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003775 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003776 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003777
3778 trace_i915_gem_object_change_domain(obj,
3779 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003780 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003781
Chris Wilson058d88c2016-08-15 10:49:06 +01003782 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003783
3784err_unpin_display:
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003785 obj->pin_display--;
Chris Wilson058d88c2016-08-15 10:49:06 +01003786 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003787}
3788
3789void
Chris Wilson058d88c2016-08-15 10:49:06 +01003790i915_gem_object_unpin_from_display_plane(struct i915_vma *vma)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003791{
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003792 lockdep_assert_held(&vma->vm->dev->struct_mutex);
3793
Chris Wilson058d88c2016-08-15 10:49:06 +01003794 if (WARN_ON(vma->obj->pin_display == 0))
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003795 return;
3796
Chris Wilsond8923dc2016-08-18 17:17:07 +01003797 if (--vma->obj->pin_display == 0)
3798 vma->display_alignment = 0;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003799
Chris Wilson383d5822016-08-18 17:17:08 +01003800 /* Bump the LRU to try and avoid premature eviction whilst flipping */
3801 if (!i915_vma_is_active(vma))
3802 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3803
Chris Wilson058d88c2016-08-15 10:49:06 +01003804 i915_vma_unpin(vma);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003805}
3806
Eric Anholte47c68e2008-11-14 13:35:19 -08003807/**
3808 * Moves a single object to the CPU read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003809 * @obj: object to act on
3810 * @write: requesting write or read-only access
Eric Anholte47c68e2008-11-14 13:35:19 -08003811 *
3812 * This function returns when the move is complete, including waiting on
3813 * flushes to occur.
3814 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003815int
Chris Wilson919926a2010-11-12 13:42:53 +00003816i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003817{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003818 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003819 int ret;
3820
Chris Wilsone95433c2016-10-28 13:58:27 +01003821 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003822
Chris Wilsone95433c2016-10-28 13:58:27 +01003823 ret = i915_gem_object_wait(obj,
3824 I915_WAIT_INTERRUPTIBLE |
3825 I915_WAIT_LOCKED |
3826 (write ? I915_WAIT_ALL : 0),
3827 MAX_SCHEDULE_TIMEOUT,
3828 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003829 if (ret)
3830 return ret;
3831
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003832 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3833 return 0;
3834
Eric Anholte47c68e2008-11-14 13:35:19 -08003835 i915_gem_object_flush_gtt_write_domain(obj);
3836
Chris Wilson05394f32010-11-08 19:18:58 +00003837 old_write_domain = obj->base.write_domain;
3838 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003839
Eric Anholte47c68e2008-11-14 13:35:19 -08003840 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003841 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003842 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003843
Chris Wilson05394f32010-11-08 19:18:58 +00003844 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003845 }
3846
3847 /* It should now be out of any other write domains, and we can update
3848 * the domain values for our changes.
3849 */
Chris Wilson05394f32010-11-08 19:18:58 +00003850 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003851
3852 /* If we're writing through the CPU, then the GPU read domains will
3853 * need to be invalidated at next use.
3854 */
3855 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003856 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3857 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003858 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003859
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003860 trace_i915_gem_object_change_domain(obj,
3861 old_read_domains,
3862 old_write_domain);
3863
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003864 return 0;
3865}
3866
Eric Anholt673a3942008-07-30 12:06:12 -07003867/* Throttle our rendering by waiting until the ring has completed our requests
3868 * emitted over 20 msec ago.
3869 *
Eric Anholtb9624422009-06-03 07:27:35 +00003870 * Note that if we were to use the current jiffies each time around the loop,
3871 * we wouldn't escape the function with any frames outstanding if the time to
3872 * render a frame was over 20ms.
3873 *
Eric Anholt673a3942008-07-30 12:06:12 -07003874 * This should get us reasonable parallelism between CPU and GPU but also
3875 * relatively low latency when blocking on a particular request to finish.
3876 */
3877static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003878i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003879{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003880 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003881 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01003882 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
John Harrison54fb2412014-11-24 18:49:27 +00003883 struct drm_i915_gem_request *request, *target = NULL;
Chris Wilsone95433c2016-10-28 13:58:27 +01003884 long ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003885
Chris Wilsonf4457ae2016-04-13 17:35:08 +01003886 /* ABI: return -EIO if already wedged */
3887 if (i915_terminally_wedged(&dev_priv->gpu_error))
3888 return -EIO;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003889
Chris Wilson1c255952010-09-26 11:03:27 +01003890 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003891 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003892 if (time_after_eq(request->emitted_jiffies, recent_enough))
3893 break;
3894
John Harrisonfcfa423c2015-05-29 17:44:12 +01003895 /*
3896 * Note that the request might not have been submitted yet.
3897 * In which case emitted_jiffies will be zero.
3898 */
3899 if (!request->emitted_jiffies)
3900 continue;
3901
John Harrison54fb2412014-11-24 18:49:27 +00003902 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00003903 }
John Harrisonff865882014-11-24 18:49:28 +00003904 if (target)
Chris Wilsone8a261e2016-07-20 13:31:49 +01003905 i915_gem_request_get(target);
Chris Wilson1c255952010-09-26 11:03:27 +01003906 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003907
John Harrison54fb2412014-11-24 18:49:27 +00003908 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003909 return 0;
3910
Chris Wilsone95433c2016-10-28 13:58:27 +01003911 ret = i915_wait_request(target,
3912 I915_WAIT_INTERRUPTIBLE,
3913 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone8a261e2016-07-20 13:31:49 +01003914 i915_gem_request_put(target);
John Harrisonff865882014-11-24 18:49:28 +00003915
Chris Wilsone95433c2016-10-28 13:58:27 +01003916 return ret < 0 ? ret : 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003917}
3918
Chris Wilsond23db882014-05-23 08:48:08 +02003919static bool
Chris Wilson91b2db62016-08-04 16:32:23 +01003920i915_vma_misplaced(struct i915_vma *vma, u64 size, u64 alignment, u64 flags)
Chris Wilsond23db882014-05-23 08:48:08 +02003921{
Chris Wilson59bfa122016-08-04 16:32:31 +01003922 if (!drm_mm_node_allocated(&vma->node))
3923 return false;
3924
Chris Wilson91b2db62016-08-04 16:32:23 +01003925 if (vma->node.size < size)
3926 return true;
3927
3928 if (alignment && vma->node.start & (alignment - 1))
Chris Wilsond23db882014-05-23 08:48:08 +02003929 return true;
3930
Chris Wilson05a20d02016-08-18 17:16:55 +01003931 if (flags & PIN_MAPPABLE && !i915_vma_is_map_and_fenceable(vma))
Chris Wilsond23db882014-05-23 08:48:08 +02003932 return true;
3933
3934 if (flags & PIN_OFFSET_BIAS &&
3935 vma->node.start < (flags & PIN_OFFSET_MASK))
3936 return true;
3937
Chris Wilson506a8e82015-12-08 11:55:07 +00003938 if (flags & PIN_OFFSET_FIXED &&
3939 vma->node.start != (flags & PIN_OFFSET_MASK))
3940 return true;
3941
Chris Wilsond23db882014-05-23 08:48:08 +02003942 return false;
3943}
3944
Chris Wilsond0710ab2015-11-20 14:16:39 +00003945void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
3946{
3947 struct drm_i915_gem_object *obj = vma->obj;
Chris Wilsona9f14812016-08-04 16:32:28 +01003948 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003949 bool mappable, fenceable;
3950 u32 fence_size, fence_alignment;
3951
Chris Wilsona9f14812016-08-04 16:32:28 +01003952 fence_size = i915_gem_get_ggtt_size(dev_priv,
Chris Wilson05a20d02016-08-18 17:16:55 +01003953 vma->size,
Chris Wilson3e510a82016-08-05 10:14:23 +01003954 i915_gem_object_get_tiling(obj));
Chris Wilsona9f14812016-08-04 16:32:28 +01003955 fence_alignment = i915_gem_get_ggtt_alignment(dev_priv,
Chris Wilson05a20d02016-08-18 17:16:55 +01003956 vma->size,
Chris Wilson3e510a82016-08-05 10:14:23 +01003957 i915_gem_object_get_tiling(obj),
Chris Wilsonad1a7d22016-08-04 16:32:27 +01003958 true);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003959
3960 fenceable = (vma->node.size == fence_size &&
3961 (vma->node.start & (fence_alignment - 1)) == 0);
3962
3963 mappable = (vma->node.start + fence_size <=
Chris Wilsona9f14812016-08-04 16:32:28 +01003964 dev_priv->ggtt.mappable_end);
Chris Wilsond0710ab2015-11-20 14:16:39 +00003965
Tvrtko Ursulin07ee2bc2016-10-25 17:40:35 +01003966 /*
3967 * Explicitly disable for rotated VMA since the display does not
3968 * need the fence and the VMA is not accessible to other users.
3969 */
3970 if (mappable && fenceable &&
3971 vma->ggtt_view.type != I915_GGTT_VIEW_ROTATED)
Chris Wilson05a20d02016-08-18 17:16:55 +01003972 vma->flags |= I915_VMA_CAN_FENCE;
3973 else
3974 vma->flags &= ~I915_VMA_CAN_FENCE;
Chris Wilsond0710ab2015-11-20 14:16:39 +00003975}
3976
Chris Wilson305bc232016-08-04 16:32:33 +01003977int __i915_vma_do_pin(struct i915_vma *vma,
3978 u64 size, u64 alignment, u64 flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003979{
Chris Wilson305bc232016-08-04 16:32:33 +01003980 unsigned int bound = vma->flags;
Eric Anholt673a3942008-07-30 12:06:12 -07003981 int ret;
3982
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003983 lockdep_assert_held(&vma->vm->dev->struct_mutex);
Chris Wilson59bfa122016-08-04 16:32:31 +01003984 GEM_BUG_ON((flags & (PIN_GLOBAL | PIN_USER)) == 0);
Chris Wilson3272db52016-08-04 16:32:32 +01003985 GEM_BUG_ON((flags & PIN_GLOBAL) && !i915_vma_is_ggtt(vma));
Ben Widawsky6e7186a2014-05-06 22:21:36 -07003986
Chris Wilson305bc232016-08-04 16:32:33 +01003987 if (WARN_ON(bound & I915_VMA_PIN_OVERFLOW)) {
3988 ret = -EBUSY;
3989 goto err;
3990 }
Chris Wilsonc826c442014-10-31 13:53:53 +00003991
Chris Wilsonde895082016-08-04 16:32:34 +01003992 if ((bound & I915_VMA_BIND_MASK) == 0) {
Chris Wilson59bfa122016-08-04 16:32:31 +01003993 ret = i915_vma_insert(vma, size, alignment, flags);
3994 if (ret)
3995 goto err;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003996 }
3997
Chris Wilson59bfa122016-08-04 16:32:31 +01003998 ret = i915_vma_bind(vma, vma->obj->cache_level, flags);
Chris Wilson3b165252016-08-04 16:32:25 +01003999 if (ret)
Chris Wilson59bfa122016-08-04 16:32:31 +01004000 goto err;
Chris Wilson3b165252016-08-04 16:32:25 +01004001
Chris Wilson3272db52016-08-04 16:32:32 +01004002 if ((bound ^ vma->flags) & I915_VMA_GLOBAL_BIND)
Chris Wilsond0710ab2015-11-20 14:16:39 +00004003 __i915_vma_set_map_and_fenceable(vma);
Chris Wilsonef79e172014-10-31 13:53:52 +00004004
Chris Wilson3b165252016-08-04 16:32:25 +01004005 GEM_BUG_ON(i915_vma_misplaced(vma, size, alignment, flags));
Eric Anholt673a3942008-07-30 12:06:12 -07004006 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004007
Chris Wilson59bfa122016-08-04 16:32:31 +01004008err:
4009 __i915_vma_unpin(vma);
4010 return ret;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004011}
4012
Chris Wilson058d88c2016-08-15 10:49:06 +01004013struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004014i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
4015 const struct i915_ggtt_view *view,
Chris Wilson91b2db62016-08-04 16:32:23 +01004016 u64 size,
Chris Wilson2ffffd02016-08-04 16:32:22 +01004017 u64 alignment,
4018 u64 flags)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004019{
Chris Wilsonad16d2e2016-10-13 09:55:04 +01004020 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
4021 struct i915_address_space *vm = &dev_priv->ggtt.base;
Chris Wilson59bfa122016-08-04 16:32:31 +01004022 struct i915_vma *vma;
4023 int ret;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004024
Chris Wilson4c7d62c2016-10-28 13:58:32 +01004025 lockdep_assert_held(&obj->base.dev->struct_mutex);
4026
Chris Wilson058d88c2016-08-15 10:49:06 +01004027 vma = i915_gem_obj_lookup_or_create_vma(obj, vm, view);
Chris Wilson59bfa122016-08-04 16:32:31 +01004028 if (IS_ERR(vma))
Chris Wilson058d88c2016-08-15 10:49:06 +01004029 return vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01004030
4031 if (i915_vma_misplaced(vma, size, alignment, flags)) {
4032 if (flags & PIN_NONBLOCK &&
4033 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma)))
Chris Wilson058d88c2016-08-15 10:49:06 +01004034 return ERR_PTR(-ENOSPC);
Chris Wilson59bfa122016-08-04 16:32:31 +01004035
Chris Wilsonad16d2e2016-10-13 09:55:04 +01004036 if (flags & PIN_MAPPABLE) {
4037 u32 fence_size;
4038
4039 fence_size = i915_gem_get_ggtt_size(dev_priv, vma->size,
4040 i915_gem_object_get_tiling(obj));
4041 /* If the required space is larger than the available
4042 * aperture, we will not able to find a slot for the
4043 * object and unbinding the object now will be in
4044 * vain. Worse, doing so may cause us to ping-pong
4045 * the object in and out of the Global GTT and
4046 * waste a lot of cycles under the mutex.
4047 */
4048 if (fence_size > dev_priv->ggtt.mappable_end)
4049 return ERR_PTR(-E2BIG);
4050
4051 /* If NONBLOCK is set the caller is optimistically
4052 * trying to cache the full object within the mappable
4053 * aperture, and *must* have a fallback in place for
4054 * situations where we cannot bind the object. We
4055 * can be a little more lax here and use the fallback
4056 * more often to avoid costly migrations of ourselves
4057 * and other objects within the aperture.
4058 *
4059 * Half-the-aperture is used as a simple heuristic.
4060 * More interesting would to do search for a free
4061 * block prior to making the commitment to unbind.
4062 * That caters for the self-harm case, and with a
4063 * little more heuristics (e.g. NOFAULT, NOEVICT)
4064 * we could try to minimise harm to others.
4065 */
4066 if (flags & PIN_NONBLOCK &&
4067 fence_size > dev_priv->ggtt.mappable_end / 2)
4068 return ERR_PTR(-ENOSPC);
4069 }
4070
Chris Wilson59bfa122016-08-04 16:32:31 +01004071 WARN(i915_vma_is_pinned(vma),
4072 "bo is already pinned in ggtt with incorrect alignment:"
Chris Wilson05a20d02016-08-18 17:16:55 +01004073 " offset=%08x, req.alignment=%llx,"
4074 " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n",
4075 i915_ggtt_offset(vma), alignment,
Chris Wilson59bfa122016-08-04 16:32:31 +01004076 !!(flags & PIN_MAPPABLE),
Chris Wilson05a20d02016-08-18 17:16:55 +01004077 i915_vma_is_map_and_fenceable(vma));
Chris Wilson59bfa122016-08-04 16:32:31 +01004078 ret = i915_vma_unbind(vma);
4079 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +01004080 return ERR_PTR(ret);
Chris Wilson59bfa122016-08-04 16:32:31 +01004081 }
4082
Chris Wilson058d88c2016-08-15 10:49:06 +01004083 ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL);
4084 if (ret)
4085 return ERR_PTR(ret);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004086
Chris Wilson058d88c2016-08-15 10:49:06 +01004087 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07004088}
4089
Chris Wilsonedf6b762016-08-09 09:23:33 +01004090static __always_inline unsigned int __busy_read_flag(unsigned int id)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004091{
4092 /* Note that we could alias engines in the execbuf API, but
4093 * that would be very unwise as it prevents userspace from
4094 * fine control over engine selection. Ahem.
4095 *
4096 * This should be something like EXEC_MAX_ENGINE instead of
4097 * I915_NUM_ENGINES.
4098 */
4099 BUILD_BUG_ON(I915_NUM_ENGINES > 16);
4100 return 0x10000 << id;
4101}
4102
4103static __always_inline unsigned int __busy_write_id(unsigned int id)
4104{
Chris Wilson70cb4722016-08-09 18:08:25 +01004105 /* The uABI guarantees an active writer is also amongst the read
4106 * engines. This would be true if we accessed the activity tracking
4107 * under the lock, but as we perform the lookup of the object and
4108 * its activity locklessly we can not guarantee that the last_write
4109 * being active implies that we have set the same engine flag from
4110 * last_read - hence we always set both read and write busy for
4111 * last_write.
4112 */
4113 return id | __busy_read_flag(id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004114}
4115
Chris Wilsonedf6b762016-08-09 09:23:33 +01004116static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004117__busy_set_if_active(const struct i915_gem_active *active,
4118 unsigned int (*flag)(unsigned int id))
4119{
Chris Wilson12555012016-08-16 09:50:40 +01004120 struct drm_i915_gem_request *request;
4121
4122 request = rcu_dereference(active->request);
4123 if (!request || i915_gem_request_completed(request))
4124 return 0;
4125
4126 /* This is racy. See __i915_gem_active_get_rcu() for an in detail
4127 * discussion of how to handle the race correctly, but for reporting
4128 * the busy state we err on the side of potentially reporting the
4129 * wrong engine as being busy (but we guarantee that the result
4130 * is at least self-consistent).
4131 *
4132 * As we use SLAB_DESTROY_BY_RCU, the request may be reallocated
4133 * whilst we are inspecting it, even under the RCU read lock as we are.
4134 * This means that there is a small window for the engine and/or the
4135 * seqno to have been overwritten. The seqno will always be in the
4136 * future compared to the intended, and so we know that if that
4137 * seqno is idle (on whatever engine) our request is idle and the
4138 * return 0 above is correct.
4139 *
4140 * The issue is that if the engine is switched, it is just as likely
4141 * to report that it is busy (but since the switch happened, we know
4142 * the request should be idle). So there is a small chance that a busy
4143 * result is actually the wrong engine.
4144 *
4145 * So why don't we care?
4146 *
4147 * For starters, the busy ioctl is a heuristic that is by definition
4148 * racy. Even with perfect serialisation in the driver, the hardware
4149 * state is constantly advancing - the state we report to the user
4150 * is stale.
4151 *
4152 * The critical information for the busy-ioctl is whether the object
4153 * is idle as userspace relies on that to detect whether its next
4154 * access will stall, or if it has missed submitting commands to
4155 * the hardware allowing the GPU to stall. We never generate a
4156 * false-positive for idleness, thus busy-ioctl is reliable at the
4157 * most fundamental level, and we maintain the guarantee that a
4158 * busy object left to itself will eventually become idle (and stay
4159 * idle!).
4160 *
4161 * We allow ourselves the leeway of potentially misreporting the busy
4162 * state because that is an optimisation heuristic that is constantly
4163 * in flux. Being quickly able to detect the busy/idle state is much
4164 * more important than accurate logging of exactly which engines were
4165 * busy.
4166 *
4167 * For accuracy in reporting the engine, we could use
4168 *
4169 * result = 0;
4170 * request = __i915_gem_active_get_rcu(active);
4171 * if (request) {
4172 * if (!i915_gem_request_completed(request))
4173 * result = flag(request->engine->exec_id);
4174 * i915_gem_request_put(request);
4175 * }
4176 *
4177 * but that still remains susceptible to both hardware and userspace
4178 * races. So we accept making the result of that race slightly worse,
4179 * given the rarity of the race and its low impact on the result.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004180 */
Chris Wilson12555012016-08-16 09:50:40 +01004181 return flag(READ_ONCE(request->engine->exec_id));
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004182}
4183
Chris Wilsonedf6b762016-08-09 09:23:33 +01004184static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004185busy_check_reader(const struct i915_gem_active *active)
4186{
4187 return __busy_set_if_active(active, __busy_read_flag);
4188}
4189
Chris Wilsonedf6b762016-08-09 09:23:33 +01004190static __always_inline unsigned int
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004191busy_check_writer(const struct i915_gem_active *active)
4192{
4193 return __busy_set_if_active(active, __busy_write_id);
4194}
4195
Eric Anholt673a3942008-07-30 12:06:12 -07004196int
Eric Anholt673a3942008-07-30 12:06:12 -07004197i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004198 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004199{
4200 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004201 struct drm_i915_gem_object *obj;
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004202 unsigned long active;
Eric Anholt673a3942008-07-30 12:06:12 -07004203
Chris Wilson03ac0642016-07-20 13:31:51 +01004204 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004205 if (!obj)
4206 return -ENOENT;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004207
Chris Wilson426960b2016-01-15 16:51:46 +00004208 args->busy = 0;
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004209 active = __I915_BO_ACTIVE(obj);
4210 if (active) {
4211 int idx;
Chris Wilson426960b2016-01-15 16:51:46 +00004212
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004213 /* Yes, the lookups are intentionally racy.
4214 *
4215 * First, we cannot simply rely on __I915_BO_ACTIVE. We have
4216 * to regard the value as stale and as our ABI guarantees
4217 * forward progress, we confirm the status of each active
4218 * request with the hardware.
4219 *
4220 * Even though we guard the pointer lookup by RCU, that only
4221 * guarantees that the pointer and its contents remain
4222 * dereferencable and does *not* mean that the request we
4223 * have is the same as the one being tracked by the object.
4224 *
4225 * Consider that we lookup the request just as it is being
4226 * retired and freed. We take a local copy of the pointer,
4227 * but before we add its engine into the busy set, the other
4228 * thread reallocates it and assigns it to a task on another
Chris Wilson12555012016-08-16 09:50:40 +01004229 * engine with a fresh and incomplete seqno. Guarding against
4230 * that requires careful serialisation and reference counting,
4231 * i.e. using __i915_gem_active_get_request_rcu(). We don't,
4232 * instead we expect that if the result is busy, which engines
4233 * are busy is not completely reliable - we only guarantee
4234 * that the object was busy.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004235 */
4236 rcu_read_lock();
4237
4238 for_each_active(active, idx)
4239 args->busy |= busy_check_reader(&obj->last_read[idx]);
4240
4241 /* For ABI sanity, we only care that the write engine is in
Chris Wilson70cb4722016-08-09 18:08:25 +01004242 * the set of read engines. This should be ensured by the
4243 * ordering of setting last_read/last_write in
4244 * i915_vma_move_to_active(), and then in reverse in retire.
4245 * However, for good measure, we always report the last_write
4246 * request as a busy read as well as being a busy write.
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004247 *
4248 * We don't care that the set of active read/write engines
4249 * may change during construction of the result, as it is
4250 * equally liable to change before userspace can inspect
4251 * the result.
4252 */
4253 args->busy |= busy_check_writer(&obj->last_write);
4254
4255 rcu_read_unlock();
Chris Wilson426960b2016-01-15 16:51:46 +00004256 }
Eric Anholt673a3942008-07-30 12:06:12 -07004257
Chris Wilson3fdc13c2016-08-05 10:14:18 +01004258 i915_gem_object_put_unlocked(obj);
4259 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004260}
4261
4262int
4263i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4264 struct drm_file *file_priv)
4265{
Akshay Joshi0206e352011-08-16 15:34:10 -04004266 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004267}
4268
Chris Wilson3ef94da2009-09-14 16:50:29 +01004269int
4270i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4271 struct drm_file *file_priv)
4272{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004273 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson3ef94da2009-09-14 16:50:29 +01004274 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004275 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004276 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004277
4278 switch (args->madv) {
4279 case I915_MADV_DONTNEED:
4280 case I915_MADV_WILLNEED:
4281 break;
4282 default:
4283 return -EINVAL;
4284 }
4285
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004286 ret = i915_mutex_lock_interruptible(dev);
4287 if (ret)
4288 return ret;
4289
Chris Wilson03ac0642016-07-20 13:31:51 +01004290 obj = i915_gem_object_lookup(file_priv, args->handle);
4291 if (!obj) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004292 ret = -ENOENT;
4293 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004294 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004295
Daniel Vetter656bfa32014-11-20 09:26:30 +01004296 if (obj->pages &&
Chris Wilson3e510a82016-08-05 10:14:23 +01004297 i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01004298 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4299 if (obj->madv == I915_MADV_WILLNEED)
4300 i915_gem_object_unpin_pages(obj);
4301 if (args->madv == I915_MADV_WILLNEED)
4302 i915_gem_object_pin_pages(obj);
4303 }
4304
Chris Wilson05394f32010-11-08 19:18:58 +00004305 if (obj->madv != __I915_MADV_PURGED)
4306 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004307
Chris Wilson6c085a72012-08-20 11:40:46 +02004308 /* if the object is no longer attached, discard its backing storage */
Daniel Vetterbe6a0372015-03-18 10:46:04 +01004309 if (obj->madv == I915_MADV_DONTNEED && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004310 i915_gem_object_truncate(obj);
4311
Chris Wilson05394f32010-11-08 19:18:58 +00004312 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004313
Chris Wilsonf8c417c2016-07-20 13:31:53 +01004314 i915_gem_object_put(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004315unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004316 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004317 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004318}
4319
Chris Wilson37e680a2012-06-07 15:38:42 +01004320void i915_gem_object_init(struct drm_i915_gem_object *obj,
4321 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004322{
Chris Wilsonb4716182015-04-27 13:41:17 +01004323 int i;
4324
Ben Widawsky35c20a62013-05-31 11:28:48 -07004325 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004326 INIT_LIST_HEAD(&obj->userfault_link);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00004327 for (i = 0; i < I915_NUM_ENGINES; i++)
Chris Wilsonfa545cb2016-08-04 07:52:35 +01004328 init_request_active(&obj->last_read[i],
4329 i915_gem_object_retire__read);
4330 init_request_active(&obj->last_write,
4331 i915_gem_object_retire__write);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004332 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004333 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01004334 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004335
Chris Wilson37e680a2012-06-07 15:38:42 +01004336 obj->ops = ops;
4337
Chris Wilson50349242016-08-18 17:17:04 +01004338 obj->frontbuffer_ggtt_origin = ORIGIN_GTT;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004339 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004340
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004341 i915_gem_info_add_obj(to_i915(obj->base.dev), obj->base.size);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004342}
4343
Chris Wilson37e680a2012-06-07 15:38:42 +01004344static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Chris Wilsonde472662016-01-22 18:32:31 +00004345 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE,
Chris Wilson37e680a2012-06-07 15:38:42 +01004346 .get_pages = i915_gem_object_get_pages_gtt,
4347 .put_pages = i915_gem_object_put_pages_gtt,
4348};
4349
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01004350/* Note we don't consider signbits :| */
4351#define overflows_type(x, T) \
4352 (sizeof(x) > sizeof(T) && (x) >> (sizeof(T) * BITS_PER_BYTE))
4353
4354struct drm_i915_gem_object *
4355i915_gem_object_create(struct drm_device *dev, u64 size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004356{
Daniel Vetterc397b902010-04-09 19:05:07 +00004357 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004358 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004359 gfp_t mask;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004360 int ret;
Daniel Vetterc397b902010-04-09 19:05:07 +00004361
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01004362 /* There is a prevalence of the assumption that we fit the object's
4363 * page count inside a 32bit _signed_ variable. Let's document this and
4364 * catch if we ever need to fix it. In the meantime, if you do spot
4365 * such a local variable, please consider fixing!
4366 */
4367 if (WARN_ON(size >> PAGE_SHIFT > INT_MAX))
4368 return ERR_PTR(-E2BIG);
4369
4370 if (overflows_type(size, obj->base.size))
4371 return ERR_PTR(-E2BIG);
4372
Chris Wilson42dcedd2012-11-15 11:32:30 +00004373 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004374 if (obj == NULL)
Chris Wilsonfe3db792016-04-25 13:32:13 +01004375 return ERR_PTR(-ENOMEM);
Daniel Vetterc397b902010-04-09 19:05:07 +00004376
Chris Wilsonfe3db792016-04-25 13:32:13 +01004377 ret = drm_gem_object_init(dev, &obj->base, size);
4378 if (ret)
4379 goto fail;
Daniel Vetterc397b902010-04-09 19:05:07 +00004380
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004381 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4382 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4383 /* 965gm cannot relocate objects above 4GiB. */
4384 mask &= ~__GFP_HIGHMEM;
4385 mask |= __GFP_DMA32;
4386 }
4387
Al Viro93c76a32015-12-04 23:45:44 -05004388 mapping = obj->base.filp->f_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004389 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004390
Chris Wilson37e680a2012-06-07 15:38:42 +01004391 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004392
Daniel Vetterc397b902010-04-09 19:05:07 +00004393 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4394 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4395
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004396 if (HAS_LLC(dev)) {
4397 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004398 * cache) for about a 10% performance improvement
4399 * compared to uncached. Graphics requests other than
4400 * display scanout are coherent with the CPU in
4401 * accessing this cache. This means in this mode we
4402 * don't need to clflush on the CPU side, and on the
4403 * GPU side we only need to flush internal caches to
4404 * get data visible to the CPU.
4405 *
4406 * However, we maintain the display planes as UC, and so
4407 * need to rebind when first used as such.
4408 */
4409 obj->cache_level = I915_CACHE_LLC;
4410 } else
4411 obj->cache_level = I915_CACHE_NONE;
4412
Daniel Vetterd861e332013-07-24 23:25:03 +02004413 trace_i915_gem_object_create(obj);
4414
Chris Wilson05394f32010-11-08 19:18:58 +00004415 return obj;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004416
4417fail:
4418 i915_gem_object_free(obj);
4419
4420 return ERR_PTR(ret);
Daniel Vetterac52bc52010-04-09 19:05:06 +00004421}
4422
Chris Wilson340fbd82014-05-22 09:16:52 +01004423static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4424{
4425 /* If we are the last user of the backing storage (be it shmemfs
4426 * pages or stolen etc), we know that the pages are going to be
4427 * immediately released. In this case, we can then skip copying
4428 * back the contents from the GPU.
4429 */
4430
4431 if (obj->madv != I915_MADV_WILLNEED)
4432 return false;
4433
4434 if (obj->base.filp == NULL)
4435 return true;
4436
4437 /* At first glance, this looks racy, but then again so would be
4438 * userspace racing mmap against close. However, the first external
4439 * reference to the filp can only be obtained through the
4440 * i915_gem_mmap_ioctl() which safeguards us against the user
4441 * acquiring such a reference whilst we are in the middle of
4442 * freeing the object.
4443 */
4444 return atomic_long_read(&obj->base.filp->f_count) == 1;
4445}
4446
Chris Wilson1488fc02012-04-24 15:47:31 +01004447void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004448{
Chris Wilson1488fc02012-04-24 15:47:31 +01004449 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004450 struct drm_device *dev = obj->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004451 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004452 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004453
Paulo Zanonif65c9162013-11-27 18:20:34 -02004454 intel_runtime_pm_get(dev_priv);
4455
Chris Wilson26e12f82011-03-20 11:20:19 +00004456 trace_i915_gem_object_destroy(obj);
4457
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004458 /* All file-owned VMA should have been released by this point through
4459 * i915_gem_close_object(), or earlier by i915_gem_context_close().
4460 * However, the object may also be bound into the global GTT (e.g.
4461 * older GPUs without per-process support, or for direct access through
4462 * the GTT either for the user or for scanout). Those VMA still need to
4463 * unbound now.
4464 */
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004465 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) {
Chris Wilson3272db52016-08-04 16:32:32 +01004466 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004467 GEM_BUG_ON(i915_vma_is_active(vma));
Chris Wilson3272db52016-08-04 16:32:32 +01004468 vma->flags &= ~I915_VMA_PIN_MASK;
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004469 i915_vma_close(vma);
Chris Wilson1488fc02012-04-24 15:47:31 +01004470 }
Chris Wilson15717de2016-08-04 07:52:26 +01004471 GEM_BUG_ON(obj->bind_count);
Chris Wilson1488fc02012-04-24 15:47:31 +01004472
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004473 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4474 * before progressing. */
4475 if (obj->stolen)
4476 i915_gem_object_unpin_pages(obj);
4477
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004478 WARN_ON(atomic_read(&obj->frontbuffer_bits));
Daniel Vettera071fa02014-06-18 23:28:09 +02004479
Daniel Vetter656bfa32014-11-20 09:26:30 +01004480 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4481 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
Chris Wilson3e510a82016-08-05 10:14:23 +01004482 i915_gem_object_is_tiled(obj))
Daniel Vetter656bfa32014-11-20 09:26:30 +01004483 i915_gem_object_unpin_pages(obj);
4484
Ben Widawsky401c29f2013-05-31 11:28:47 -07004485 if (WARN_ON(obj->pages_pin_count))
4486 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004487 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004488 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004489 i915_gem_object_put_pages(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004490
Chris Wilson9da3da62012-06-01 15:20:22 +01004491 BUG_ON(obj->pages);
4492
Chris Wilson2f745ad2012-09-04 21:02:58 +01004493 if (obj->base.import_attach)
4494 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004495
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004496 if (obj->ops->release)
4497 obj->ops->release(obj);
4498
Chris Wilson05394f32010-11-08 19:18:58 +00004499 drm_gem_object_release(&obj->base);
4500 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004501
Chris Wilson05394f32010-11-08 19:18:58 +00004502 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004503 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004504
4505 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004506}
4507
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01004508void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj)
4509{
4510 lockdep_assert_held(&obj->base.dev->struct_mutex);
4511
4512 GEM_BUG_ON(i915_gem_object_has_active_reference(obj));
4513 if (i915_gem_object_is_active(obj))
4514 i915_gem_object_set_active_reference(obj);
4515 else
4516 i915_gem_object_put(obj);
4517}
4518
Chris Wilsondcff85c2016-08-05 10:14:11 +01004519int i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004520{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004521 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsondcff85c2016-08-05 10:14:11 +01004522 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004523
Chris Wilson54b4f682016-07-21 21:16:19 +01004524 intel_suspend_gt_powersave(dev_priv);
4525
Chris Wilson45c5f202013-10-16 11:50:01 +01004526 mutex_lock(&dev->struct_mutex);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004527
4528 /* We have to flush all the executing contexts to main memory so
4529 * that they can saved in the hibernation image. To ensure the last
4530 * context image is coherent, we have to switch away from it. That
4531 * leaves the dev_priv->kernel_context still active when
4532 * we actually suspend, and its image in memory may not match the GPU
4533 * state. Fortunately, the kernel_context is disposable and we do
4534 * not rely on its state.
4535 */
4536 ret = i915_gem_switch_to_kernel_context(dev_priv);
4537 if (ret)
4538 goto err;
4539
Chris Wilson22dd3bb2016-09-09 14:11:50 +01004540 ret = i915_gem_wait_for_idle(dev_priv,
4541 I915_WAIT_INTERRUPTIBLE |
4542 I915_WAIT_LOCKED);
Chris Wilsonf7403342013-09-13 23:57:04 +01004543 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004544 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004545
Chris Wilsonc0336662016-05-06 15:40:21 +01004546 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004547
Chris Wilsonb2e862d2016-04-28 09:56:41 +01004548 i915_gem_context_lost(dev_priv);
Chris Wilson45c5f202013-10-16 11:50:01 +01004549 mutex_unlock(&dev->struct_mutex);
4550
Chris Wilson737b1502015-01-26 18:03:03 +02004551 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson67d97da2016-07-04 08:08:31 +01004552 cancel_delayed_work_sync(&dev_priv->gt.retire_work);
4553 flush_delayed_work(&dev_priv->gt.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004554
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004555 /* Assert that we sucessfully flushed all the work and
4556 * reset the GPU back to its idle, low power state.
4557 */
Chris Wilson67d97da2016-07-04 08:08:31 +01004558 WARN_ON(dev_priv->gt.awake);
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004559
Imre Deak1c777c52016-10-12 17:46:37 +03004560 /*
4561 * Neither the BIOS, ourselves or any other kernel
4562 * expects the system to be in execlists mode on startup,
4563 * so we need to reset the GPU back to legacy mode. And the only
4564 * known way to disable logical contexts is through a GPU reset.
4565 *
4566 * So in order to leave the system in a known default configuration,
4567 * always reset the GPU upon unload and suspend. Afterwards we then
4568 * clean up the GEM state tracking, flushing off the requests and
4569 * leaving the system in a known idle state.
4570 *
4571 * Note that is of the upmost importance that the GPU is idle and
4572 * all stray writes are flushed *before* we dismantle the backing
4573 * storage for the pinned objects.
4574 *
4575 * However, since we are uncertain that resetting the GPU on older
4576 * machines is a good idea, we don't - just in case it leaves the
4577 * machine in an unusable condition.
4578 */
4579 if (HAS_HW_CONTEXTS(dev)) {
4580 int reset = intel_gpu_reset(dev_priv, ALL_ENGINES);
4581 WARN_ON(reset && reset != -ENODEV);
4582 }
4583
Eric Anholt673a3942008-07-30 12:06:12 -07004584 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004585
4586err:
4587 mutex_unlock(&dev->struct_mutex);
4588 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004589}
4590
Chris Wilson5ab57c72016-07-15 14:56:20 +01004591void i915_gem_resume(struct drm_device *dev)
4592{
4593 struct drm_i915_private *dev_priv = to_i915(dev);
4594
4595 mutex_lock(&dev->struct_mutex);
4596 i915_gem_restore_gtt_mappings(dev);
4597
4598 /* As we didn't flush the kernel context before suspend, we cannot
4599 * guarantee that the context image is complete. So let's just reset
4600 * it and start again.
4601 */
Chris Wilson821ed7d2016-09-09 14:11:53 +01004602 dev_priv->gt.resume(dev_priv);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004603
4604 mutex_unlock(&dev->struct_mutex);
4605}
4606
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004607void i915_gem_init_swizzling(struct drm_device *dev)
4608{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004609 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004610
Daniel Vetter11782b02012-01-31 16:47:55 +01004611 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004612 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4613 return;
4614
4615 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4616 DISP_TILE_SURFACE_SWIZZLING);
4617
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004618 if (IS_GEN5(dev_priv))
Daniel Vetter11782b02012-01-31 16:47:55 +01004619 return;
4620
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004621 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004622 if (IS_GEN6(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004623 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004624 else if (IS_GEN7(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004625 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004626 else if (IS_GEN8(dev_priv))
Ben Widawsky31a53362013-11-02 21:07:04 -07004627 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004628 else
4629 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004630}
Daniel Vettere21af882012-02-09 20:53:27 +01004631
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004632static void init_unused_ring(struct drm_i915_private *dev_priv, u32 base)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004633{
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004634 I915_WRITE(RING_CTL(base), 0);
4635 I915_WRITE(RING_HEAD(base), 0);
4636 I915_WRITE(RING_TAIL(base), 0);
4637 I915_WRITE(RING_START(base), 0);
4638}
4639
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004640static void init_unused_rings(struct drm_i915_private *dev_priv)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004641{
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004642 if (IS_I830(dev_priv)) {
4643 init_unused_ring(dev_priv, PRB1_BASE);
4644 init_unused_ring(dev_priv, SRB0_BASE);
4645 init_unused_ring(dev_priv, SRB1_BASE);
4646 init_unused_ring(dev_priv, SRB2_BASE);
4647 init_unused_ring(dev_priv, SRB3_BASE);
4648 } else if (IS_GEN2(dev_priv)) {
4649 init_unused_ring(dev_priv, SRB0_BASE);
4650 init_unused_ring(dev_priv, SRB1_BASE);
4651 } else if (IS_GEN3(dev_priv)) {
4652 init_unused_ring(dev_priv, PRB1_BASE);
4653 init_unused_ring(dev_priv, PRB2_BASE);
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004654 }
4655}
4656
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004657int
4658i915_gem_init_hw(struct drm_device *dev)
4659{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004660 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004661 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304662 enum intel_engine_id id;
Chris Wilsond200cda2016-04-28 09:56:44 +01004663 int ret;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004664
Chris Wilsonde867c22016-10-25 13:16:02 +01004665 dev_priv->gt.last_init_time = ktime_get();
4666
Chris Wilson5e4f5182015-02-13 14:35:59 +00004667 /* Double layer security blanket, see i915_gem_init() */
4668 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4669
Mika Kuoppala3accaf72016-04-13 17:26:43 +03004670 if (HAS_EDRAM(dev) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004671 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004672
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01004673 if (IS_HASWELL(dev_priv))
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004674 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ?
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004675 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004676
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004677 if (HAS_PCH_NOP(dev_priv)) {
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004678 if (IS_IVYBRIDGE(dev_priv)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004679 u32 temp = I915_READ(GEN7_MSG_CTL);
4680 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4681 I915_WRITE(GEN7_MSG_CTL, temp);
4682 } else if (INTEL_INFO(dev)->gen >= 7) {
4683 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4684 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4685 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4686 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004687 }
4688
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004689 i915_gem_init_swizzling(dev);
4690
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004691 /*
4692 * At least 830 can leave some of the unused rings
4693 * "active" (ie. head != tail) after resume which
4694 * will prevent c3 entry. Makes sure all unused rings
4695 * are totally idle.
4696 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004697 init_unused_rings(dev_priv);
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004698
Dave Gordoned54c1a2016-01-19 19:02:54 +00004699 BUG_ON(!dev_priv->kernel_context);
John Harrison90638cc2015-05-29 17:43:37 +01004700
John Harrison4ad2fd82015-06-18 13:11:20 +01004701 ret = i915_ppgtt_init_hw(dev);
4702 if (ret) {
4703 DRM_ERROR("PPGTT enable HW failed %d\n", ret);
4704 goto out;
4705 }
4706
4707 /* Need to do basic initialisation of all rings first: */
Akash Goel3b3f1652016-10-13 22:44:48 +05304708 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004709 ret = engine->init_hw(engine);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004710 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004711 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004712 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004713
Peter Antoine0ccdacf2016-04-13 15:03:25 +01004714 intel_mocs_init_l3cc_table(dev);
4715
Alex Dai33a732f2015-08-12 15:43:36 +01004716 /* We can't enable contexts until all firmware is loaded */
Dave Gordone556f7c2016-06-07 09:14:49 +01004717 ret = intel_guc_setup(dev);
4718 if (ret)
4719 goto out;
Alex Dai33a732f2015-08-12 15:43:36 +01004720
Chris Wilson5e4f5182015-02-13 14:35:59 +00004721out:
4722 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004723 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004724}
4725
Chris Wilson39df9192016-07-20 13:31:57 +01004726bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value)
4727{
4728 if (INTEL_INFO(dev_priv)->gen < 6)
4729 return false;
4730
4731 /* TODO: make semaphores and Execlists play nicely together */
4732 if (i915.enable_execlists)
4733 return false;
4734
4735 if (value >= 0)
4736 return value;
4737
4738#ifdef CONFIG_INTEL_IOMMU
4739 /* Enable semaphores on SNB when IO remapping is off */
4740 if (INTEL_INFO(dev_priv)->gen == 6 && intel_iommu_gfx_mapped)
4741 return false;
4742#endif
4743
4744 return true;
4745}
4746
Chris Wilson1070a422012-04-24 15:47:41 +01004747int i915_gem_init(struct drm_device *dev)
4748{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004749 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson1070a422012-04-24 15:47:41 +01004750 int ret;
4751
Chris Wilson1070a422012-04-24 15:47:41 +01004752 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004753
Oscar Mateoa83014d2014-07-24 17:04:21 +01004754 if (!i915.enable_execlists) {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004755 dev_priv->gt.resume = intel_legacy_submission_resume;
Chris Wilson7e37f882016-08-02 22:50:21 +01004756 dev_priv->gt.cleanup_engine = intel_engine_cleanup;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004757 } else {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004758 dev_priv->gt.resume = intel_lr_context_resume;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004759 dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004760 }
4761
Chris Wilson5e4f5182015-02-13 14:35:59 +00004762 /* This is just a security blanket to placate dragons.
4763 * On some systems, we very sporadically observe that the first TLBs
4764 * used by the CS may be stale, despite us poking the TLB reset. If
4765 * we hold the forcewake during initialisation these problems
4766 * just magically go away.
4767 */
4768 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4769
Chris Wilson72778cb2016-05-19 16:17:16 +01004770 i915_gem_init_userptr(dev_priv);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01004771
4772 ret = i915_gem_init_ggtt(dev_priv);
4773 if (ret)
4774 goto out_unlock;
Jesse Barnesd62b4892013-03-08 10:45:53 -08004775
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004776 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004777 if (ret)
4778 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004779
Tvrtko Ursulin8b3e2d32016-07-13 16:03:37 +01004780 ret = intel_engines_init(dev);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004781 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004782 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004783
4784 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004785 if (ret == -EIO) {
Chris Wilson7e21d642016-07-27 09:07:29 +01004786 /* Allow engine initialisation to fail by marking the GPU as
Chris Wilson60990322014-04-09 09:19:42 +01004787 * wedged. But we only want to do this where the GPU is angry,
4788 * for all other failure, such as an allocation failure, bail.
4789 */
4790 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
Chris Wilson821ed7d2016-09-09 14:11:53 +01004791 i915_gem_set_wedged(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004792 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004793 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004794
4795out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00004796 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01004797 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004798
Chris Wilson60990322014-04-09 09:19:42 +01004799 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004800}
4801
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004802void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004803i915_gem_cleanup_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004804{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004805 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004806 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304807 enum intel_engine_id id;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004808
Akash Goel3b3f1652016-10-13 22:44:48 +05304809 for_each_engine(engine, dev_priv, id)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004810 dev_priv->gt.cleanup_engine(engine);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004811}
4812
Eric Anholt673a3942008-07-30 12:06:12 -07004813void
Imre Deak40ae4e12016-03-16 14:54:03 +02004814i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
4815{
Chris Wilson91c8a322016-07-05 10:40:23 +01004816 struct drm_device *dev = &dev_priv->drm;
Chris Wilson49ef5292016-08-18 17:17:00 +01004817 int i;
Imre Deak40ae4e12016-03-16 14:54:03 +02004818
4819 if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) &&
4820 !IS_CHERRYVIEW(dev_priv))
4821 dev_priv->num_fence_regs = 32;
4822 else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) ||
4823 IS_I945GM(dev_priv) || IS_G33(dev_priv))
4824 dev_priv->num_fence_regs = 16;
4825 else
4826 dev_priv->num_fence_regs = 8;
4827
Chris Wilsonc0336662016-05-06 15:40:21 +01004828 if (intel_vgpu_active(dev_priv))
Imre Deak40ae4e12016-03-16 14:54:03 +02004829 dev_priv->num_fence_regs =
4830 I915_READ(vgtif_reg(avail_rs.fence_num));
4831
4832 /* Initialize fence registers to zero */
Chris Wilson49ef5292016-08-18 17:17:00 +01004833 for (i = 0; i < dev_priv->num_fence_regs; i++) {
4834 struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i];
4835
4836 fence->i915 = dev_priv;
4837 fence->id = i;
4838 list_add_tail(&fence->link, &dev_priv->mm.fence_list);
4839 }
Imre Deak40ae4e12016-03-16 14:54:03 +02004840 i915_gem_restore_fences(dev);
4841
4842 i915_gem_detect_bit_6_swizzle(dev);
4843}
4844
4845void
Imre Deakd64aa092016-01-19 15:26:29 +02004846i915_gem_load_init(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004847{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004848 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004849
Chris Wilsonefab6d82015-04-07 16:20:57 +01004850 dev_priv->objects =
Chris Wilson42dcedd2012-11-15 11:32:30 +00004851 kmem_cache_create("i915_gem_object",
4852 sizeof(struct drm_i915_gem_object), 0,
4853 SLAB_HWCACHE_ALIGN,
4854 NULL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01004855 dev_priv->vmas =
4856 kmem_cache_create("i915_gem_vma",
4857 sizeof(struct i915_vma), 0,
4858 SLAB_HWCACHE_ALIGN,
4859 NULL);
Chris Wilsonefab6d82015-04-07 16:20:57 +01004860 dev_priv->requests =
4861 kmem_cache_create("i915_gem_request",
4862 sizeof(struct drm_i915_gem_request), 0,
Chris Wilson0eafec62016-08-04 16:32:41 +01004863 SLAB_HWCACHE_ALIGN |
4864 SLAB_RECLAIM_ACCOUNT |
4865 SLAB_DESTROY_BY_RCU,
Chris Wilsonefab6d82015-04-07 16:20:57 +01004866 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004867
Ben Widawskya33afea2013-09-17 21:12:45 -07004868 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004869 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4870 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004871 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004872 INIT_LIST_HEAD(&dev_priv->mm.userfault_list);
Chris Wilson67d97da2016-07-04 08:08:31 +01004873 INIT_DELAYED_WORK(&dev_priv->gt.retire_work,
Eric Anholt673a3942008-07-30 12:06:12 -07004874 i915_gem_retire_work_handler);
Chris Wilson67d97da2016-07-04 08:08:31 +01004875 INIT_DELAYED_WORK(&dev_priv->gt.idle_work,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004876 i915_gem_idle_work_handler);
Chris Wilson1f15b762016-07-01 17:23:14 +01004877 init_waitqueue_head(&dev_priv->gpu_error.wait_queue);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004878 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004879
Chris Wilson72bfa192010-12-19 11:42:05 +00004880 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4881
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004882 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004883
Chris Wilsonce453d82011-02-21 14:43:56 +00004884 dev_priv->mm.interruptible = true;
4885
Joonas Lahtinen6f633402016-09-01 14:58:21 +03004886 atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0);
4887
Chris Wilsonb5add952016-08-04 16:32:36 +01004888 spin_lock_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004889}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004890
Imre Deakd64aa092016-01-19 15:26:29 +02004891void i915_gem_load_cleanup(struct drm_device *dev)
4892{
4893 struct drm_i915_private *dev_priv = to_i915(dev);
4894
4895 kmem_cache_destroy(dev_priv->requests);
4896 kmem_cache_destroy(dev_priv->vmas);
4897 kmem_cache_destroy(dev_priv->objects);
Chris Wilson0eafec62016-08-04 16:32:41 +01004898
4899 /* And ensure that our DESTROY_BY_RCU slabs are truly destroyed */
4900 rcu_barrier();
Imre Deakd64aa092016-01-19 15:26:29 +02004901}
4902
Chris Wilson6a800ea2016-09-21 14:51:07 +01004903int i915_gem_freeze(struct drm_i915_private *dev_priv)
4904{
4905 intel_runtime_pm_get(dev_priv);
4906
4907 mutex_lock(&dev_priv->drm.struct_mutex);
4908 i915_gem_shrink_all(dev_priv);
4909 mutex_unlock(&dev_priv->drm.struct_mutex);
4910
4911 intel_runtime_pm_put(dev_priv);
4912
4913 return 0;
4914}
4915
Chris Wilson461fb992016-05-14 07:26:33 +01004916int i915_gem_freeze_late(struct drm_i915_private *dev_priv)
4917{
4918 struct drm_i915_gem_object *obj;
Chris Wilson7aab2d52016-09-09 20:02:18 +01004919 struct list_head *phases[] = {
4920 &dev_priv->mm.unbound_list,
4921 &dev_priv->mm.bound_list,
4922 NULL
4923 }, **p;
Chris Wilson461fb992016-05-14 07:26:33 +01004924
4925 /* Called just before we write the hibernation image.
4926 *
4927 * We need to update the domain tracking to reflect that the CPU
4928 * will be accessing all the pages to create and restore from the
4929 * hibernation, and so upon restoration those pages will be in the
4930 * CPU domain.
4931 *
4932 * To make sure the hibernation image contains the latest state,
4933 * we update that state just before writing out the image.
Chris Wilson7aab2d52016-09-09 20:02:18 +01004934 *
4935 * To try and reduce the hibernation image, we manually shrink
4936 * the objects as well.
Chris Wilson461fb992016-05-14 07:26:33 +01004937 */
4938
Chris Wilson6a800ea2016-09-21 14:51:07 +01004939 mutex_lock(&dev_priv->drm.struct_mutex);
4940 i915_gem_shrink(dev_priv, -1UL, I915_SHRINK_UNBOUND);
Chris Wilson461fb992016-05-14 07:26:33 +01004941
Chris Wilson7aab2d52016-09-09 20:02:18 +01004942 for (p = phases; *p; p++) {
4943 list_for_each_entry(obj, *p, global_list) {
4944 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4945 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4946 }
Chris Wilson461fb992016-05-14 07:26:33 +01004947 }
Chris Wilson6a800ea2016-09-21 14:51:07 +01004948 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson461fb992016-05-14 07:26:33 +01004949
4950 return 0;
4951}
4952
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004953void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004954{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004955 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004956 struct drm_i915_gem_request *request;
Eric Anholtb9624422009-06-03 07:27:35 +00004957
4958 /* Clean up our request list when the client is going away, so that
4959 * later retire_requests won't dereference our soon-to-be-gone
4960 * file_priv.
4961 */
Chris Wilson1c255952010-09-26 11:03:27 +01004962 spin_lock(&file_priv->mm.lock);
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004963 list_for_each_entry(request, &file_priv->mm.request_list, client_list)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004964 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01004965 spin_unlock(&file_priv->mm.lock);
Chris Wilson31169712009-09-14 16:50:28 +01004966
Chris Wilson2e1b8732015-04-27 13:41:22 +01004967 if (!list_empty(&file_priv->rps.link)) {
Chris Wilson8d3afd72015-05-21 21:01:47 +01004968 spin_lock(&to_i915(dev)->rps.client_lock);
Chris Wilson2e1b8732015-04-27 13:41:22 +01004969 list_del(&file_priv->rps.link);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004970 spin_unlock(&to_i915(dev)->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004971 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004972}
4973
4974int i915_gem_open(struct drm_device *dev, struct drm_file *file)
4975{
4976 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08004977 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004978
4979 DRM_DEBUG_DRIVER("\n");
4980
4981 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
4982 if (!file_priv)
4983 return -ENOMEM;
4984
4985 file->driver_priv = file_priv;
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004986 file_priv->dev_priv = to_i915(dev);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02004987 file_priv->file = file;
Chris Wilson2e1b8732015-04-27 13:41:22 +01004988 INIT_LIST_HEAD(&file_priv->rps.link);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004989
4990 spin_lock_init(&file_priv->mm.lock);
4991 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004992
Chris Wilsonc80ff162016-07-27 09:07:27 +01004993 file_priv->bsd_engine = -1;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00004994
Ben Widawskye422b882013-12-06 14:10:58 -08004995 ret = i915_gem_context_open(dev, file);
4996 if (ret)
4997 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004998
Ben Widawskye422b882013-12-06 14:10:58 -08004999 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005000}
5001
Daniel Vetterb680c372014-09-19 18:27:27 +02005002/**
5003 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07005004 * @old: current GEM buffer for the frontbuffer slots
5005 * @new: new GEM buffer for the frontbuffer slots
5006 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02005007 *
5008 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5009 * from @old and setting them in @new. Both @old and @new can be NULL.
5010 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005011void i915_gem_track_fb(struct drm_i915_gem_object *old,
5012 struct drm_i915_gem_object *new,
5013 unsigned frontbuffer_bits)
5014{
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005015 /* Control of individual bits within the mask are guarded by
5016 * the owning plane->mutex, i.e. we can never see concurrent
5017 * manipulation of individual bits. But since the bitfield as a whole
5018 * is updated using RMW, we need to use atomics in order to update
5019 * the bits.
5020 */
5021 BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES >
5022 sizeof(atomic_t) * BITS_PER_BYTE);
5023
Daniel Vettera071fa02014-06-18 23:28:09 +02005024 if (old) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005025 WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits));
5026 atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02005027 }
5028
5029 if (new) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01005030 WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits);
5031 atomic_or(frontbuffer_bits, &new->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02005032 }
5033}
5034
Dave Gordon033908a2015-12-10 18:51:23 +00005035/* Like i915_gem_object_get_page(), but mark the returned page dirty */
5036struct page *
5037i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj, int n)
5038{
5039 struct page *page;
5040
5041 /* Only default objects have per-page dirty tracking */
Chris Wilsonb9bcd142016-06-20 15:05:51 +01005042 if (WARN_ON(!i915_gem_object_has_struct_page(obj)))
Dave Gordon033908a2015-12-10 18:51:23 +00005043 return NULL;
5044
5045 page = i915_gem_object_get_page(obj, n);
5046 set_page_dirty(page);
5047 return page;
5048}
5049
Dave Gordonea702992015-07-09 19:29:02 +01005050/* Allocate a new GEM object and fill it with the supplied data */
5051struct drm_i915_gem_object *
5052i915_gem_object_create_from_data(struct drm_device *dev,
5053 const void *data, size_t size)
5054{
5055 struct drm_i915_gem_object *obj;
5056 struct sg_table *sg;
5057 size_t bytes;
5058 int ret;
5059
Dave Gordond37cd8a2016-04-22 19:14:32 +01005060 obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE));
Chris Wilsonfe3db792016-04-25 13:32:13 +01005061 if (IS_ERR(obj))
Dave Gordonea702992015-07-09 19:29:02 +01005062 return obj;
5063
5064 ret = i915_gem_object_set_to_cpu_domain(obj, true);
5065 if (ret)
5066 goto fail;
5067
5068 ret = i915_gem_object_get_pages(obj);
5069 if (ret)
5070 goto fail;
5071
5072 i915_gem_object_pin_pages(obj);
5073 sg = obj->pages;
5074 bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size);
Dave Gordon9e7d18c2015-12-10 18:51:24 +00005075 obj->dirty = 1; /* Backing store is now out of date */
Dave Gordonea702992015-07-09 19:29:02 +01005076 i915_gem_object_unpin_pages(obj);
5077
5078 if (WARN_ON(bytes != size)) {
5079 DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size);
5080 ret = -EFAULT;
5081 goto fail;
5082 }
5083
5084 return obj;
5085
5086fail:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01005087 i915_gem_object_put(obj);
Dave Gordonea702992015-07-09 19:29:02 +01005088 return ERR_PTR(ret);
5089}