blob: faecce3c4d216949917e9bc0b2e530f15e764892 [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"
Yu Zhangeb822892015-02-10 19:05:49 +080032#include "i915_vgpu.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010033#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070034#include "intel_drv.h"
Chris Wilson5d723d72016-08-04 16:32:35 +010035#include "intel_frontbuffer.h"
Peter Antoine0ccdacf2016-04-13 15:03:25 +010036#include "intel_mocs.h"
Chris Wilsonc13d87e2016-07-20 09:21:15 +010037#include <linux/reservation.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070038#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080041#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020042#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070043
Chris Wilsonfbbd37b2016-10-28 13:58:42 +010044static void i915_gem_flush_free_objects(struct drm_i915_private *i915);
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{
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +000051 return HAS_LLC(to_i915(dev)) || level != I915_CACHE_NONE;
Chris Wilsonc76ce032013-08-08 14:41:03 +010052}
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
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +010066insert_mappable_node(struct i915_ggtt *ggtt,
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053067 struct drm_mm_node *node, u32 size)
68{
69 memset(node, 0, sizeof(*node));
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +010070 return drm_mm_insert_node_in_range_generic(&ggtt->base.mm, node,
71 size, 0, -1,
72 0, ggtt->mappable_end,
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053073 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 Wilson03ac84f2016-10-28 13:58:36 +0100172static struct sg_table *
Chris Wilson6a2c4232014-11-04 04:51:40 -0800173i915_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)))
Chris Wilson03ac84f2016-10-28 13:58:36 +0100182 return ERR_PTR(-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))
Chris Wilson03ac84f2016-10-28 13:58:36 +0100190 return ERR_CAST(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800191
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)
Chris Wilson03ac84f2016-10-28 13:58:36 +0100205 return ERR_PTR(-ENOMEM);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800206
207 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
208 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100209 return ERR_PTR(-ENOMEM);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800210 }
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
Chris Wilson03ac84f2016-10-28 13:58:36 +0100219 return st;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800220}
221
222static void
Chris Wilson2b3c8312016-11-11 14:58:09 +0000223__i915_gem_object_release_shmem(struct drm_i915_gem_object *obj,
224 struct sg_table *pages)
Chris Wilson6a2c4232014-11-04 04:51:40 -0800225{
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100226 GEM_BUG_ON(obj->mm.madv == __I915_MADV_PURGED);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800227
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100228 if (obj->mm.madv == I915_MADV_DONTNEED)
229 obj->mm.dirty = false;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800230
Chris Wilson03ac84f2016-10-28 13:58:36 +0100231 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
Chris Wilson2b3c8312016-11-11 14:58:09 +0000232 drm_clflush_sg(pages);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100233
234 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
235 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
236}
237
238static void
239i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj,
240 struct sg_table *pages)
241{
Chris Wilson2b3c8312016-11-11 14:58:09 +0000242 __i915_gem_object_release_shmem(obj, pages);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100243
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100244 if (obj->mm.dirty) {
Al Viro93c76a32015-12-04 23:45:44 -0500245 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800246 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100247 int i;
248
249 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800250 struct page *page;
251 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100252
Chris Wilson6a2c4232014-11-04 04:51:40 -0800253 page = shmem_read_mapping_page(mapping, i);
254 if (IS_ERR(page))
255 continue;
256
257 dst = kmap_atomic(page);
258 drm_clflush_virt_range(vaddr, PAGE_SIZE);
259 memcpy(dst, vaddr, PAGE_SIZE);
260 kunmap_atomic(dst);
261
262 set_page_dirty(page);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100263 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100264 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300265 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100266 vaddr += PAGE_SIZE;
267 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100268 obj->mm.dirty = false;
Chris Wilson00731152014-05-21 12:42:56 +0100269 }
270
Chris Wilson03ac84f2016-10-28 13:58:36 +0100271 sg_free_table(pages);
272 kfree(pages);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800273}
274
275static void
276i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
277{
278 drm_pci_free(obj->base.dev, obj->phys_handle);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100279 i915_gem_object_unpin_pages(obj);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800280}
281
282static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
283 .get_pages = i915_gem_object_get_pages_phys,
284 .put_pages = i915_gem_object_put_pages_phys,
285 .release = i915_gem_object_release_phys,
286};
287
Chris Wilson35a96112016-08-14 18:44:40 +0100288int i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Chris Wilsonaa653a62016-08-04 07:52:27 +0100289{
290 struct i915_vma *vma;
291 LIST_HEAD(still_in_list);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100292 int ret;
Chris Wilsonaa653a62016-08-04 07:52:27 +0100293
Chris Wilson02bef8f2016-08-14 18:44:41 +0100294 lockdep_assert_held(&obj->base.dev->struct_mutex);
295
296 /* Closed vma are removed from the obj->vma_list - but they may
297 * still have an active binding on the object. To remove those we
298 * must wait for all rendering to complete to the object (as unbinding
299 * must anyway), and retire the requests.
Chris Wilsonaa653a62016-08-04 07:52:27 +0100300 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100301 ret = i915_gem_object_wait(obj,
302 I915_WAIT_INTERRUPTIBLE |
303 I915_WAIT_LOCKED |
304 I915_WAIT_ALL,
305 MAX_SCHEDULE_TIMEOUT,
306 NULL);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100307 if (ret)
308 return ret;
309
310 i915_gem_retire_requests(to_i915(obj->base.dev));
311
Chris Wilsonaa653a62016-08-04 07:52:27 +0100312 while ((vma = list_first_entry_or_null(&obj->vma_list,
313 struct i915_vma,
314 obj_link))) {
315 list_move_tail(&vma->obj_link, &still_in_list);
316 ret = i915_vma_unbind(vma);
317 if (ret)
318 break;
319 }
320 list_splice(&still_in_list, &obj->vma_list);
321
322 return ret;
323}
324
Chris Wilsone95433c2016-10-28 13:58:27 +0100325static long
326i915_gem_object_wait_fence(struct dma_fence *fence,
327 unsigned int flags,
328 long timeout,
329 struct intel_rps_client *rps)
330{
331 struct drm_i915_gem_request *rq;
332
333 BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1);
334
335 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
336 return timeout;
337
338 if (!dma_fence_is_i915(fence))
339 return dma_fence_wait_timeout(fence,
340 flags & I915_WAIT_INTERRUPTIBLE,
341 timeout);
342
343 rq = to_request(fence);
344 if (i915_gem_request_completed(rq))
345 goto out;
346
347 /* This client is about to stall waiting for the GPU. In many cases
348 * this is undesirable and limits the throughput of the system, as
349 * many clients cannot continue processing user input/output whilst
350 * blocked. RPS autotuning may take tens of milliseconds to respond
351 * to the GPU load and thus incurs additional latency for the client.
352 * We can circumvent that by promoting the GPU frequency to maximum
353 * before we wait. This makes the GPU throttle up much more quickly
354 * (good for benchmarks and user experience, e.g. window animations),
355 * but at a cost of spending more power processing the workload
356 * (bad for battery). Not all clients even want their results
357 * immediately and for them we should just let the GPU select its own
358 * frequency to maximise efficiency. To prevent a single client from
359 * forcing the clocks too high for the whole system, we only allow
360 * each client to waitboost once in a busy period.
361 */
362 if (rps) {
363 if (INTEL_GEN(rq->i915) >= 6)
364 gen6_rps_boost(rq->i915, rps, rq->emitted_jiffies);
365 else
366 rps = NULL;
367 }
368
369 timeout = i915_wait_request(rq, flags, timeout);
370
371out:
372 if (flags & I915_WAIT_LOCKED && i915_gem_request_completed(rq))
373 i915_gem_request_retire_upto(rq);
374
Chris Wilsoncb399ea2016-11-01 10:03:16 +0000375 if (rps && rq->global_seqno == intel_engine_last_submit(rq->engine)) {
Chris Wilsone95433c2016-10-28 13:58:27 +0100376 /* The GPU is now idle and this client has stalled.
377 * Since no other client has submitted a request in the
378 * meantime, assume that this client is the only one
379 * supplying work to the GPU but is unable to keep that
380 * work supplied because it is waiting. Since the GPU is
381 * then never kept fully busy, RPS autoclocking will
382 * keep the clocks relatively low, causing further delays.
383 * Compensate by giving the synchronous client credit for
384 * a waitboost next time.
385 */
386 spin_lock(&rq->i915->rps.client_lock);
387 list_del_init(&rps->link);
388 spin_unlock(&rq->i915->rps.client_lock);
389 }
390
391 return timeout;
392}
393
394static long
395i915_gem_object_wait_reservation(struct reservation_object *resv,
396 unsigned int flags,
397 long timeout,
398 struct intel_rps_client *rps)
399{
400 struct dma_fence *excl;
401
402 if (flags & I915_WAIT_ALL) {
403 struct dma_fence **shared;
404 unsigned int count, i;
405 int ret;
406
407 ret = reservation_object_get_fences_rcu(resv,
408 &excl, &count, &shared);
409 if (ret)
410 return ret;
411
412 for (i = 0; i < count; i++) {
413 timeout = i915_gem_object_wait_fence(shared[i],
414 flags, timeout,
415 rps);
416 if (timeout <= 0)
417 break;
418
419 dma_fence_put(shared[i]);
420 }
421
422 for (; i < count; i++)
423 dma_fence_put(shared[i]);
424 kfree(shared);
425 } else {
426 excl = reservation_object_get_excl_rcu(resv);
427 }
428
429 if (excl && timeout > 0)
430 timeout = i915_gem_object_wait_fence(excl, flags, timeout, rps);
431
432 dma_fence_put(excl);
433
434 return timeout;
435}
436
Chris Wilson00e60f22016-08-04 16:32:40 +0100437/**
Chris Wilsone95433c2016-10-28 13:58:27 +0100438 * Waits for rendering to the object to be completed
Chris Wilson00e60f22016-08-04 16:32:40 +0100439 * @obj: i915 gem object
Chris Wilsone95433c2016-10-28 13:58:27 +0100440 * @flags: how to wait (under a lock, for all rendering or just for writes etc)
441 * @timeout: how long to wait
442 * @rps: client (user process) to charge for any waitboosting
Chris Wilson00e60f22016-08-04 16:32:40 +0100443 */
444int
Chris Wilsone95433c2016-10-28 13:58:27 +0100445i915_gem_object_wait(struct drm_i915_gem_object *obj,
446 unsigned int flags,
447 long timeout,
448 struct intel_rps_client *rps)
Chris Wilson00e60f22016-08-04 16:32:40 +0100449{
Chris Wilsone95433c2016-10-28 13:58:27 +0100450 might_sleep();
451#if IS_ENABLED(CONFIG_LOCKDEP)
452 GEM_BUG_ON(debug_locks &&
453 !!lockdep_is_held(&obj->base.dev->struct_mutex) !=
454 !!(flags & I915_WAIT_LOCKED));
455#endif
456 GEM_BUG_ON(timeout < 0);
Chris Wilson00e60f22016-08-04 16:32:40 +0100457
Chris Wilsond07f0e52016-10-28 13:58:44 +0100458 timeout = i915_gem_object_wait_reservation(obj->resv,
459 flags, timeout,
460 rps);
Chris Wilsone95433c2016-10-28 13:58:27 +0100461 return timeout < 0 ? timeout : 0;
Chris Wilson00e60f22016-08-04 16:32:40 +0100462}
463
464static struct intel_rps_client *to_rps_client(struct drm_file *file)
465{
466 struct drm_i915_file_private *fpriv = file->driver_priv;
467
468 return &fpriv->rps;
469}
470
Chris Wilson00731152014-05-21 12:42:56 +0100471int
472i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
473 int align)
474{
475 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800476 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100477
478 if (obj->phys_handle) {
479 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
480 return -EBUSY;
481
482 return 0;
483 }
484
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100485 if (obj->mm.madv != I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100486 return -EFAULT;
487
488 if (obj->base.filp == NULL)
489 return -EINVAL;
490
Chris Wilson4717ca92016-08-04 07:52:28 +0100491 ret = i915_gem_object_unbind(obj);
492 if (ret)
493 return ret;
494
Chris Wilson548625e2016-11-01 12:11:34 +0000495 __i915_gem_object_put_pages(obj, I915_MM_NORMAL);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100496 if (obj->mm.pages)
497 return -EBUSY;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800498
Chris Wilson00731152014-05-21 12:42:56 +0100499 /* create a new object */
500 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
501 if (!phys)
502 return -ENOMEM;
503
Chris Wilson00731152014-05-21 12:42:56 +0100504 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800505 obj->ops = &i915_gem_phys_ops;
506
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100507 return i915_gem_object_pin_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100508}
509
510static int
511i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
512 struct drm_i915_gem_pwrite *args,
Chris Wilson03ac84f2016-10-28 13:58:36 +0100513 struct drm_file *file)
Chris Wilson00731152014-05-21 12:42:56 +0100514{
515 struct drm_device *dev = obj->base.dev;
516 void *vaddr = obj->phys_handle->vaddr + args->offset;
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300517 char __user *user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilsone95433c2016-10-28 13:58:27 +0100518 int ret;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800519
520 /* We manually control the domain here and pretend that it
521 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
522 */
Chris Wilsone95433c2016-10-28 13:58:27 +0100523 lockdep_assert_held(&obj->base.dev->struct_mutex);
524 ret = i915_gem_object_wait(obj,
525 I915_WAIT_INTERRUPTIBLE |
526 I915_WAIT_LOCKED |
527 I915_WAIT_ALL,
528 MAX_SCHEDULE_TIMEOUT,
Chris Wilson03ac84f2016-10-28 13:58:36 +0100529 to_rps_client(file));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800530 if (ret)
531 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100532
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700533 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100534 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
535 unsigned long unwritten;
536
537 /* The physical object once assigned is fixed for the lifetime
538 * of the obj, so we can safely drop the lock and continue
539 * to access vaddr.
540 */
541 mutex_unlock(&dev->struct_mutex);
542 unwritten = copy_from_user(vaddr, user_data, args->size);
543 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200544 if (unwritten) {
545 ret = -EFAULT;
546 goto out;
547 }
Chris Wilson00731152014-05-21 12:42:56 +0100548 }
549
Chris Wilson6a2c4232014-11-04 04:51:40 -0800550 drm_clflush_virt_range(vaddr, args->size);
Chris Wilsonc0336662016-05-06 15:40:21 +0100551 i915_gem_chipset_flush(to_i915(dev));
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200552
553out:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700554 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200555 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100556}
557
Chris Wilson42dcedd2012-11-15 11:32:30 +0000558void *i915_gem_object_alloc(struct drm_device *dev)
559{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100560 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100561 return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000562}
563
564void i915_gem_object_free(struct drm_i915_gem_object *obj)
565{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100566 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonefab6d82015-04-07 16:20:57 +0100567 kmem_cache_free(dev_priv->objects, obj);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000568}
569
Dave Airlieff72145b2011-02-07 12:16:14 +1000570static int
571i915_gem_create(struct drm_file *file,
572 struct drm_device *dev,
573 uint64_t size,
574 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700575{
Chris Wilson05394f32010-11-08 19:18:58 +0000576 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300577 int ret;
578 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700579
Dave Airlieff72145b2011-02-07 12:16:14 +1000580 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200581 if (size == 0)
582 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700583
584 /* Allocate the new object */
Dave Gordond37cd8a2016-04-22 19:14:32 +0100585 obj = i915_gem_object_create(dev, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100586 if (IS_ERR(obj))
587 return PTR_ERR(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700588
Chris Wilson05394f32010-11-08 19:18:58 +0000589 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100590 /* drop reference from allocate - handle holds it now */
Chris Wilsonf0cd5182016-10-28 13:58:43 +0100591 i915_gem_object_put(obj);
Daniel Vetterd861e332013-07-24 23:25:03 +0200592 if (ret)
593 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100594
Dave Airlieff72145b2011-02-07 12:16:14 +1000595 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700596 return 0;
597}
598
Dave Airlieff72145b2011-02-07 12:16:14 +1000599int
600i915_gem_dumb_create(struct drm_file *file,
601 struct drm_device *dev,
602 struct drm_mode_create_dumb *args)
603{
604 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300605 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000606 args->size = args->pitch * args->height;
607 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000608 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000609}
610
Dave Airlieff72145b2011-02-07 12:16:14 +1000611/**
612 * Creates a new mm object and returns a handle to it.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100613 * @dev: drm device pointer
614 * @data: ioctl data blob
615 * @file: drm file pointer
Dave Airlieff72145b2011-02-07 12:16:14 +1000616 */
617int
618i915_gem_create_ioctl(struct drm_device *dev, void *data,
619 struct drm_file *file)
620{
621 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200622
Chris Wilsonfbbd37b2016-10-28 13:58:42 +0100623 i915_gem_flush_free_objects(to_i915(dev));
624
Dave Airlieff72145b2011-02-07 12:16:14 +1000625 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000626 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000627}
628
Daniel Vetter8c599672011-12-14 13:57:31 +0100629static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100630__copy_to_user_swizzled(char __user *cpu_vaddr,
631 const char *gpu_vaddr, int gpu_offset,
632 int length)
633{
634 int ret, cpu_offset = 0;
635
636 while (length > 0) {
637 int cacheline_end = ALIGN(gpu_offset + 1, 64);
638 int this_length = min(cacheline_end - gpu_offset, length);
639 int swizzled_gpu_offset = gpu_offset ^ 64;
640
641 ret = __copy_to_user(cpu_vaddr + cpu_offset,
642 gpu_vaddr + swizzled_gpu_offset,
643 this_length);
644 if (ret)
645 return ret + length;
646
647 cpu_offset += this_length;
648 gpu_offset += this_length;
649 length -= this_length;
650 }
651
652 return 0;
653}
654
655static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700656__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
657 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100658 int length)
659{
660 int ret, cpu_offset = 0;
661
662 while (length > 0) {
663 int cacheline_end = ALIGN(gpu_offset + 1, 64);
664 int this_length = min(cacheline_end - gpu_offset, length);
665 int swizzled_gpu_offset = gpu_offset ^ 64;
666
667 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
668 cpu_vaddr + cpu_offset,
669 this_length);
670 if (ret)
671 return ret + length;
672
673 cpu_offset += this_length;
674 gpu_offset += this_length;
675 length -= this_length;
676 }
677
678 return 0;
679}
680
Brad Volkin4c914c02014-02-18 10:15:45 -0800681/*
682 * Pins the specified object's pages and synchronizes the object with
683 * GPU accesses. Sets needs_clflush to non-zero if the caller should
684 * flush the object from the CPU cache.
685 */
686int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
Chris Wilson43394c72016-08-18 17:16:47 +0100687 unsigned int *needs_clflush)
Brad Volkin4c914c02014-02-18 10:15:45 -0800688{
689 int ret;
690
Chris Wilsone95433c2016-10-28 13:58:27 +0100691 lockdep_assert_held(&obj->base.dev->struct_mutex);
Brad Volkin4c914c02014-02-18 10:15:45 -0800692
Chris Wilsone95433c2016-10-28 13:58:27 +0100693 *needs_clflush = 0;
Chris Wilson43394c72016-08-18 17:16:47 +0100694 if (!i915_gem_object_has_struct_page(obj))
695 return -ENODEV;
Brad Volkin4c914c02014-02-18 10:15:45 -0800696
Chris Wilsone95433c2016-10-28 13:58:27 +0100697 ret = i915_gem_object_wait(obj,
698 I915_WAIT_INTERRUPTIBLE |
699 I915_WAIT_LOCKED,
700 MAX_SCHEDULE_TIMEOUT,
701 NULL);
Chris Wilsonc13d87e2016-07-20 09:21:15 +0100702 if (ret)
703 return ret;
704
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100705 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100706 if (ret)
707 return ret;
708
Chris Wilsona314d5c2016-08-18 17:16:48 +0100709 i915_gem_object_flush_gtt_write_domain(obj);
710
Chris Wilson43394c72016-08-18 17:16:47 +0100711 /* If we're not in the cpu read domain, set ourself into the gtt
712 * read domain and manually flush cachelines (if required). This
713 * optimizes for the case when the gpu will dirty the data
714 * anyway again before the next pread happens.
715 */
716 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
Brad Volkin4c914c02014-02-18 10:15:45 -0800717 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
718 obj->cache_level);
Brad Volkin4c914c02014-02-18 10:15:45 -0800719
Chris Wilson43394c72016-08-18 17:16:47 +0100720 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
721 ret = i915_gem_object_set_to_cpu_domain(obj, false);
Chris Wilson97649512016-08-18 17:16:50 +0100722 if (ret)
723 goto err_unpin;
724
Chris Wilson43394c72016-08-18 17:16:47 +0100725 *needs_clflush = 0;
726 }
727
Chris Wilson97649512016-08-18 17:16:50 +0100728 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100729 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100730
731err_unpin:
732 i915_gem_object_unpin_pages(obj);
733 return ret;
Chris Wilson43394c72016-08-18 17:16:47 +0100734}
735
736int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj,
737 unsigned int *needs_clflush)
738{
739 int ret;
740
Chris Wilsone95433c2016-10-28 13:58:27 +0100741 lockdep_assert_held(&obj->base.dev->struct_mutex);
742
Chris Wilson43394c72016-08-18 17:16:47 +0100743 *needs_clflush = 0;
744 if (!i915_gem_object_has_struct_page(obj))
745 return -ENODEV;
746
Chris Wilsone95433c2016-10-28 13:58:27 +0100747 ret = i915_gem_object_wait(obj,
748 I915_WAIT_INTERRUPTIBLE |
749 I915_WAIT_LOCKED |
750 I915_WAIT_ALL,
751 MAX_SCHEDULE_TIMEOUT,
752 NULL);
Chris Wilson43394c72016-08-18 17:16:47 +0100753 if (ret)
754 return ret;
755
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100756 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100757 if (ret)
758 return ret;
759
Chris Wilsona314d5c2016-08-18 17:16:48 +0100760 i915_gem_object_flush_gtt_write_domain(obj);
761
Chris Wilson43394c72016-08-18 17:16:47 +0100762 /* If we're not in the cpu write domain, set ourself into the
763 * gtt write domain and manually flush cachelines (as required).
764 * This optimizes for the case when the gpu will use the data
765 * right away and we therefore have to clflush anyway.
766 */
767 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
768 *needs_clflush |= cpu_write_needs_clflush(obj) << 1;
769
770 /* Same trick applies to invalidate partially written cachelines read
771 * before writing.
772 */
773 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU))
774 *needs_clflush |= !cpu_cache_is_coherent(obj->base.dev,
775 obj->cache_level);
776
Chris Wilson43394c72016-08-18 17:16:47 +0100777 if (*needs_clflush && !static_cpu_has(X86_FEATURE_CLFLUSH)) {
778 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilson97649512016-08-18 17:16:50 +0100779 if (ret)
780 goto err_unpin;
781
Chris Wilson43394c72016-08-18 17:16:47 +0100782 *needs_clflush = 0;
783 }
784
785 if ((*needs_clflush & CLFLUSH_AFTER) == 0)
786 obj->cache_dirty = true;
787
788 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100789 obj->mm.dirty = true;
Chris Wilson97649512016-08-18 17:16:50 +0100790 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100791 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100792
793err_unpin:
794 i915_gem_object_unpin_pages(obj);
795 return ret;
Brad Volkin4c914c02014-02-18 10:15:45 -0800796}
797
Daniel Vetter23c18c72012-03-25 19:47:42 +0200798static void
799shmem_clflush_swizzled_range(char *addr, unsigned long length,
800 bool swizzled)
801{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200802 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200803 unsigned long start = (unsigned long) addr;
804 unsigned long end = (unsigned long) addr + length;
805
806 /* For swizzling simply ensure that we always flush both
807 * channels. Lame, but simple and it works. Swizzled
808 * pwrite/pread is far from a hotpath - current userspace
809 * doesn't use it at all. */
810 start = round_down(start, 128);
811 end = round_up(end, 128);
812
813 drm_clflush_virt_range((void *)start, end - start);
814 } else {
815 drm_clflush_virt_range(addr, length);
816 }
817
818}
819
Daniel Vetterd174bd62012-03-25 19:47:40 +0200820/* Only difference to the fast-path function is that this can handle bit17
821 * and uses non-atomic copy and kmap functions. */
822static int
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100823shmem_pread_slow(struct page *page, int offset, int length,
Daniel Vetterd174bd62012-03-25 19:47:40 +0200824 char __user *user_data,
825 bool page_do_bit17_swizzling, bool needs_clflush)
826{
827 char *vaddr;
828 int ret;
829
830 vaddr = kmap(page);
831 if (needs_clflush)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100832 shmem_clflush_swizzled_range(vaddr + offset, length,
Daniel Vetter23c18c72012-03-25 19:47:42 +0200833 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200834
835 if (page_do_bit17_swizzling)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100836 ret = __copy_to_user_swizzled(user_data, vaddr, offset, length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200837 else
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100838 ret = __copy_to_user(user_data, vaddr + offset, length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200839 kunmap(page);
840
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100841 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200842}
843
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100844static int
845shmem_pread(struct page *page, int offset, int length, char __user *user_data,
846 bool page_do_bit17_swizzling, bool needs_clflush)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530847{
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100848 int ret;
849
850 ret = -ENODEV;
851 if (!page_do_bit17_swizzling) {
852 char *vaddr = kmap_atomic(page);
853
854 if (needs_clflush)
855 drm_clflush_virt_range(vaddr + offset, length);
856 ret = __copy_to_user_inatomic(user_data, vaddr + offset, length);
857 kunmap_atomic(vaddr);
858 }
859 if (ret == 0)
860 return 0;
861
862 return shmem_pread_slow(page, offset, length, user_data,
863 page_do_bit17_swizzling, needs_clflush);
864}
865
866static int
867i915_gem_shmem_pread(struct drm_i915_gem_object *obj,
868 struct drm_i915_gem_pread *args)
869{
870 char __user *user_data;
871 u64 remain;
872 unsigned int obj_do_bit17_swizzling;
873 unsigned int needs_clflush;
874 unsigned int idx, offset;
875 int ret;
876
877 obj_do_bit17_swizzling = 0;
878 if (i915_gem_object_needs_bit17_swizzle(obj))
879 obj_do_bit17_swizzling = BIT(17);
880
881 ret = mutex_lock_interruptible(&obj->base.dev->struct_mutex);
882 if (ret)
883 return ret;
884
885 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
886 mutex_unlock(&obj->base.dev->struct_mutex);
887 if (ret)
888 return ret;
889
890 remain = args->size;
891 user_data = u64_to_user_ptr(args->data_ptr);
892 offset = offset_in_page(args->offset);
893 for (idx = args->offset >> PAGE_SHIFT; remain; idx++) {
894 struct page *page = i915_gem_object_get_page(obj, idx);
895 int length;
896
897 length = remain;
898 if (offset + length > PAGE_SIZE)
899 length = PAGE_SIZE - offset;
900
901 ret = shmem_pread(page, offset, length, user_data,
902 page_to_phys(page) & obj_do_bit17_swizzling,
903 needs_clflush);
904 if (ret)
905 break;
906
907 remain -= length;
908 user_data += length;
909 offset = 0;
910 }
911
912 i915_gem_obj_finish_shmem_access(obj);
913 return ret;
914}
915
916static inline bool
917gtt_user_read(struct io_mapping *mapping,
918 loff_t base, int offset,
919 char __user *user_data, int length)
920{
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530921 void *vaddr;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100922 unsigned long unwritten;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530923
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530924 /* We can use the cpu mem copy function because this is X86. */
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100925 vaddr = (void __force *)io_mapping_map_atomic_wc(mapping, base);
926 unwritten = __copy_to_user_inatomic(user_data, vaddr + offset, length);
927 io_mapping_unmap_atomic(vaddr);
928 if (unwritten) {
929 vaddr = (void __force *)
930 io_mapping_map_wc(mapping, base, PAGE_SIZE);
931 unwritten = copy_to_user(user_data, vaddr + offset, length);
932 io_mapping_unmap(vaddr);
933 }
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530934 return unwritten;
935}
936
937static int
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100938i915_gem_gtt_pread(struct drm_i915_gem_object *obj,
939 const struct drm_i915_gem_pread *args)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530940{
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100941 struct drm_i915_private *i915 = to_i915(obj->base.dev);
942 struct i915_ggtt *ggtt = &i915->ggtt;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530943 struct drm_mm_node node;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100944 struct i915_vma *vma;
945 void __user *user_data;
946 u64 remain, offset;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530947 int ret;
948
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100949 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
950 if (ret)
951 return ret;
952
953 intel_runtime_pm_get(i915);
954 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
955 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +0100956 if (!IS_ERR(vma)) {
957 node.start = i915_ggtt_offset(vma);
958 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +0100959 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +0100960 if (ret) {
961 i915_vma_unpin(vma);
962 vma = ERR_PTR(ret);
963 }
964 }
Chris Wilson058d88c2016-08-15 10:49:06 +0100965 if (IS_ERR(vma)) {
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100966 ret = insert_mappable_node(ggtt, &node, PAGE_SIZE);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530967 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100968 goto out_unlock;
969 GEM_BUG_ON(!node.allocated);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530970 }
971
972 ret = i915_gem_object_set_to_gtt_domain(obj, false);
973 if (ret)
974 goto out_unpin;
975
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100976 mutex_unlock(&i915->drm.struct_mutex);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530977
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100978 user_data = u64_to_user_ptr(args->data_ptr);
979 remain = args->size;
980 offset = args->offset;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530981
982 while (remain > 0) {
983 /* Operation in this page
984 *
985 * page_base = page offset within aperture
986 * page_offset = offset within page
987 * page_length = bytes to copy for this page
988 */
989 u32 page_base = node.start;
990 unsigned page_offset = offset_in_page(offset);
991 unsigned page_length = PAGE_SIZE - page_offset;
992 page_length = remain < page_length ? remain : page_length;
993 if (node.allocated) {
994 wmb();
995 ggtt->base.insert_page(&ggtt->base,
996 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100997 node.start, I915_CACHE_NONE, 0);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530998 wmb();
999 } else {
1000 page_base += offset & PAGE_MASK;
1001 }
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001002
1003 if (gtt_user_read(&ggtt->mappable, page_base, page_offset,
1004 user_data, page_length)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301005 ret = -EFAULT;
1006 break;
1007 }
1008
1009 remain -= page_length;
1010 user_data += page_length;
1011 offset += page_length;
1012 }
1013
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001014 mutex_lock(&i915->drm.struct_mutex);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301015out_unpin:
1016 if (node.allocated) {
1017 wmb();
1018 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001019 node.start, node.size);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301020 remove_mappable_node(&node);
1021 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001022 i915_vma_unpin(vma);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301023 }
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001024out_unlock:
1025 intel_runtime_pm_put(i915);
1026 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +01001027
Eric Anholteb014592009-03-10 11:44:52 -07001028 return ret;
1029}
1030
Eric Anholt673a3942008-07-30 12:06:12 -07001031/**
1032 * Reads data from the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001033 * @dev: drm device pointer
1034 * @data: ioctl data blob
1035 * @file: drm file pointer
Eric Anholt673a3942008-07-30 12:06:12 -07001036 *
1037 * On error, the contents of *data are undefined.
1038 */
1039int
1040i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001041 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001042{
1043 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001044 struct drm_i915_gem_object *obj;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001045 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001046
Chris Wilson51311d02010-11-17 09:10:42 +00001047 if (args->size == 0)
1048 return 0;
1049
1050 if (!access_ok(VERIFY_WRITE,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001051 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001052 args->size))
1053 return -EFAULT;
1054
Chris Wilson03ac0642016-07-20 13:31:51 +01001055 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001056 if (!obj)
1057 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001058
Chris Wilson7dcd2492010-09-26 20:21:44 +01001059 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +00001060 if (args->offset > obj->base.size ||
1061 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001062 ret = -EINVAL;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001063 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001064 }
1065
Chris Wilsondb53a302011-02-03 11:57:46 +00001066 trace_i915_gem_object_pread(obj, args->offset, args->size);
1067
Chris Wilsone95433c2016-10-28 13:58:27 +01001068 ret = i915_gem_object_wait(obj,
1069 I915_WAIT_INTERRUPTIBLE,
1070 MAX_SCHEDULE_TIMEOUT,
1071 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001072 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001073 goto out;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001074
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001075 ret = i915_gem_object_pin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001076 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001077 goto out;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001078
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001079 ret = i915_gem_shmem_pread(obj, args);
Chris Wilson9c870d02016-10-24 13:42:15 +01001080 if (ret == -EFAULT || ret == -ENODEV)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001081 ret = i915_gem_gtt_pread(obj, args);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301082
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001083 i915_gem_object_unpin_pages(obj);
1084out:
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001085 i915_gem_object_put(obj);
Eric Anholteb014592009-03-10 11:44:52 -07001086 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001087}
1088
Keith Packard0839ccb2008-10-30 19:38:48 -07001089/* This is the fast write path which cannot handle
1090 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001091 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001092
Chris Wilsonfe115622016-10-28 13:58:40 +01001093static inline bool
1094ggtt_write(struct io_mapping *mapping,
1095 loff_t base, int offset,
1096 char __user *user_data, int length)
Keith Packard0839ccb2008-10-30 19:38:48 -07001097{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001098 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -07001099 unsigned long unwritten;
1100
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001101 /* We can use the cpu mem copy function because this is X86. */
Chris Wilsonfe115622016-10-28 13:58:40 +01001102 vaddr = (void __force *)io_mapping_map_atomic_wc(mapping, base);
1103 unwritten = __copy_from_user_inatomic_nocache(vaddr + offset,
Keith Packard0839ccb2008-10-30 19:38:48 -07001104 user_data, length);
Chris Wilsonfe115622016-10-28 13:58:40 +01001105 io_mapping_unmap_atomic(vaddr);
1106 if (unwritten) {
1107 vaddr = (void __force *)
1108 io_mapping_map_wc(mapping, base, PAGE_SIZE);
1109 unwritten = copy_from_user(vaddr + offset, user_data, length);
1110 io_mapping_unmap(vaddr);
1111 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001112
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001113 return unwritten;
1114}
1115
Eric Anholt3de09aa2009-03-09 09:42:23 -07001116/**
1117 * This is the fast pwrite path, where we copy the data directly from the
1118 * user into the GTT, uncached.
Chris Wilsonfe115622016-10-28 13:58:40 +01001119 * @obj: i915 GEM object
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001120 * @args: pwrite arguments structure
Eric Anholt3de09aa2009-03-09 09:42:23 -07001121 */
Eric Anholt673a3942008-07-30 12:06:12 -07001122static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001123i915_gem_gtt_pwrite_fast(struct drm_i915_gem_object *obj,
1124 const struct drm_i915_gem_pwrite *args)
Eric Anholt673a3942008-07-30 12:06:12 -07001125{
Chris Wilsonfe115622016-10-28 13:58:40 +01001126 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301127 struct i915_ggtt *ggtt = &i915->ggtt;
1128 struct drm_mm_node node;
Chris Wilsonfe115622016-10-28 13:58:40 +01001129 struct i915_vma *vma;
1130 u64 remain, offset;
1131 void __user *user_data;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301132 int ret;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301133
Chris Wilsonfe115622016-10-28 13:58:40 +01001134 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
1135 if (ret)
1136 return ret;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001137
Chris Wilson9c870d02016-10-24 13:42:15 +01001138 intel_runtime_pm_get(i915);
Chris Wilson058d88c2016-08-15 10:49:06 +01001139 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilsonde895082016-08-04 16:32:34 +01001140 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +01001141 if (!IS_ERR(vma)) {
1142 node.start = i915_ggtt_offset(vma);
1143 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +01001144 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +01001145 if (ret) {
1146 i915_vma_unpin(vma);
1147 vma = ERR_PTR(ret);
1148 }
1149 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001150 if (IS_ERR(vma)) {
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001151 ret = insert_mappable_node(ggtt, &node, PAGE_SIZE);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301152 if (ret)
Chris Wilsonfe115622016-10-28 13:58:40 +01001153 goto out_unlock;
1154 GEM_BUG_ON(!node.allocated);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301155 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001156
1157 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1158 if (ret)
1159 goto out_unpin;
1160
Chris Wilsonfe115622016-10-28 13:58:40 +01001161 mutex_unlock(&i915->drm.struct_mutex);
1162
Chris Wilsonb19482d2016-08-18 17:16:43 +01001163 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001164
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301165 user_data = u64_to_user_ptr(args->data_ptr);
1166 offset = args->offset;
1167 remain = args->size;
1168 while (remain) {
Eric Anholt673a3942008-07-30 12:06:12 -07001169 /* Operation in this page
1170 *
Keith Packard0839ccb2008-10-30 19:38:48 -07001171 * page_base = page offset within aperture
1172 * page_offset = offset within page
1173 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -07001174 */
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301175 u32 page_base = node.start;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001176 unsigned int page_offset = offset_in_page(offset);
1177 unsigned int page_length = PAGE_SIZE - page_offset;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301178 page_length = remain < page_length ? remain : page_length;
1179 if (node.allocated) {
1180 wmb(); /* flush the write before we modify the GGTT */
1181 ggtt->base.insert_page(&ggtt->base,
1182 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
1183 node.start, I915_CACHE_NONE, 0);
1184 wmb(); /* flush modifications to the GGTT (insert_page) */
1185 } else {
1186 page_base += offset & PAGE_MASK;
1187 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001188 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -07001189 * source page isn't available. Return the error and we'll
1190 * retry in the slow path.
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301191 * If the object is non-shmem backed, we retry again with the
1192 * path that handles page fault.
Keith Packard0839ccb2008-10-30 19:38:48 -07001193 */
Chris Wilsonfe115622016-10-28 13:58:40 +01001194 if (ggtt_write(&ggtt->mappable, page_base, page_offset,
1195 user_data, page_length)) {
1196 ret = -EFAULT;
1197 break;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001198 }
Eric Anholt673a3942008-07-30 12:06:12 -07001199
Keith Packard0839ccb2008-10-30 19:38:48 -07001200 remain -= page_length;
1201 user_data += page_length;
1202 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -07001203 }
Chris Wilsonb19482d2016-08-18 17:16:43 +01001204 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Chris Wilsonfe115622016-10-28 13:58:40 +01001205
1206 mutex_lock(&i915->drm.struct_mutex);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001207out_unpin:
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301208 if (node.allocated) {
1209 wmb();
1210 ggtt->base.clear_range(&ggtt->base,
Michał Winiarski4fb84d92016-10-13 14:02:40 +02001211 node.start, node.size);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301212 remove_mappable_node(&node);
1213 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001214 i915_vma_unpin(vma);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301215 }
Chris Wilsonfe115622016-10-28 13:58:40 +01001216out_unlock:
Chris Wilson9c870d02016-10-24 13:42:15 +01001217 intel_runtime_pm_put(i915);
Chris Wilsonfe115622016-10-28 13:58:40 +01001218 mutex_unlock(&i915->drm.struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001219 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001220}
1221
Eric Anholt673a3942008-07-30 12:06:12 -07001222static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001223shmem_pwrite_slow(struct page *page, int offset, int length,
Daniel Vetterd174bd62012-03-25 19:47:40 +02001224 char __user *user_data,
1225 bool page_do_bit17_swizzling,
1226 bool needs_clflush_before,
1227 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -07001228{
Daniel Vetterd174bd62012-03-25 19:47:40 +02001229 char *vaddr;
1230 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001231
Daniel Vetterd174bd62012-03-25 19:47:40 +02001232 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +02001233 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Chris Wilsonfe115622016-10-28 13:58:40 +01001234 shmem_clflush_swizzled_range(vaddr + offset, length,
Daniel Vetter23c18c72012-03-25 19:47:42 +02001235 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001236 if (page_do_bit17_swizzling)
Chris Wilsonfe115622016-10-28 13:58:40 +01001237 ret = __copy_from_user_swizzled(vaddr, offset, user_data,
1238 length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001239 else
Chris Wilsonfe115622016-10-28 13:58:40 +01001240 ret = __copy_from_user(vaddr + offset, user_data, length);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001241 if (needs_clflush_after)
Chris Wilsonfe115622016-10-28 13:58:40 +01001242 shmem_clflush_swizzled_range(vaddr + offset, length,
Daniel Vetter23c18c72012-03-25 19:47:42 +02001243 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001244 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001245
Chris Wilson755d2212012-09-04 21:02:55 +01001246 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001247}
1248
Chris Wilsonfe115622016-10-28 13:58:40 +01001249/* Per-page copy function for the shmem pwrite fastpath.
1250 * Flushes invalid cachelines before writing to the target if
1251 * needs_clflush_before is set and flushes out any written cachelines after
1252 * writing if needs_clflush is set.
1253 */
Eric Anholt40123c12009-03-09 13:42:30 -07001254static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001255shmem_pwrite(struct page *page, int offset, int len, char __user *user_data,
1256 bool page_do_bit17_swizzling,
1257 bool needs_clflush_before,
1258 bool needs_clflush_after)
Eric Anholt40123c12009-03-09 13:42:30 -07001259{
Chris Wilsonfe115622016-10-28 13:58:40 +01001260 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001261
Chris Wilsonfe115622016-10-28 13:58:40 +01001262 ret = -ENODEV;
1263 if (!page_do_bit17_swizzling) {
1264 char *vaddr = kmap_atomic(page);
1265
1266 if (needs_clflush_before)
1267 drm_clflush_virt_range(vaddr + offset, len);
1268 ret = __copy_from_user_inatomic(vaddr + offset, user_data, len);
1269 if (needs_clflush_after)
1270 drm_clflush_virt_range(vaddr + offset, len);
1271
1272 kunmap_atomic(vaddr);
1273 }
1274 if (ret == 0)
1275 return ret;
1276
1277 return shmem_pwrite_slow(page, offset, len, user_data,
1278 page_do_bit17_swizzling,
1279 needs_clflush_before,
1280 needs_clflush_after);
1281}
1282
1283static int
1284i915_gem_shmem_pwrite(struct drm_i915_gem_object *obj,
1285 const struct drm_i915_gem_pwrite *args)
1286{
1287 struct drm_i915_private *i915 = to_i915(obj->base.dev);
1288 void __user *user_data;
1289 u64 remain;
1290 unsigned int obj_do_bit17_swizzling;
1291 unsigned int partial_cacheline_write;
1292 unsigned int needs_clflush;
1293 unsigned int offset, idx;
1294 int ret;
1295
1296 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
Chris Wilson43394c72016-08-18 17:16:47 +01001297 if (ret)
1298 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001299
Chris Wilsonfe115622016-10-28 13:58:40 +01001300 ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush);
1301 mutex_unlock(&i915->drm.struct_mutex);
1302 if (ret)
1303 return ret;
1304
1305 obj_do_bit17_swizzling = 0;
1306 if (i915_gem_object_needs_bit17_swizzle(obj))
1307 obj_do_bit17_swizzling = BIT(17);
1308
1309 /* If we don't overwrite a cacheline completely we need to be
1310 * careful to have up-to-date data by first clflushing. Don't
1311 * overcomplicate things and flush the entire patch.
1312 */
1313 partial_cacheline_write = 0;
1314 if (needs_clflush & CLFLUSH_BEFORE)
1315 partial_cacheline_write = boot_cpu_data.x86_clflush_size - 1;
1316
Chris Wilson43394c72016-08-18 17:16:47 +01001317 user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilson43394c72016-08-18 17:16:47 +01001318 remain = args->size;
Chris Wilsonfe115622016-10-28 13:58:40 +01001319 offset = offset_in_page(args->offset);
1320 for (idx = args->offset >> PAGE_SHIFT; remain; idx++) {
1321 struct page *page = i915_gem_object_get_page(obj, idx);
1322 int length;
Eric Anholt40123c12009-03-09 13:42:30 -07001323
Chris Wilsonfe115622016-10-28 13:58:40 +01001324 length = remain;
1325 if (offset + length > PAGE_SIZE)
1326 length = PAGE_SIZE - offset;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001327
Chris Wilsonfe115622016-10-28 13:58:40 +01001328 ret = shmem_pwrite(page, offset, length, user_data,
1329 page_to_phys(page) & obj_do_bit17_swizzling,
1330 (offset | length) & partial_cacheline_write,
1331 needs_clflush & CLFLUSH_AFTER);
1332 if (ret)
Chris Wilson9da3da62012-06-01 15:20:22 +01001333 break;
1334
Chris Wilsonfe115622016-10-28 13:58:40 +01001335 remain -= length;
1336 user_data += length;
1337 offset = 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001338 }
1339
Rodrigo Vivide152b62015-07-07 16:28:51 -07001340 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Chris Wilsonfe115622016-10-28 13:58:40 +01001341 i915_gem_obj_finish_shmem_access(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001342 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001343}
1344
1345/**
1346 * Writes data to the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001347 * @dev: drm device
1348 * @data: ioctl data blob
1349 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001350 *
1351 * On error, the contents of the buffer that were to be modified are undefined.
1352 */
1353int
1354i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001355 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001356{
1357 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001358 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001359 int ret;
1360
1361 if (args->size == 0)
1362 return 0;
1363
1364 if (!access_ok(VERIFY_READ,
Gustavo Padovan3ed605b2016-04-26 12:32:27 -03001365 u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001366 args->size))
1367 return -EFAULT;
1368
Chris Wilson03ac0642016-07-20 13:31:51 +01001369 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001370 if (!obj)
1371 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001372
Chris Wilson7dcd2492010-09-26 20:21:44 +01001373 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001374 if (args->offset > obj->base.size ||
1375 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001376 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001377 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001378 }
1379
Chris Wilsondb53a302011-02-03 11:57:46 +00001380 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1381
Chris Wilsone95433c2016-10-28 13:58:27 +01001382 ret = i915_gem_object_wait(obj,
1383 I915_WAIT_INTERRUPTIBLE |
1384 I915_WAIT_ALL,
1385 MAX_SCHEDULE_TIMEOUT,
1386 to_rps_client(file));
Chris Wilson258a5ed2016-08-05 10:14:16 +01001387 if (ret)
1388 goto err;
1389
Chris Wilsonfe115622016-10-28 13:58:40 +01001390 ret = i915_gem_object_pin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001391 if (ret)
Chris Wilsonfe115622016-10-28 13:58:40 +01001392 goto err;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001393
Daniel Vetter935aaa62012-03-25 19:47:35 +02001394 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001395 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1396 * it would end up going through the fenced access, and we'll get
1397 * different detiling behavior between reading and writing.
1398 * pread/pwrite currently are reading and writing from the CPU
1399 * perspective, requiring manual detiling by the client.
1400 */
Chris Wilson6eae0052016-06-20 15:05:52 +01001401 if (!i915_gem_object_has_struct_page(obj) ||
Chris Wilson9c870d02016-10-24 13:42:15 +01001402 cpu_write_needs_clflush(obj))
Daniel Vetter935aaa62012-03-25 19:47:35 +02001403 /* Note that the gtt paths might fail with non-page-backed user
1404 * pointers (e.g. gtt mappings when moving data between
Chris Wilson9c870d02016-10-24 13:42:15 +01001405 * textures). Fallback to the shmem path in that case.
1406 */
Chris Wilsonfe115622016-10-28 13:58:40 +01001407 ret = i915_gem_gtt_pwrite_fast(obj, args);
Eric Anholt673a3942008-07-30 12:06:12 -07001408
Chris Wilsond1054ee2016-07-16 18:42:36 +01001409 if (ret == -EFAULT || ret == -ENOSPC) {
Chris Wilson6a2c4232014-11-04 04:51:40 -08001410 if (obj->phys_handle)
1411 ret = i915_gem_phys_pwrite(obj, args, file);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301412 else
Chris Wilsonfe115622016-10-28 13:58:40 +01001413 ret = i915_gem_shmem_pwrite(obj, args);
Chris Wilson6a2c4232014-11-04 04:51:40 -08001414 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001415
Chris Wilsonfe115622016-10-28 13:58:40 +01001416 i915_gem_object_unpin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001417err:
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001418 i915_gem_object_put(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001419 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001420}
1421
Chris Wilsond243ad82016-08-18 17:16:44 +01001422static inline enum fb_op_origin
Chris Wilsonaeecc962016-06-17 14:46:39 -03001423write_origin(struct drm_i915_gem_object *obj, unsigned domain)
1424{
Chris Wilson50349242016-08-18 17:17:04 +01001425 return (domain == I915_GEM_DOMAIN_GTT ?
1426 obj->frontbuffer_ggtt_origin : ORIGIN_CPU);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001427}
1428
Chris Wilson40e62d52016-10-28 13:58:41 +01001429static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj)
1430{
1431 struct drm_i915_private *i915;
1432 struct list_head *list;
1433 struct i915_vma *vma;
1434
1435 list_for_each_entry(vma, &obj->vma_list, obj_link) {
1436 if (!i915_vma_is_ggtt(vma))
1437 continue;
1438
1439 if (i915_vma_is_active(vma))
1440 continue;
1441
1442 if (!drm_mm_node_allocated(&vma->node))
1443 continue;
1444
1445 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
1446 }
1447
1448 i915 = to_i915(obj->base.dev);
1449 list = obj->bind_count ? &i915->mm.bound_list : &i915->mm.unbound_list;
Joonas Lahtinen56cea322016-11-02 12:16:04 +02001450 list_move_tail(&obj->global_link, list);
Chris Wilson40e62d52016-10-28 13:58:41 +01001451}
1452
Eric Anholt673a3942008-07-30 12:06:12 -07001453/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001454 * Called when user space prepares to use an object with the CPU, either
1455 * through the mmap ioctl's mapping or a GTT mapping.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001456 * @dev: drm device
1457 * @data: ioctl data blob
1458 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001459 */
1460int
1461i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001462 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001463{
1464 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001465 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001466 uint32_t read_domains = args->read_domains;
1467 uint32_t write_domain = args->write_domain;
Chris Wilson40e62d52016-10-28 13:58:41 +01001468 int err;
Eric Anholt673a3942008-07-30 12:06:12 -07001469
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001470 /* Only handle setting domains to types used by the CPU. */
Chris Wilsonb8f90962016-08-05 10:14:07 +01001471 if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001472 return -EINVAL;
1473
1474 /* Having something in the write domain implies it's in the read
1475 * domain, and only that read domain. Enforce that in the request.
1476 */
1477 if (write_domain != 0 && read_domains != write_domain)
1478 return -EINVAL;
1479
Chris Wilson03ac0642016-07-20 13:31:51 +01001480 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001481 if (!obj)
1482 return -ENOENT;
Jesse Barnes652c3932009-08-17 13:31:43 -07001483
Chris Wilson3236f572012-08-24 09:35:09 +01001484 /* Try to flush the object off the GPU without holding the lock.
1485 * We will repeat the flush holding the lock in the normal manner
1486 * to catch cases where we are gazumped.
1487 */
Chris Wilson40e62d52016-10-28 13:58:41 +01001488 err = i915_gem_object_wait(obj,
Chris Wilsone95433c2016-10-28 13:58:27 +01001489 I915_WAIT_INTERRUPTIBLE |
1490 (write_domain ? I915_WAIT_ALL : 0),
1491 MAX_SCHEDULE_TIMEOUT,
1492 to_rps_client(file));
Chris Wilson40e62d52016-10-28 13:58:41 +01001493 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001494 goto out;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001495
Chris Wilson40e62d52016-10-28 13:58:41 +01001496 /* Flush and acquire obj->pages so that we are coherent through
1497 * direct access in memory with previous cached writes through
1498 * shmemfs and that our cache domain tracking remains valid.
1499 * For example, if the obj->filp was moved to swap without us
1500 * being notified and releasing the pages, we would mistakenly
1501 * continue to assume that the obj remained out of the CPU cached
1502 * domain.
1503 */
1504 err = i915_gem_object_pin_pages(obj);
1505 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001506 goto out;
Chris Wilson40e62d52016-10-28 13:58:41 +01001507
1508 err = i915_mutex_lock_interruptible(dev);
1509 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001510 goto out_unpin;
Chris Wilson3236f572012-08-24 09:35:09 +01001511
Chris Wilson43566de2015-01-02 16:29:29 +05301512 if (read_domains & I915_GEM_DOMAIN_GTT)
Chris Wilson40e62d52016-10-28 13:58:41 +01001513 err = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301514 else
Chris Wilson40e62d52016-10-28 13:58:41 +01001515 err = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
1516
1517 /* And bump the LRU for this access */
1518 i915_gem_object_bump_inactive_ggtt(obj);
1519
1520 mutex_unlock(&dev->struct_mutex);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001521
Daniel Vetter031b6982015-06-26 19:35:16 +02001522 if (write_domain != 0)
Chris Wilsonaeecc962016-06-17 14:46:39 -03001523 intel_fb_obj_invalidate(obj, write_origin(obj, write_domain));
Daniel Vetter031b6982015-06-26 19:35:16 +02001524
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001525out_unpin:
Chris Wilson40e62d52016-10-28 13:58:41 +01001526 i915_gem_object_unpin_pages(obj);
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001527out:
1528 i915_gem_object_put(obj);
Chris Wilson40e62d52016-10-28 13:58:41 +01001529 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001530}
1531
1532/**
1533 * Called when user space has done writes to this buffer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001534 * @dev: drm device
1535 * @data: ioctl data blob
1536 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001537 */
1538int
1539i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001540 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001541{
1542 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001543 struct drm_i915_gem_object *obj;
Chris Wilsonc21724c2016-08-05 10:14:19 +01001544 int err = 0;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001545
Chris Wilson03ac0642016-07-20 13:31:51 +01001546 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001547 if (!obj)
1548 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001549
Eric Anholt673a3942008-07-30 12:06:12 -07001550 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilsonc21724c2016-08-05 10:14:19 +01001551 if (READ_ONCE(obj->pin_display)) {
1552 err = i915_mutex_lock_interruptible(dev);
1553 if (!err) {
1554 i915_gem_object_flush_cpu_write_domain(obj);
1555 mutex_unlock(&dev->struct_mutex);
1556 }
1557 }
Eric Anholte47c68e2008-11-14 13:35:19 -08001558
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001559 i915_gem_object_put(obj);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001560 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001561}
1562
1563/**
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001564 * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address
1565 * it is mapped to.
1566 * @dev: drm device
1567 * @data: ioctl data blob
1568 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001569 *
1570 * While the mapping holds a reference on the contents of the object, it doesn't
1571 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001572 *
1573 * IMPORTANT:
1574 *
1575 * DRM driver writers who look a this function as an example for how to do GEM
1576 * mmap support, please don't implement mmap support like here. The modern way
1577 * to implement DRM mmap support is with an mmap offset ioctl (like
1578 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1579 * That way debug tooling like valgrind will understand what's going on, hiding
1580 * the mmap call in a driver private ioctl will break that. The i915 driver only
1581 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001582 */
1583int
1584i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001585 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001586{
1587 struct drm_i915_gem_mmap *args = data;
Chris Wilson03ac0642016-07-20 13:31:51 +01001588 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001589 unsigned long addr;
1590
Akash Goel1816f922015-01-02 16:29:30 +05301591 if (args->flags & ~(I915_MMAP_WC))
1592 return -EINVAL;
1593
Borislav Petkov568a58e2016-03-29 17:42:01 +02001594 if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT))
Akash Goel1816f922015-01-02 16:29:30 +05301595 return -ENODEV;
1596
Chris Wilson03ac0642016-07-20 13:31:51 +01001597 obj = i915_gem_object_lookup(file, args->handle);
1598 if (!obj)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001599 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001600
Daniel Vetter1286ff72012-05-10 15:25:09 +02001601 /* prime objects have no backing filp to GEM mmap
1602 * pages from.
1603 */
Chris Wilson03ac0642016-07-20 13:31:51 +01001604 if (!obj->base.filp) {
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001605 i915_gem_object_put(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001606 return -EINVAL;
1607 }
1608
Chris Wilson03ac0642016-07-20 13:31:51 +01001609 addr = vm_mmap(obj->base.filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001610 PROT_READ | PROT_WRITE, MAP_SHARED,
1611 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301612 if (args->flags & I915_MMAP_WC) {
1613 struct mm_struct *mm = current->mm;
1614 struct vm_area_struct *vma;
1615
Michal Hocko80a89a52016-05-23 16:26:11 -07001616 if (down_write_killable(&mm->mmap_sem)) {
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001617 i915_gem_object_put(obj);
Michal Hocko80a89a52016-05-23 16:26:11 -07001618 return -EINTR;
1619 }
Akash Goel1816f922015-01-02 16:29:30 +05301620 vma = find_vma(mm, addr);
1621 if (vma)
1622 vma->vm_page_prot =
1623 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1624 else
1625 addr = -ENOMEM;
1626 up_write(&mm->mmap_sem);
Chris Wilsonaeecc962016-06-17 14:46:39 -03001627
1628 /* This may race, but that's ok, it only gets set */
Chris Wilson50349242016-08-18 17:17:04 +01001629 WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU);
Akash Goel1816f922015-01-02 16:29:30 +05301630 }
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001631 i915_gem_object_put(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001632 if (IS_ERR((void *)addr))
1633 return addr;
1634
1635 args->addr_ptr = (uint64_t) addr;
1636
1637 return 0;
1638}
1639
Chris Wilson03af84f2016-08-18 17:17:01 +01001640static unsigned int tile_row_pages(struct drm_i915_gem_object *obj)
1641{
1642 u64 size;
1643
1644 size = i915_gem_object_get_stride(obj);
1645 size *= i915_gem_object_get_tiling(obj) == I915_TILING_Y ? 32 : 8;
1646
1647 return size >> PAGE_SHIFT;
1648}
1649
Jesse Barnesde151cf2008-11-12 10:03:55 -08001650/**
Chris Wilson4cc69072016-08-25 19:05:19 +01001651 * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps
1652 *
1653 * A history of the GTT mmap interface:
1654 *
1655 * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to
1656 * aligned and suitable for fencing, and still fit into the available
1657 * mappable space left by the pinned display objects. A classic problem
1658 * we called the page-fault-of-doom where we would ping-pong between
1659 * two objects that could not fit inside the GTT and so the memcpy
1660 * would page one object in at the expense of the other between every
1661 * single byte.
1662 *
1663 * 1 - Objects can be any size, and have any compatible fencing (X Y, or none
1664 * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the
1665 * object is too large for the available space (or simply too large
1666 * for the mappable aperture!), a view is created instead and faulted
1667 * into userspace. (This view is aligned and sized appropriately for
1668 * fenced access.)
1669 *
1670 * Restrictions:
1671 *
1672 * * snoopable objects cannot be accessed via the GTT. It can cause machine
1673 * hangs on some architectures, corruption on others. An attempt to service
1674 * a GTT page fault from a snoopable object will generate a SIGBUS.
1675 *
1676 * * the object must be able to fit into RAM (physical memory, though no
1677 * limited to the mappable aperture).
1678 *
1679 *
1680 * Caveats:
1681 *
1682 * * a new GTT page fault will synchronize rendering from the GPU and flush
1683 * all data to system memory. Subsequent access will not be synchronized.
1684 *
1685 * * all mappings are revoked on runtime device suspend.
1686 *
1687 * * there are only 8, 16 or 32 fence registers to share between all users
1688 * (older machines require fence register for display and blitter access
1689 * as well). Contention of the fence registers will cause the previous users
1690 * to be unmapped and any new access will generate new page faults.
1691 *
1692 * * running out of memory while servicing a fault may generate a SIGBUS,
1693 * rather than the expected SIGSEGV.
1694 */
1695int i915_gem_mmap_gtt_version(void)
1696{
1697 return 1;
1698}
1699
1700/**
Jesse Barnesde151cf2008-11-12 10:03:55 -08001701 * i915_gem_fault - fault a page into the GTT
Chris Wilson058d88c2016-08-15 10:49:06 +01001702 * @area: CPU VMA in question
Geliang Tangd9072a32015-09-15 05:58:44 -07001703 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001704 *
1705 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1706 * from userspace. The fault handler takes care of binding the object to
1707 * the GTT (if needed), allocating and programming a fence register (again,
1708 * only if needed based on whether the old reg is still valid or the object
1709 * is tiled) and inserting a new PTE into the faulting process.
1710 *
1711 * Note that the faulting process may involve evicting existing objects
1712 * from the GTT and/or fence registers to make room. So performance may
1713 * suffer if the GTT working set is large or there are few fence registers
1714 * left.
Chris Wilson4cc69072016-08-25 19:05:19 +01001715 *
1716 * The current feature set supported by i915_gem_fault() and thus GTT mmaps
1717 * is exposed via I915_PARAM_MMAP_GTT_VERSION (see i915_gem_mmap_gtt_version).
Jesse Barnesde151cf2008-11-12 10:03:55 -08001718 */
Chris Wilson058d88c2016-08-15 10:49:06 +01001719int i915_gem_fault(struct vm_area_struct *area, struct vm_fault *vmf)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001720{
Chris Wilson03af84f2016-08-18 17:17:01 +01001721#define MIN_CHUNK_PAGES ((1 << 20) >> PAGE_SHIFT) /* 1 MiB */
Chris Wilson058d88c2016-08-15 10:49:06 +01001722 struct drm_i915_gem_object *obj = to_intel_bo(area->vm_private_data);
Chris Wilson05394f32010-11-08 19:18:58 +00001723 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001724 struct drm_i915_private *dev_priv = to_i915(dev);
1725 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001726 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Chris Wilson058d88c2016-08-15 10:49:06 +01001727 struct i915_vma *vma;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001728 pgoff_t page_offset;
Chris Wilson82118872016-08-18 17:17:05 +01001729 unsigned int flags;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001730 int ret;
Paulo Zanonif65c9162013-11-27 18:20:34 -02001731
Jesse Barnesde151cf2008-11-12 10:03:55 -08001732 /* We don't use vmf->pgoff since that has the fake offset */
Chris Wilson058d88c2016-08-15 10:49:06 +01001733 page_offset = ((unsigned long)vmf->virtual_address - area->vm_start) >>
Jesse Barnesde151cf2008-11-12 10:03:55 -08001734 PAGE_SHIFT;
1735
Chris Wilsondb53a302011-02-03 11:57:46 +00001736 trace_i915_gem_object_fault(obj, page_offset, true, write);
1737
Chris Wilson6e4930f2014-02-07 18:37:06 -02001738 /* Try to flush the object off the GPU first without holding the lock.
Chris Wilsonb8f90962016-08-05 10:14:07 +01001739 * Upon acquiring the lock, we will perform our sanity checks and then
Chris Wilson6e4930f2014-02-07 18:37:06 -02001740 * repeat the flush holding the lock in the normal manner to catch cases
1741 * where we are gazumped.
1742 */
Chris Wilsone95433c2016-10-28 13:58:27 +01001743 ret = i915_gem_object_wait(obj,
1744 I915_WAIT_INTERRUPTIBLE,
1745 MAX_SCHEDULE_TIMEOUT,
1746 NULL);
Chris Wilson6e4930f2014-02-07 18:37:06 -02001747 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001748 goto err;
1749
Chris Wilson40e62d52016-10-28 13:58:41 +01001750 ret = i915_gem_object_pin_pages(obj);
1751 if (ret)
1752 goto err;
1753
Chris Wilsonb8f90962016-08-05 10:14:07 +01001754 intel_runtime_pm_get(dev_priv);
1755
1756 ret = i915_mutex_lock_interruptible(dev);
1757 if (ret)
1758 goto err_rpm;
Chris Wilson6e4930f2014-02-07 18:37:06 -02001759
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001760 /* Access to snoopable pages through the GTT is incoherent. */
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00001761 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev_priv)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001762 ret = -EFAULT;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001763 goto err_unlock;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001764 }
1765
Chris Wilson82118872016-08-18 17:17:05 +01001766 /* If the object is smaller than a couple of partial vma, it is
1767 * not worth only creating a single partial vma - we may as well
1768 * clear enough space for the full object.
1769 */
1770 flags = PIN_MAPPABLE;
1771 if (obj->base.size > 2 * MIN_CHUNK_PAGES << PAGE_SHIFT)
1772 flags |= PIN_NONBLOCK | PIN_NONFAULT;
1773
Chris Wilsona61007a2016-08-18 17:17:02 +01001774 /* Now pin it into the GTT as needed */
Chris Wilson82118872016-08-18 17:17:05 +01001775 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0, flags);
Chris Wilsona61007a2016-08-18 17:17:02 +01001776 if (IS_ERR(vma)) {
1777 struct i915_ggtt_view view;
Chris Wilson03af84f2016-08-18 17:17:01 +01001778 unsigned int chunk_size;
1779
Chris Wilsona61007a2016-08-18 17:17:02 +01001780 /* Use a partial view if it is bigger than available space */
Chris Wilson03af84f2016-08-18 17:17:01 +01001781 chunk_size = MIN_CHUNK_PAGES;
1782 if (i915_gem_object_is_tiled(obj))
Chris Wilson0ef723c2016-11-07 10:54:43 +00001783 chunk_size = roundup(chunk_size, tile_row_pages(obj));
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001784
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001785 memset(&view, 0, sizeof(view));
1786 view.type = I915_GGTT_VIEW_PARTIAL;
1787 view.params.partial.offset = rounddown(page_offset, chunk_size);
1788 view.params.partial.size =
Chris Wilsona61007a2016-08-18 17:17:02 +01001789 min_t(unsigned int, chunk_size,
Chris Wilson908b1232016-10-11 10:06:56 +01001790 vma_pages(area) - view.params.partial.offset);
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001791
Chris Wilsonaa136d92016-08-18 17:17:03 +01001792 /* If the partial covers the entire object, just create a
1793 * normal VMA.
1794 */
1795 if (chunk_size >= obj->base.size >> PAGE_SHIFT)
1796 view.type = I915_GGTT_VIEW_NORMAL;
1797
Chris Wilson50349242016-08-18 17:17:04 +01001798 /* Userspace is now writing through an untracked VMA, abandon
1799 * all hope that the hardware is able to track future writes.
1800 */
1801 obj->frontbuffer_ggtt_origin = ORIGIN_CPU;
1802
Chris Wilsona61007a2016-08-18 17:17:02 +01001803 vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, PIN_MAPPABLE);
1804 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001805 if (IS_ERR(vma)) {
1806 ret = PTR_ERR(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001807 goto err_unlock;
Chris Wilson058d88c2016-08-15 10:49:06 +01001808 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001809
Chris Wilsonc9839302012-11-20 10:45:17 +00001810 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1811 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001812 goto err_unpin;
Chris Wilsonc9839302012-11-20 10:45:17 +00001813
Chris Wilson49ef5292016-08-18 17:17:00 +01001814 ret = i915_vma_get_fence(vma);
Chris Wilsonc9839302012-11-20 10:45:17 +00001815 if (ret)
Chris Wilsonb8f90962016-08-05 10:14:07 +01001816 goto err_unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001817
Chris Wilson275f0392016-10-24 13:42:14 +01001818 /* Mark as being mmapped into userspace for later revocation */
Chris Wilson9c870d02016-10-24 13:42:15 +01001819 assert_rpm_wakelock_held(dev_priv);
Chris Wilson275f0392016-10-24 13:42:14 +01001820 if (list_empty(&obj->userfault_link))
1821 list_add(&obj->userfault_link, &dev_priv->mm.userfault_list);
Chris Wilson275f0392016-10-24 13:42:14 +01001822
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001823 /* Finally, remap it using the new GTT offset */
Chris Wilsonc58305a2016-08-19 16:54:28 +01001824 ret = remap_io_mapping(area,
1825 area->vm_start + (vma->ggtt_view.params.partial.offset << PAGE_SHIFT),
1826 (ggtt->mappable_base + vma->node.start) >> PAGE_SHIFT,
1827 min_t(u64, vma->size, area->vm_end - area->vm_start),
1828 &ggtt->mappable);
Chris Wilsona61007a2016-08-18 17:17:02 +01001829
Chris Wilsonb8f90962016-08-05 10:14:07 +01001830err_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +01001831 __i915_vma_unpin(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001832err_unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001833 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001834err_rpm:
1835 intel_runtime_pm_put(dev_priv);
Chris Wilson40e62d52016-10-28 13:58:41 +01001836 i915_gem_object_unpin_pages(obj);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001837err:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001838 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001839 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001840 /*
1841 * We eat errors when the gpu is terminally wedged to avoid
1842 * userspace unduly crashing (gl has no provisions for mmaps to
1843 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1844 * and so needs to be reported.
1845 */
1846 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001847 ret = VM_FAULT_SIGBUS;
1848 break;
1849 }
Chris Wilson045e7692010-11-07 09:18:22 +00001850 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001851 /*
1852 * EAGAIN means the gpu is hung and we'll wait for the error
1853 * handler to reset everything when re-faulting in
1854 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001855 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001856 case 0:
1857 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001858 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001859 case -EBUSY:
1860 /*
1861 * EBUSY is ok: this just means that another thread
1862 * already did the job.
1863 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001864 ret = VM_FAULT_NOPAGE;
1865 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001866 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001867 ret = VM_FAULT_OOM;
1868 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001869 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001870 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001871 ret = VM_FAULT_SIGBUS;
1872 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001873 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001874 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001875 ret = VM_FAULT_SIGBUS;
1876 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001877 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001878 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001879}
1880
1881/**
Chris Wilson901782b2009-07-10 08:18:50 +01001882 * i915_gem_release_mmap - remove physical page mappings
1883 * @obj: obj in question
1884 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001885 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001886 * relinquish ownership of the pages back to the system.
1887 *
1888 * It is vital that we remove the page mapping if we have mapped a tiled
1889 * object through the GTT and then lose the fence register due to
1890 * resource pressure. Similarly if the object has been moved out of the
1891 * aperture, than pages mapped into userspace must be revoked. Removing the
1892 * mapping will then trigger a page fault on the next user access, allowing
1893 * fixup by i915_gem_fault().
1894 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001895void
Chris Wilson05394f32010-11-08 19:18:58 +00001896i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001897{
Chris Wilson275f0392016-10-24 13:42:14 +01001898 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson275f0392016-10-24 13:42:14 +01001899
Chris Wilson349f2cc2016-04-13 17:35:12 +01001900 /* Serialisation between user GTT access and our code depends upon
1901 * revoking the CPU's PTE whilst the mutex is held. The next user
1902 * pagefault then has to wait until we release the mutex.
Chris Wilson9c870d02016-10-24 13:42:15 +01001903 *
1904 * Note that RPM complicates somewhat by adding an additional
1905 * requirement that operations to the GGTT be made holding the RPM
1906 * wakeref.
Chris Wilson349f2cc2016-04-13 17:35:12 +01001907 */
Chris Wilson275f0392016-10-24 13:42:14 +01001908 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson9c870d02016-10-24 13:42:15 +01001909 intel_runtime_pm_get(i915);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001910
Chris Wilson3594a3e2016-10-24 13:42:16 +01001911 if (list_empty(&obj->userfault_link))
Chris Wilson9c870d02016-10-24 13:42:15 +01001912 goto out;
Chris Wilson901782b2009-07-10 08:18:50 +01001913
Chris Wilson3594a3e2016-10-24 13:42:16 +01001914 list_del_init(&obj->userfault_link);
David Herrmann6796cb12014-01-03 14:24:19 +01001915 drm_vma_node_unmap(&obj->base.vma_node,
1916 obj->base.dev->anon_inode->i_mapping);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001917
1918 /* Ensure that the CPU's PTE are revoked and there are not outstanding
1919 * memory transactions from userspace before we return. The TLB
1920 * flushing implied above by changing the PTE above *should* be
1921 * sufficient, an extra barrier here just provides us with a bit
1922 * of paranoid documentation about our requirement to serialise
1923 * memory writes before touching registers / GSM.
1924 */
1925 wmb();
Chris Wilson9c870d02016-10-24 13:42:15 +01001926
1927out:
1928 intel_runtime_pm_put(i915);
Chris Wilson901782b2009-07-10 08:18:50 +01001929}
1930
Chris Wilson7c108fd2016-10-24 13:42:18 +01001931void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv)
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001932{
Chris Wilson3594a3e2016-10-24 13:42:16 +01001933 struct drm_i915_gem_object *obj, *on;
Chris Wilson7c108fd2016-10-24 13:42:18 +01001934 int i;
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001935
Chris Wilson3594a3e2016-10-24 13:42:16 +01001936 /*
1937 * Only called during RPM suspend. All users of the userfault_list
1938 * must be holding an RPM wakeref to ensure that this can not
1939 * run concurrently with themselves (and use the struct_mutex for
1940 * protection between themselves).
1941 */
1942
1943 list_for_each_entry_safe(obj, on,
1944 &dev_priv->mm.userfault_list, userfault_link) {
Chris Wilson275f0392016-10-24 13:42:14 +01001945 list_del_init(&obj->userfault_link);
Chris Wilson275f0392016-10-24 13:42:14 +01001946 drm_vma_node_unmap(&obj->base.vma_node,
1947 obj->base.dev->anon_inode->i_mapping);
Chris Wilson275f0392016-10-24 13:42:14 +01001948 }
Chris Wilson7c108fd2016-10-24 13:42:18 +01001949
1950 /* The fence will be lost when the device powers down. If any were
1951 * in use by hardware (i.e. they are pinned), we should not be powering
1952 * down! All other fences will be reacquired by the user upon waking.
1953 */
1954 for (i = 0; i < dev_priv->num_fence_regs; i++) {
1955 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
1956
1957 if (WARN_ON(reg->pin_count))
1958 continue;
1959
1960 if (!reg->vma)
1961 continue;
1962
1963 GEM_BUG_ON(!list_empty(&reg->vma->obj->userfault_link));
1964 reg->dirty = true;
1965 }
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001966}
1967
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001968/**
1969 * i915_gem_get_ggtt_size - return required global GTT size for an object
Chris Wilsona9f14812016-08-04 16:32:28 +01001970 * @dev_priv: i915 device
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001971 * @size: object size
1972 * @tiling_mode: tiling mode
1973 *
1974 * Return the required global GTT size for an object, taking into account
1975 * potential fence register mapping.
1976 */
Chris Wilsona9f14812016-08-04 16:32:28 +01001977u64 i915_gem_get_ggtt_size(struct drm_i915_private *dev_priv,
1978 u64 size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001979{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001980 u64 ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001981
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001982 GEM_BUG_ON(size == 0);
1983
Chris Wilsona9f14812016-08-04 16:32:28 +01001984 if (INTEL_GEN(dev_priv) >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001985 tiling_mode == I915_TILING_NONE)
1986 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001987
1988 /* Previous chips need a power-of-two fence region when tiling */
Chris Wilsona9f14812016-08-04 16:32:28 +01001989 if (IS_GEN3(dev_priv))
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001990 ggtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001991 else
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001992 ggtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001993
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001994 while (ggtt_size < size)
1995 ggtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001996
Chris Wilsonad1a7d22016-08-04 16:32:27 +01001997 return ggtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001998}
1999
Jesse Barnesde151cf2008-11-12 10:03:55 -08002000/**
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002001 * i915_gem_get_ggtt_alignment - return required global GTT alignment
Chris Wilsona9f14812016-08-04 16:32:28 +01002002 * @dev_priv: i915 device
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002003 * @size: object size
2004 * @tiling_mode: tiling mode
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002005 * @fenced: is fenced alignment required or not
Jesse Barnesde151cf2008-11-12 10:03:55 -08002006 *
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002007 * Return the required global GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01002008 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002009 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002010u64 i915_gem_get_ggtt_alignment(struct drm_i915_private *dev_priv, u64 size,
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002011 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002012{
Chris Wilsonad1a7d22016-08-04 16:32:27 +01002013 GEM_BUG_ON(size == 0);
2014
Jesse Barnesde151cf2008-11-12 10:03:55 -08002015 /*
2016 * Minimum alignment is 4k (GTT page size), but might be greater
2017 * if a fence register is needed for the object.
2018 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002019 if (INTEL_GEN(dev_priv) >= 4 || (!fenced && IS_G33(dev_priv)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002020 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002021 return 4096;
2022
2023 /*
2024 * Previous chips need to be aligned to the size of the smallest
2025 * fence register that can contain the object.
2026 */
Chris Wilsona9f14812016-08-04 16:32:28 +01002027 return i915_gem_get_ggtt_size(dev_priv, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002028}
2029
Chris Wilsond8cb5082012-08-11 15:41:03 +01002030static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2031{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002032 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002033 int err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002034
Chris Wilsonf3f61842016-08-05 10:14:14 +01002035 err = drm_gem_create_mmap_offset(&obj->base);
2036 if (!err)
2037 return 0;
Daniel Vetterda494d72012-12-20 15:11:16 +01002038
Chris Wilsonf3f61842016-08-05 10:14:14 +01002039 /* We can idle the GPU locklessly to flush stale objects, but in order
2040 * to claim that space for ourselves, we need to take the big
2041 * struct_mutex to free the requests+objects and allocate our slot.
Chris Wilsond8cb5082012-08-11 15:41:03 +01002042 */
Chris Wilsonea746f32016-09-09 14:11:49 +01002043 err = i915_gem_wait_for_idle(dev_priv, I915_WAIT_INTERRUPTIBLE);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002044 if (err)
2045 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002046
Chris Wilsonf3f61842016-08-05 10:14:14 +01002047 err = i915_mutex_lock_interruptible(&dev_priv->drm);
2048 if (!err) {
2049 i915_gem_retire_requests(dev_priv);
2050 err = drm_gem_create_mmap_offset(&obj->base);
2051 mutex_unlock(&dev_priv->drm.struct_mutex);
2052 }
Daniel Vetterda494d72012-12-20 15:11:16 +01002053
Chris Wilsonf3f61842016-08-05 10:14:14 +01002054 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002055}
2056
2057static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2058{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002059 drm_gem_free_mmap_offset(&obj->base);
2060}
2061
Dave Airlieda6b51d2014-12-24 13:11:17 +10002062int
Dave Airlieff72145b2011-02-07 12:16:14 +10002063i915_gem_mmap_gtt(struct drm_file *file,
2064 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002065 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10002066 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002067{
Chris Wilson05394f32010-11-08 19:18:58 +00002068 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002069 int ret;
2070
Chris Wilson03ac0642016-07-20 13:31:51 +01002071 obj = i915_gem_object_lookup(file, handle);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002072 if (!obj)
2073 return -ENOENT;
Chris Wilsonab182822009-09-22 18:46:17 +01002074
Chris Wilsond8cb5082012-08-11 15:41:03 +01002075 ret = i915_gem_object_create_mmap_offset(obj);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002076 if (ret == 0)
2077 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002078
Chris Wilsonf0cd5182016-10-28 13:58:43 +01002079 i915_gem_object_put(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002080 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002081}
2082
Dave Airlieff72145b2011-02-07 12:16:14 +10002083/**
2084 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2085 * @dev: DRM device
2086 * @data: GTT mapping ioctl data
2087 * @file: GEM object info
2088 *
2089 * Simply returns the fake offset to userspace so it can mmap it.
2090 * The mmap call will end up in drm_gem_mmap(), which will set things
2091 * up so we can get faults in the handler above.
2092 *
2093 * The fault handler will take care of binding the object into the GTT
2094 * (since it may have been evicted to make room for something), allocating
2095 * a fence register, and mapping the appropriate aperture address into
2096 * userspace.
2097 */
2098int
2099i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2100 struct drm_file *file)
2101{
2102 struct drm_i915_gem_mmap_gtt *args = data;
2103
Dave Airlieda6b51d2014-12-24 13:11:17 +10002104 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002105}
2106
Daniel Vetter225067e2012-08-20 10:23:20 +02002107/* Immediately discard the backing storage */
2108static void
2109i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002110{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002111 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002112
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002113 if (obj->base.filp == NULL)
2114 return;
2115
Daniel Vetter225067e2012-08-20 10:23:20 +02002116 /* Our goal here is to return as much of the memory as
2117 * is possible back to the system as we are called from OOM.
2118 * To do this we must instruct the shmfs to drop all of its
2119 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002120 */
Chris Wilson55372522014-03-25 13:23:06 +00002121 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002122 obj->mm.madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01002123}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002124
Chris Wilson55372522014-03-25 13:23:06 +00002125/* Try to discard unwanted pages */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002126void __i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02002127{
Chris Wilson55372522014-03-25 13:23:06 +00002128 struct address_space *mapping;
2129
Chris Wilson1233e2d2016-10-28 13:58:37 +01002130 lockdep_assert_held(&obj->mm.lock);
2131 GEM_BUG_ON(obj->mm.pages);
2132
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002133 switch (obj->mm.madv) {
Chris Wilson55372522014-03-25 13:23:06 +00002134 case I915_MADV_DONTNEED:
2135 i915_gem_object_truncate(obj);
2136 case __I915_MADV_PURGED:
2137 return;
2138 }
2139
2140 if (obj->base.filp == NULL)
2141 return;
2142
Al Viro93c76a32015-12-04 23:45:44 -05002143 mapping = obj->base.filp->f_mapping,
Chris Wilson55372522014-03-25 13:23:06 +00002144 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002145}
2146
Chris Wilson5cdf5882010-09-27 15:51:07 +01002147static void
Chris Wilson03ac84f2016-10-28 13:58:36 +01002148i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj,
2149 struct sg_table *pages)
Eric Anholt673a3942008-07-30 12:06:12 -07002150{
Dave Gordon85d12252016-05-20 11:54:06 +01002151 struct sgt_iter sgt_iter;
2152 struct page *page;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002153
Chris Wilson2b3c8312016-11-11 14:58:09 +00002154 __i915_gem_object_release_shmem(obj, pages);
Eric Anholt856fa192009-03-19 14:10:50 -07002155
Chris Wilson03ac84f2016-10-28 13:58:36 +01002156 i915_gem_gtt_finish_pages(obj, pages);
Imre Deake2273302015-07-09 12:59:05 +03002157
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002158 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002159 i915_gem_object_save_bit_17_swizzle(obj, pages);
Eric Anholt280b7132009-03-12 16:56:27 -07002160
Chris Wilson03ac84f2016-10-28 13:58:36 +01002161 for_each_sgt_page(page, sgt_iter, pages) {
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002162 if (obj->mm.dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002163 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002164
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002165 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002166 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002167
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002168 put_page(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002169 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002170 obj->mm.dirty = false;
Eric Anholt673a3942008-07-30 12:06:12 -07002171
Chris Wilson03ac84f2016-10-28 13:58:36 +01002172 sg_free_table(pages);
2173 kfree(pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002174}
2175
Chris Wilson96d77632016-10-28 13:58:33 +01002176static void __i915_gem_object_reset_page_iter(struct drm_i915_gem_object *obj)
2177{
2178 struct radix_tree_iter iter;
2179 void **slot;
2180
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002181 radix_tree_for_each_slot(slot, &obj->mm.get_page.radix, &iter, 0)
2182 radix_tree_delete(&obj->mm.get_page.radix, iter.index);
Chris Wilson96d77632016-10-28 13:58:33 +01002183}
2184
Chris Wilson548625e2016-11-01 12:11:34 +00002185void __i915_gem_object_put_pages(struct drm_i915_gem_object *obj,
2186 enum i915_mm_subclass subclass)
Chris Wilson37e680a2012-06-07 15:38:42 +01002187{
Chris Wilson03ac84f2016-10-28 13:58:36 +01002188 struct sg_table *pages;
Chris Wilson37e680a2012-06-07 15:38:42 +01002189
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002190 if (i915_gem_object_has_pinned_pages(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002191 return;
Chris Wilsona5570172012-09-04 21:02:54 +01002192
Chris Wilson15717de2016-08-04 07:52:26 +01002193 GEM_BUG_ON(obj->bind_count);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002194 if (!READ_ONCE(obj->mm.pages))
2195 return;
2196
2197 /* May be called by shrinker from within get_pages() (on another bo) */
Chris Wilson548625e2016-11-01 12:11:34 +00002198 mutex_lock_nested(&obj->mm.lock, subclass);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002199 if (unlikely(atomic_read(&obj->mm.pages_pin_count)))
2200 goto unlock;
Ben Widawsky3e123022013-07-31 17:00:04 -07002201
Chris Wilsona2165e32012-12-03 11:49:00 +00002202 /* ->put_pages might need to allocate memory for the bit17 swizzle
2203 * array, hence protect them from being reaped by removing them from gtt
2204 * lists early. */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002205 pages = fetch_and_zero(&obj->mm.pages);
2206 GEM_BUG_ON(!pages);
Chris Wilsona2165e32012-12-03 11:49:00 +00002207
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002208 if (obj->mm.mapping) {
Chris Wilson4b30cb22016-08-18 17:16:42 +01002209 void *ptr;
2210
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002211 ptr = ptr_mask_bits(obj->mm.mapping);
Chris Wilson4b30cb22016-08-18 17:16:42 +01002212 if (is_vmalloc_addr(ptr))
2213 vunmap(ptr);
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002214 else
Chris Wilson4b30cb22016-08-18 17:16:42 +01002215 kunmap(kmap_to_page(ptr));
2216
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002217 obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002218 }
2219
Chris Wilson96d77632016-10-28 13:58:33 +01002220 __i915_gem_object_reset_page_iter(obj);
2221
Chris Wilson03ac84f2016-10-28 13:58:36 +01002222 obj->ops->put_pages(obj, pages);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002223unlock:
2224 mutex_unlock(&obj->mm.lock);
Chris Wilson6c085a72012-08-20 11:40:46 +02002225}
2226
Chris Wilson4ff340f02016-10-18 13:02:50 +01002227static unsigned int swiotlb_max_size(void)
Chris Wilson871dfbd2016-10-11 09:20:21 +01002228{
2229#if IS_ENABLED(CONFIG_SWIOTLB)
2230 return rounddown(swiotlb_nr_tbl() << IO_TLB_SHIFT, PAGE_SIZE);
2231#else
2232 return 0;
2233#endif
2234}
2235
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002236static void i915_sg_trim(struct sg_table *orig_st)
2237{
2238 struct sg_table new_st;
2239 struct scatterlist *sg, *new_sg;
2240 unsigned int i;
2241
2242 if (orig_st->nents == orig_st->orig_nents)
2243 return;
2244
2245 if (sg_alloc_table(&new_st, orig_st->nents, GFP_KERNEL))
2246 return;
2247
2248 new_sg = new_st.sgl;
2249 for_each_sg(orig_st->sgl, sg, orig_st->nents, i) {
2250 sg_set_page(new_sg, sg_page(sg), sg->length, 0);
2251 /* called before being DMA mapped, no need to copy sg->dma_* */
2252 new_sg = sg_next(new_sg);
2253 }
2254
2255 sg_free_table(orig_st);
2256
2257 *orig_st = new_st;
2258}
2259
Chris Wilson03ac84f2016-10-28 13:58:36 +01002260static struct sg_table *
Chris Wilson6c085a72012-08-20 11:40:46 +02002261i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002262{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002263 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002264 int page_count, i;
2265 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002266 struct sg_table *st;
2267 struct scatterlist *sg;
Dave Gordon85d12252016-05-20 11:54:06 +01002268 struct sgt_iter sgt_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002269 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002270 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson4ff340f02016-10-18 13:02:50 +01002271 unsigned int max_segment;
Imre Deake2273302015-07-09 12:59:05 +03002272 int ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002273 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002274
Chris Wilson6c085a72012-08-20 11:40:46 +02002275 /* Assert that the object is not currently in any GPU domain. As it
2276 * wasn't in the GTT, there shouldn't be any way it could have been in
2277 * a GPU cache
2278 */
Chris Wilson03ac84f2016-10-28 13:58:36 +01002279 GEM_BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2280 GEM_BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
Chris Wilson6c085a72012-08-20 11:40:46 +02002281
Chris Wilson871dfbd2016-10-11 09:20:21 +01002282 max_segment = swiotlb_max_size();
2283 if (!max_segment)
Chris Wilson4ff340f02016-10-18 13:02:50 +01002284 max_segment = rounddown(UINT_MAX, PAGE_SIZE);
Chris Wilson871dfbd2016-10-11 09:20:21 +01002285
Chris Wilson9da3da62012-06-01 15:20:22 +01002286 st = kmalloc(sizeof(*st), GFP_KERNEL);
2287 if (st == NULL)
Chris Wilson03ac84f2016-10-28 13:58:36 +01002288 return ERR_PTR(-ENOMEM);
Eric Anholt673a3942008-07-30 12:06:12 -07002289
Chris Wilson9da3da62012-06-01 15:20:22 +01002290 page_count = obj->base.size / PAGE_SIZE;
2291 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002292 kfree(st);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002293 return ERR_PTR(-ENOMEM);
Chris Wilson9da3da62012-06-01 15:20:22 +01002294 }
2295
2296 /* Get the list of pages out of our struct file. They'll be pinned
2297 * at this point until we release them.
2298 *
2299 * Fail silently without starting the shrinker
2300 */
Al Viro93c76a32015-12-04 23:45:44 -05002301 mapping = obj->base.filp->f_mapping;
Michal Hockoc62d2552015-11-06 16:28:49 -08002302 gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM));
Mel Gormand0164ad2015-11-06 16:28:21 -08002303 gfp |= __GFP_NORETRY | __GFP_NOWARN;
Imre Deak90797e62013-02-18 19:28:03 +02002304 sg = st->sgl;
2305 st->nents = 0;
2306 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002307 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2308 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002309 i915_gem_shrink(dev_priv,
2310 page_count,
2311 I915_SHRINK_BOUND |
2312 I915_SHRINK_UNBOUND |
2313 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002314 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2315 }
2316 if (IS_ERR(page)) {
2317 /* We've tried hard to allocate the memory by reaping
2318 * our own buffer, now let the real VM do its job and
2319 * go down in flames if truly OOM.
2320 */
David Herrmannf461d1b2014-05-25 14:34:10 +02002321 page = shmem_read_mapping_page(mapping, i);
Imre Deake2273302015-07-09 12:59:05 +03002322 if (IS_ERR(page)) {
2323 ret = PTR_ERR(page);
Chris Wilson6c085a72012-08-20 11:40:46 +02002324 goto err_pages;
Imre Deake2273302015-07-09 12:59:05 +03002325 }
Chris Wilson6c085a72012-08-20 11:40:46 +02002326 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002327 if (!i ||
2328 sg->length >= max_segment ||
2329 page_to_pfn(page) != last_pfn + 1) {
Imre Deak90797e62013-02-18 19:28:03 +02002330 if (i)
2331 sg = sg_next(sg);
2332 st->nents++;
2333 sg_set_page(sg, page, PAGE_SIZE, 0);
2334 } else {
2335 sg->length += PAGE_SIZE;
2336 }
2337 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002338
2339 /* Check that the i965g/gm workaround works. */
2340 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002341 }
Chris Wilson871dfbd2016-10-11 09:20:21 +01002342 if (sg) /* loop terminated early; short sg table */
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002343 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002344
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002345 /* Trim unused sg entries to avoid wasting memory. */
2346 i915_sg_trim(st);
2347
Chris Wilson03ac84f2016-10-28 13:58:36 +01002348 ret = i915_gem_gtt_prepare_pages(obj, st);
Imre Deake2273302015-07-09 12:59:05 +03002349 if (ret)
2350 goto err_pages;
2351
Eric Anholt673a3942008-07-30 12:06:12 -07002352 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002353 i915_gem_object_do_bit_17_swizzle(obj, st);
Eric Anholt673a3942008-07-30 12:06:12 -07002354
Chris Wilson03ac84f2016-10-28 13:58:36 +01002355 return st;
Eric Anholt673a3942008-07-30 12:06:12 -07002356
2357err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002358 sg_mark_end(sg);
Dave Gordon85d12252016-05-20 11:54:06 +01002359 for_each_sgt_page(page, sgt_iter, st)
2360 put_page(page);
Chris Wilson9da3da62012-06-01 15:20:22 +01002361 sg_free_table(st);
2362 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002363
2364 /* shmemfs first checks if there is enough memory to allocate the page
2365 * and reports ENOSPC should there be insufficient, along with the usual
2366 * ENOMEM for a genuine allocation failure.
2367 *
2368 * We use ENOSPC in our driver to mean that we have run out of aperture
2369 * space and so want to translate the error from shmemfs back to our
2370 * usual understanding of ENOMEM.
2371 */
Imre Deake2273302015-07-09 12:59:05 +03002372 if (ret == -ENOSPC)
2373 ret = -ENOMEM;
2374
Chris Wilson03ac84f2016-10-28 13:58:36 +01002375 return ERR_PTR(ret);
2376}
2377
2378void __i915_gem_object_set_pages(struct drm_i915_gem_object *obj,
2379 struct sg_table *pages)
2380{
Chris Wilson1233e2d2016-10-28 13:58:37 +01002381 lockdep_assert_held(&obj->mm.lock);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002382
2383 obj->mm.get_page.sg_pos = pages->sgl;
2384 obj->mm.get_page.sg_idx = 0;
2385
2386 obj->mm.pages = pages;
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002387
2388 if (i915_gem_object_is_tiled(obj) &&
2389 to_i915(obj->base.dev)->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
2390 GEM_BUG_ON(obj->mm.quirked);
2391 __i915_gem_object_pin_pages(obj);
2392 obj->mm.quirked = true;
2393 }
Chris Wilson03ac84f2016-10-28 13:58:36 +01002394}
2395
2396static int ____i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2397{
2398 struct sg_table *pages;
2399
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002400 GEM_BUG_ON(i915_gem_object_has_pinned_pages(obj));
2401
Chris Wilson03ac84f2016-10-28 13:58:36 +01002402 if (unlikely(obj->mm.madv != I915_MADV_WILLNEED)) {
2403 DRM_DEBUG("Attempting to obtain a purgeable object\n");
2404 return -EFAULT;
2405 }
2406
2407 pages = obj->ops->get_pages(obj);
2408 if (unlikely(IS_ERR(pages)))
2409 return PTR_ERR(pages);
2410
2411 __i915_gem_object_set_pages(obj, pages);
2412 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002413}
2414
Chris Wilson37e680a2012-06-07 15:38:42 +01002415/* Ensure that the associated pages are gathered from the backing storage
Chris Wilson1233e2d2016-10-28 13:58:37 +01002416 * and pinned into our object. i915_gem_object_pin_pages() may be called
Chris Wilson37e680a2012-06-07 15:38:42 +01002417 * multiple times before they are released by a single call to
Chris Wilson1233e2d2016-10-28 13:58:37 +01002418 * i915_gem_object_unpin_pages() - once the pages are no longer referenced
Chris Wilson37e680a2012-06-07 15:38:42 +01002419 * either as a result of memory pressure (reaping pages under the shrinker)
2420 * or as the object is itself released.
2421 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002422int __i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
Chris Wilson37e680a2012-06-07 15:38:42 +01002423{
Chris Wilson03ac84f2016-10-28 13:58:36 +01002424 int err;
Chris Wilson37e680a2012-06-07 15:38:42 +01002425
Chris Wilson1233e2d2016-10-28 13:58:37 +01002426 err = mutex_lock_interruptible(&obj->mm.lock);
2427 if (err)
2428 return err;
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002429
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002430 if (unlikely(!obj->mm.pages)) {
2431 err = ____i915_gem_object_get_pages(obj);
2432 if (err)
2433 goto unlock;
2434
2435 smp_mb__before_atomic();
Chris Wilson1233e2d2016-10-28 13:58:37 +01002436 }
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002437 atomic_inc(&obj->mm.pages_pin_count);
Chris Wilson43e28f02013-01-08 10:53:09 +00002438
Chris Wilson1233e2d2016-10-28 13:58:37 +01002439unlock:
2440 mutex_unlock(&obj->mm.lock);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002441 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07002442}
2443
Dave Gordondd6034c2016-05-20 11:54:04 +01002444/* The 'mapping' part of i915_gem_object_pin_map() below */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002445static void *i915_gem_object_map(const struct drm_i915_gem_object *obj,
2446 enum i915_map_type type)
Dave Gordondd6034c2016-05-20 11:54:04 +01002447{
2448 unsigned long n_pages = obj->base.size >> PAGE_SHIFT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002449 struct sg_table *sgt = obj->mm.pages;
Dave Gordon85d12252016-05-20 11:54:06 +01002450 struct sgt_iter sgt_iter;
2451 struct page *page;
Dave Gordonb338fa42016-05-20 11:54:05 +01002452 struct page *stack_pages[32];
2453 struct page **pages = stack_pages;
Dave Gordondd6034c2016-05-20 11:54:04 +01002454 unsigned long i = 0;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002455 pgprot_t pgprot;
Dave Gordondd6034c2016-05-20 11:54:04 +01002456 void *addr;
2457
2458 /* A single page can always be kmapped */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002459 if (n_pages == 1 && type == I915_MAP_WB)
Dave Gordondd6034c2016-05-20 11:54:04 +01002460 return kmap(sg_page(sgt->sgl));
2461
Dave Gordonb338fa42016-05-20 11:54:05 +01002462 if (n_pages > ARRAY_SIZE(stack_pages)) {
2463 /* Too big for stack -- allocate temporary array instead */
2464 pages = drm_malloc_gfp(n_pages, sizeof(*pages), GFP_TEMPORARY);
2465 if (!pages)
2466 return NULL;
2467 }
Dave Gordondd6034c2016-05-20 11:54:04 +01002468
Dave Gordon85d12252016-05-20 11:54:06 +01002469 for_each_sgt_page(page, sgt_iter, sgt)
2470 pages[i++] = page;
Dave Gordondd6034c2016-05-20 11:54:04 +01002471
2472 /* Check that we have the expected number of pages */
2473 GEM_BUG_ON(i != n_pages);
2474
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002475 switch (type) {
2476 case I915_MAP_WB:
2477 pgprot = PAGE_KERNEL;
2478 break;
2479 case I915_MAP_WC:
2480 pgprot = pgprot_writecombine(PAGE_KERNEL_IO);
2481 break;
2482 }
2483 addr = vmap(pages, n_pages, 0, pgprot);
Dave Gordondd6034c2016-05-20 11:54:04 +01002484
Dave Gordonb338fa42016-05-20 11:54:05 +01002485 if (pages != stack_pages)
2486 drm_free_large(pages);
Dave Gordondd6034c2016-05-20 11:54:04 +01002487
2488 return addr;
2489}
2490
2491/* get, pin, and map the pages of the object into kernel space */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002492void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj,
2493 enum i915_map_type type)
Chris Wilson0a798eb2016-04-08 12:11:11 +01002494{
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002495 enum i915_map_type has_type;
2496 bool pinned;
2497 void *ptr;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002498 int ret;
2499
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002500 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002501
Chris Wilson1233e2d2016-10-28 13:58:37 +01002502 ret = mutex_lock_interruptible(&obj->mm.lock);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002503 if (ret)
2504 return ERR_PTR(ret);
2505
Chris Wilson1233e2d2016-10-28 13:58:37 +01002506 pinned = true;
2507 if (!atomic_inc_not_zero(&obj->mm.pages_pin_count)) {
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002508 if (unlikely(!obj->mm.pages)) {
2509 ret = ____i915_gem_object_get_pages(obj);
2510 if (ret)
2511 goto err_unlock;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002512
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002513 smp_mb__before_atomic();
2514 }
2515 atomic_inc(&obj->mm.pages_pin_count);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002516 pinned = false;
2517 }
2518 GEM_BUG_ON(!obj->mm.pages);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002519
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002520 ptr = ptr_unpack_bits(obj->mm.mapping, has_type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002521 if (ptr && has_type != type) {
2522 if (pinned) {
2523 ret = -EBUSY;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002524 goto err_unpin;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002525 }
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002526
2527 if (is_vmalloc_addr(ptr))
2528 vunmap(ptr);
2529 else
2530 kunmap(kmap_to_page(ptr));
2531
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002532 ptr = obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002533 }
2534
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002535 if (!ptr) {
2536 ptr = i915_gem_object_map(obj, type);
2537 if (!ptr) {
2538 ret = -ENOMEM;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002539 goto err_unpin;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002540 }
2541
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002542 obj->mm.mapping = ptr_pack_bits(ptr, type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002543 }
2544
Chris Wilson1233e2d2016-10-28 13:58:37 +01002545out_unlock:
2546 mutex_unlock(&obj->mm.lock);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002547 return ptr;
2548
Chris Wilson1233e2d2016-10-28 13:58:37 +01002549err_unpin:
2550 atomic_dec(&obj->mm.pages_pin_count);
2551err_unlock:
2552 ptr = ERR_PTR(ret);
2553 goto out_unlock;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002554}
2555
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002556static bool i915_context_is_banned(const struct i915_gem_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002557{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002558 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002559
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002560 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002561 return true;
2562
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002563 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
Chris Wilson676fa572014-12-24 08:13:39 -08002564 if (ctx->hang_stats.ban_period_seconds &&
2565 elapsed <= ctx->hang_stats.ban_period_seconds) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002566 DRM_DEBUG("context hanging too fast, banning!\n");
2567 return true;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002568 }
2569
2570 return false;
2571}
2572
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002573static void i915_set_reset_status(struct i915_gem_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002574 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002575{
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002576 struct i915_ctx_hang_stats *hs = &ctx->hang_stats;
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002577
2578 if (guilty) {
Chris Wilson7b4d3a12016-07-04 08:08:37 +01002579 hs->banned = i915_context_is_banned(ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002580 hs->batch_active++;
2581 hs->guilty_ts = get_seconds();
2582 } else {
2583 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002584 }
2585}
2586
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002587struct drm_i915_gem_request *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002588i915_gem_find_active_request(struct intel_engine_cs *engine)
Chris Wilson9375e442010-09-19 12:21:28 +01002589{
Chris Wilson4db080f2013-12-04 11:37:09 +00002590 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002591
Chris Wilsonf69a02c2016-07-01 17:23:16 +01002592 /* We are called by the error capture and reset at a random
2593 * point in time. In particular, note that neither is crucially
2594 * ordered with an interrupt. After a hang, the GPU is dead and we
2595 * assume that no more writes can happen (we waited long enough for
2596 * all writes that were in transaction to be flushed) - adding an
2597 * extra delay for a recent interrupt is pointless. Hence, we do
2598 * not need an engine->irq_seqno_barrier() before the seqno reads.
2599 */
Chris Wilson73cb9702016-10-28 13:58:46 +01002600 list_for_each_entry(request, &engine->timeline->requests, link) {
Chris Wilson80b204b2016-10-28 13:58:58 +01002601 if (__i915_gem_request_completed(request))
Chris Wilson4db080f2013-12-04 11:37:09 +00002602 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002603
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002604 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002605 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002606
2607 return NULL;
2608}
2609
Chris Wilson821ed7d2016-09-09 14:11:53 +01002610static void reset_request(struct drm_i915_gem_request *request)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002611{
Chris Wilson821ed7d2016-09-09 14:11:53 +01002612 void *vaddr = request->ring->vaddr;
2613 u32 head;
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002614
Chris Wilson821ed7d2016-09-09 14:11:53 +01002615 /* As this request likely depends on state from the lost
2616 * context, clear out all the user operations leaving the
2617 * breadcrumb at the end (so we get the fence notifications).
2618 */
2619 head = request->head;
2620 if (request->postfix < head) {
2621 memset(vaddr + head, 0, request->ring->size - head);
2622 head = 0;
2623 }
2624 memset(vaddr + head, 0, request->postfix - head);
Chris Wilson4db080f2013-12-04 11:37:09 +00002625}
2626
Chris Wilson821ed7d2016-09-09 14:11:53 +01002627static void i915_gem_reset_engine(struct intel_engine_cs *engine)
Chris Wilson4db080f2013-12-04 11:37:09 +00002628{
Chris Wilsondcff85c2016-08-05 10:14:11 +01002629 struct drm_i915_gem_request *request;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002630 struct i915_gem_context *incomplete_ctx;
Chris Wilson80b204b2016-10-28 13:58:58 +01002631 struct intel_timeline *timeline;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002632 bool ring_hung;
Chris Wilson608c1a52015-09-03 13:01:40 +01002633
Chris Wilson821ed7d2016-09-09 14:11:53 +01002634 if (engine->irq_seqno_barrier)
2635 engine->irq_seqno_barrier(engine);
2636
2637 request = i915_gem_find_active_request(engine);
2638 if (!request)
2639 return;
2640
2641 ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
Chris Wilson77c60702016-10-04 21:11:29 +01002642 if (engine->hangcheck.seqno != intel_engine_get_seqno(engine))
2643 ring_hung = false;
2644
Chris Wilson821ed7d2016-09-09 14:11:53 +01002645 i915_set_reset_status(request->ctx, ring_hung);
2646 if (!ring_hung)
2647 return;
2648
2649 DRM_DEBUG_DRIVER("resetting %s to restart from tail of request 0x%x\n",
Chris Wilson65e47602016-10-28 13:58:49 +01002650 engine->name, request->global_seqno);
Chris Wilson821ed7d2016-09-09 14:11:53 +01002651
2652 /* Setup the CS to resume from the breadcrumb of the hung request */
2653 engine->reset_hw(engine, request);
2654
2655 /* Users of the default context do not rely on logical state
2656 * preserved between batches. They have to emit full state on
2657 * every batch and so it is safe to execute queued requests following
2658 * the hang.
2659 *
2660 * Other contexts preserve state, now corrupt. We want to skip all
2661 * queued requests that reference the corrupt context.
2662 */
2663 incomplete_ctx = request->ctx;
2664 if (i915_gem_context_is_default(incomplete_ctx))
2665 return;
2666
Chris Wilson73cb9702016-10-28 13:58:46 +01002667 list_for_each_entry_continue(request, &engine->timeline->requests, link)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002668 if (request->ctx == incomplete_ctx)
2669 reset_request(request);
Chris Wilson80b204b2016-10-28 13:58:58 +01002670
2671 timeline = i915_gem_context_lookup_timeline(incomplete_ctx, engine);
2672 list_for_each_entry(request, &timeline->requests, link)
2673 reset_request(request);
Chris Wilson821ed7d2016-09-09 14:11:53 +01002674}
2675
2676void i915_gem_reset(struct drm_i915_private *dev_priv)
2677{
2678 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302679 enum intel_engine_id id;
Chris Wilson821ed7d2016-09-09 14:11:53 +01002680
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002681 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2682
Chris Wilson821ed7d2016-09-09 14:11:53 +01002683 i915_gem_retire_requests(dev_priv);
2684
Akash Goel3b3f1652016-10-13 22:44:48 +05302685 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002686 i915_gem_reset_engine(engine);
2687
2688 i915_gem_restore_fences(&dev_priv->drm);
Chris Wilsonf2a91d12016-09-21 14:51:06 +01002689
2690 if (dev_priv->gt.awake) {
2691 intel_sanitize_gt_powersave(dev_priv);
2692 intel_enable_gt_powersave(dev_priv);
2693 if (INTEL_GEN(dev_priv) >= 6)
2694 gen6_rps_busy(dev_priv);
2695 }
Chris Wilson821ed7d2016-09-09 14:11:53 +01002696}
2697
2698static void nop_submit_request(struct drm_i915_gem_request *request)
2699{
2700}
2701
2702static void i915_gem_cleanup_engine(struct intel_engine_cs *engine)
2703{
2704 engine->submit_request = nop_submit_request;
Chris Wilson70c2a242016-09-09 14:11:46 +01002705
Chris Wilsonc4b09302016-07-20 09:21:10 +01002706 /* Mark all pending requests as complete so that any concurrent
2707 * (lockless) lookup doesn't try and wait upon the request as we
2708 * reset it.
2709 */
Chris Wilson73cb9702016-10-28 13:58:46 +01002710 intel_engine_init_global_seqno(engine,
Chris Wilsoncb399ea2016-11-01 10:03:16 +00002711 intel_engine_last_submit(engine));
Chris Wilsonc4b09302016-07-20 09:21:10 +01002712
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002713 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002714 * Clear the execlists queue up before freeing the requests, as those
2715 * are the ones that keep the context and ringbuffer backing objects
2716 * pinned in place.
2717 */
Oscar Mateodcb4c122014-11-13 10:28:10 +00002718
Tomas Elf7de1691a2015-10-19 16:32:32 +01002719 if (i915.enable_execlists) {
Chris Wilson663f71e2016-11-14 20:41:00 +00002720 unsigned long flags;
2721
2722 spin_lock_irqsave(&engine->timeline->lock, flags);
2723
Chris Wilson70c2a242016-09-09 14:11:46 +01002724 INIT_LIST_HEAD(&engine->execlist_queue);
2725 i915_gem_request_put(engine->execlist_port[0].request);
2726 i915_gem_request_put(engine->execlist_port[1].request);
2727 memset(engine->execlist_port, 0, sizeof(engine->execlist_port));
Chris Wilson663f71e2016-11-14 20:41:00 +00002728
2729 spin_unlock_irqrestore(&engine->timeline->lock, flags);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002730 }
Eric Anholt673a3942008-07-30 12:06:12 -07002731}
2732
Chris Wilson821ed7d2016-09-09 14:11:53 +01002733void i915_gem_set_wedged(struct drm_i915_private *dev_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07002734{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002735 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302736 enum intel_engine_id id;
Eric Anholt673a3942008-07-30 12:06:12 -07002737
Chris Wilson821ed7d2016-09-09 14:11:53 +01002738 lockdep_assert_held(&dev_priv->drm.struct_mutex);
2739 set_bit(I915_WEDGED, &dev_priv->gpu_error.flags);
Chris Wilson4db080f2013-12-04 11:37:09 +00002740
Chris Wilson821ed7d2016-09-09 14:11:53 +01002741 i915_gem_context_lost(dev_priv);
Akash Goel3b3f1652016-10-13 22:44:48 +05302742 for_each_engine(engine, dev_priv, id)
Chris Wilson821ed7d2016-09-09 14:11:53 +01002743 i915_gem_cleanup_engine(engine);
Chris Wilsonb913b332016-07-13 09:10:31 +01002744 mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0);
Chris Wilsondfaae392010-09-22 10:31:52 +01002745
Chris Wilson821ed7d2016-09-09 14:11:53 +01002746 i915_gem_retire_requests(dev_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07002747}
2748
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002749static void
Eric Anholt673a3942008-07-30 12:06:12 -07002750i915_gem_retire_work_handler(struct work_struct *work)
2751{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002752 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002753 container_of(work, typeof(*dev_priv), gt.retire_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002754 struct drm_device *dev = &dev_priv->drm;
Eric Anholt673a3942008-07-30 12:06:12 -07002755
Chris Wilson891b48c2010-09-29 12:26:37 +01002756 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002757 if (mutex_trylock(&dev->struct_mutex)) {
Chris Wilson67d97da2016-07-04 08:08:31 +01002758 i915_gem_retire_requests(dev_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002759 mutex_unlock(&dev->struct_mutex);
2760 }
Chris Wilson67d97da2016-07-04 08:08:31 +01002761
2762 /* Keep the retire handler running until we are finally idle.
2763 * We do not need to do this test under locking as in the worst-case
2764 * we queue the retire worker once too often.
2765 */
Chris Wilsonc9615612016-07-09 10:12:06 +01002766 if (READ_ONCE(dev_priv->gt.awake)) {
2767 i915_queue_hangcheck(dev_priv);
Chris Wilson67d97da2016-07-04 08:08:31 +01002768 queue_delayed_work(dev_priv->wq,
2769 &dev_priv->gt.retire_work,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002770 round_jiffies_up_relative(HZ));
Chris Wilsonc9615612016-07-09 10:12:06 +01002771 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002772}
Chris Wilson891b48c2010-09-29 12:26:37 +01002773
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002774static void
2775i915_gem_idle_work_handler(struct work_struct *work)
2776{
2777 struct drm_i915_private *dev_priv =
Chris Wilson67d97da2016-07-04 08:08:31 +01002778 container_of(work, typeof(*dev_priv), gt.idle_work.work);
Chris Wilson91c8a322016-07-05 10:40:23 +01002779 struct drm_device *dev = &dev_priv->drm;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002780 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05302781 enum intel_engine_id id;
Chris Wilson67d97da2016-07-04 08:08:31 +01002782 bool rearm_hangcheck;
2783
2784 if (!READ_ONCE(dev_priv->gt.awake))
2785 return;
2786
Imre Deak0cb56702016-11-07 11:20:04 +02002787 /*
2788 * Wait for last execlists context complete, but bail out in case a
2789 * new request is submitted.
2790 */
2791 wait_for(READ_ONCE(dev_priv->gt.active_requests) ||
2792 intel_execlists_idle(dev_priv), 10);
2793
Chris Wilson28176ef2016-10-28 13:58:56 +01002794 if (READ_ONCE(dev_priv->gt.active_requests))
Chris Wilson67d97da2016-07-04 08:08:31 +01002795 return;
2796
2797 rearm_hangcheck =
2798 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
2799
2800 if (!mutex_trylock(&dev->struct_mutex)) {
2801 /* Currently busy, come back later */
2802 mod_delayed_work(dev_priv->wq,
2803 &dev_priv->gt.idle_work,
2804 msecs_to_jiffies(50));
2805 goto out_rearm;
2806 }
2807
Imre Deak93c97dc2016-11-07 11:20:03 +02002808 /*
2809 * New request retired after this work handler started, extend active
2810 * period until next instance of the work.
2811 */
2812 if (work_pending(work))
2813 goto out_unlock;
2814
Chris Wilson28176ef2016-10-28 13:58:56 +01002815 if (dev_priv->gt.active_requests)
Chris Wilson67d97da2016-07-04 08:08:31 +01002816 goto out_unlock;
Zou Nan haid1b851f2010-05-21 09:08:57 +08002817
Imre Deak0cb56702016-11-07 11:20:04 +02002818 if (wait_for(intel_execlists_idle(dev_priv), 10))
2819 DRM_ERROR("Timeout waiting for engines to idle\n");
2820
Akash Goel3b3f1652016-10-13 22:44:48 +05302821 for_each_engine(engine, dev_priv, id)
Chris Wilson67d97da2016-07-04 08:08:31 +01002822 i915_gem_batch_pool_fini(&engine->batch_pool);
Zou Nan hai852835f2010-05-21 09:08:56 +08002823
Chris Wilson67d97da2016-07-04 08:08:31 +01002824 GEM_BUG_ON(!dev_priv->gt.awake);
2825 dev_priv->gt.awake = false;
2826 rearm_hangcheck = false;
Daniel Vetter30ecad72015-12-09 09:29:36 +01002827
Chris Wilson67d97da2016-07-04 08:08:31 +01002828 if (INTEL_GEN(dev_priv) >= 6)
2829 gen6_rps_idle(dev_priv);
2830 intel_runtime_pm_put(dev_priv);
2831out_unlock:
2832 mutex_unlock(&dev->struct_mutex);
Chris Wilson35c94182015-04-07 16:20:37 +01002833
Chris Wilson67d97da2016-07-04 08:08:31 +01002834out_rearm:
2835 if (rearm_hangcheck) {
2836 GEM_BUG_ON(!dev_priv->gt.awake);
2837 i915_queue_hangcheck(dev_priv);
Chris Wilson35c94182015-04-07 16:20:37 +01002838 }
Eric Anholt673a3942008-07-30 12:06:12 -07002839}
2840
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002841void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
2842{
2843 struct drm_i915_gem_object *obj = to_intel_bo(gem);
2844 struct drm_i915_file_private *fpriv = file->driver_priv;
2845 struct i915_vma *vma, *vn;
2846
2847 mutex_lock(&obj->base.dev->struct_mutex);
2848 list_for_each_entry_safe(vma, vn, &obj->vma_list, obj_link)
2849 if (vma->vm->file == fpriv)
2850 i915_vma_close(vma);
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002851
2852 if (i915_gem_object_is_active(obj) &&
2853 !i915_gem_object_has_active_reference(obj)) {
2854 i915_gem_object_set_active_reference(obj);
2855 i915_gem_object_get(obj);
2856 }
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002857 mutex_unlock(&obj->base.dev->struct_mutex);
2858}
2859
Chris Wilsone95433c2016-10-28 13:58:27 +01002860static unsigned long to_wait_timeout(s64 timeout_ns)
2861{
2862 if (timeout_ns < 0)
2863 return MAX_SCHEDULE_TIMEOUT;
2864
2865 if (timeout_ns == 0)
2866 return 0;
2867
2868 return nsecs_to_jiffies_timeout(timeout_ns);
2869}
2870
Ben Widawsky5816d642012-04-11 11:18:19 -07002871/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002872 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002873 * @dev: drm device pointer
2874 * @data: ioctl data blob
2875 * @file: drm file pointer
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002876 *
2877 * Returns 0 if successful, else an error is returned with the remaining time in
2878 * the timeout parameter.
2879 * -ETIME: object is still busy after timeout
2880 * -ERESTARTSYS: signal interrupted the wait
2881 * -ENONENT: object doesn't exist
2882 * Also possible, but rare:
2883 * -EAGAIN: GPU wedged
2884 * -ENOMEM: damn
2885 * -ENODEV: Internal IRQ fail
2886 * -E?: The add request failed
2887 *
2888 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2889 * non-zero timeout parameter the wait ioctl will wait for the given number of
2890 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2891 * without holding struct_mutex the object may become re-busied before this
2892 * function completes. A similar but shorter * race condition exists in the busy
2893 * ioctl
2894 */
2895int
2896i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2897{
2898 struct drm_i915_gem_wait *args = data;
2899 struct drm_i915_gem_object *obj;
Chris Wilsone95433c2016-10-28 13:58:27 +01002900 ktime_t start;
2901 long ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002902
Daniel Vetter11b5d512014-09-29 15:31:26 +02002903 if (args->flags != 0)
2904 return -EINVAL;
2905
Chris Wilson03ac0642016-07-20 13:31:51 +01002906 obj = i915_gem_object_lookup(file, args->bo_handle);
Chris Wilson033d5492016-08-05 10:14:17 +01002907 if (!obj)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002908 return -ENOENT;
Chris Wilson033d5492016-08-05 10:14:17 +01002909
Chris Wilsone95433c2016-10-28 13:58:27 +01002910 start = ktime_get();
2911
2912 ret = i915_gem_object_wait(obj,
2913 I915_WAIT_INTERRUPTIBLE | I915_WAIT_ALL,
2914 to_wait_timeout(args->timeout_ns),
2915 to_rps_client(file));
2916
2917 if (args->timeout_ns > 0) {
2918 args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start));
2919 if (args->timeout_ns < 0)
2920 args->timeout_ns = 0;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002921 }
2922
Chris Wilsonf0cd5182016-10-28 13:58:43 +01002923 i915_gem_object_put(obj);
John Harrisonff865882014-11-24 18:49:28 +00002924 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002925}
2926
Chris Wilson73cb9702016-10-28 13:58:46 +01002927static int wait_for_timeline(struct i915_gem_timeline *tl, unsigned int flags)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002928{
Chris Wilson73cb9702016-10-28 13:58:46 +01002929 int ret, i;
2930
2931 for (i = 0; i < ARRAY_SIZE(tl->engine); i++) {
2932 ret = i915_gem_active_wait(&tl->engine[i].last_request, flags);
2933 if (ret)
2934 return ret;
2935 }
2936
2937 return 0;
2938}
2939
2940int i915_gem_wait_for_idle(struct drm_i915_private *i915, unsigned int flags)
2941{
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002942 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002943
Chris Wilson9caa34a2016-11-11 14:58:08 +00002944 if (flags & I915_WAIT_LOCKED) {
2945 struct i915_gem_timeline *tl;
2946
2947 lockdep_assert_held(&i915->drm.struct_mutex);
2948
2949 list_for_each_entry(tl, &i915->gt.timelines, link) {
2950 ret = wait_for_timeline(tl, flags);
2951 if (ret)
2952 return ret;
2953 }
2954 } else {
2955 ret = wait_for_timeline(&i915->gt.global_timeline, flags);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002956 if (ret)
2957 return ret;
2958 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002959
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002960 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002961}
2962
Chris Wilsond0da48c2016-11-06 12:59:59 +00002963void i915_gem_clflush_object(struct drm_i915_gem_object *obj,
2964 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07002965{
Eric Anholt673a3942008-07-30 12:06:12 -07002966 /* If we don't have a page list set up, then we're not pinned
2967 * to GPU, and we can ignore the cache flush because it'll happen
2968 * again at bind time.
2969 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002970 if (!obj->mm.pages)
Chris Wilsond0da48c2016-11-06 12:59:59 +00002971 return;
Eric Anholt673a3942008-07-30 12:06:12 -07002972
Imre Deak769ce462013-02-13 21:56:05 +02002973 /*
2974 * Stolen memory is always coherent with the GPU as it is explicitly
2975 * marked as wc by the system, or the system is cache-coherent.
2976 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08002977 if (obj->stolen || obj->phys_handle)
Chris Wilsond0da48c2016-11-06 12:59:59 +00002978 return;
Imre Deak769ce462013-02-13 21:56:05 +02002979
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002980 /* If the GPU is snooping the contents of the CPU cache,
2981 * we do not need to manually clear the CPU cache lines. However,
2982 * the caches are only snooped when the render cache is
2983 * flushed/invalidated. As we always have to emit invalidations
2984 * and flushes when moving into and out of the RENDER domain, correct
2985 * snooping behaviour occurs naturally as the result of our domain
2986 * tracking.
2987 */
Chris Wilson0f719792015-01-13 13:32:52 +00002988 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
2989 obj->cache_dirty = true;
Chris Wilsond0da48c2016-11-06 12:59:59 +00002990 return;
Chris Wilson0f719792015-01-13 13:32:52 +00002991 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07002992
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002993 trace_i915_gem_object_clflush(obj);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002994 drm_clflush_sg(obj->mm.pages);
Chris Wilson0f719792015-01-13 13:32:52 +00002995 obj->cache_dirty = false;
Eric Anholte47c68e2008-11-14 13:35:19 -08002996}
2997
2998/** Flushes the GTT write domain for the object if it's dirty. */
2999static void
Chris Wilson05394f32010-11-08 19:18:58 +00003000i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003001{
Chris Wilson3b5724d2016-08-18 17:16:49 +01003002 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003003
Chris Wilson05394f32010-11-08 19:18:58 +00003004 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003005 return;
3006
Chris Wilson63256ec2011-01-04 18:42:07 +00003007 /* No actual flushing is required for the GTT write domain. Writes
Chris Wilson3b5724d2016-08-18 17:16:49 +01003008 * to it "immediately" go to main memory as far as we know, so there's
Eric Anholte47c68e2008-11-14 13:35:19 -08003009 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003010 *
3011 * However, we do have to enforce the order so that all writes through
3012 * the GTT land before any writes to the device, such as updates to
3013 * the GATT itself.
Chris Wilson3b5724d2016-08-18 17:16:49 +01003014 *
3015 * We also have to wait a bit for the writes to land from the GTT.
3016 * An uncached read (i.e. mmio) seems to be ideal for the round-trip
3017 * timing. This issue has only been observed when switching quickly
3018 * between GTT writes and CPU reads from inside the kernel on recent hw,
3019 * and it appears to only affect discrete GTT blocks (i.e. on LLC
3020 * system agents we cannot reproduce this behaviour).
Eric Anholte47c68e2008-11-14 13:35:19 -08003021 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003022 wmb();
Chris Wilson3b5724d2016-08-18 17:16:49 +01003023 if (INTEL_GEN(dev_priv) >= 6 && !HAS_LLC(dev_priv))
Akash Goel3b3f1652016-10-13 22:44:48 +05303024 POSTING_READ(RING_ACTHD(dev_priv->engine[RCS]->mmio_base));
Chris Wilson63256ec2011-01-04 18:42:07 +00003025
Chris Wilsond243ad82016-08-18 17:16:44 +01003026 intel_fb_obj_flush(obj, false, write_origin(obj, I915_GEM_DOMAIN_GTT));
Daniel Vetterf99d7062014-06-19 16:01:59 +02003027
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003028 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003029 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003030 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003031 I915_GEM_DOMAIN_GTT);
Eric Anholte47c68e2008-11-14 13:35:19 -08003032}
3033
3034/** Flushes the CPU write domain for the object if it's dirty. */
3035static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003036i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003037{
Chris Wilson05394f32010-11-08 19:18:58 +00003038 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003039 return;
3040
Chris Wilsond0da48c2016-11-06 12:59:59 +00003041 i915_gem_clflush_object(obj, obj->pin_display);
Rodrigo Vivide152b62015-07-07 16:28:51 -07003042 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003043
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003044 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003045 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003046 obj->base.read_domains,
Chris Wilsonb0dc4652016-08-18 17:16:51 +01003047 I915_GEM_DOMAIN_CPU);
Eric Anholte47c68e2008-11-14 13:35:19 -08003048}
3049
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003050/**
3051 * Moves a single object to the GTT read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003052 * @obj: object to act on
3053 * @write: ask for write access or read only
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003054 *
3055 * This function returns when the move is complete, including waiting on
3056 * flushes to occur.
3057 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003058int
Chris Wilson20217462010-11-23 15:26:33 +00003059i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003060{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003061 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003062 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003063
Chris Wilsone95433c2016-10-28 13:58:27 +01003064 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003065
Chris Wilsone95433c2016-10-28 13:58:27 +01003066 ret = i915_gem_object_wait(obj,
3067 I915_WAIT_INTERRUPTIBLE |
3068 I915_WAIT_LOCKED |
3069 (write ? I915_WAIT_ALL : 0),
3070 MAX_SCHEDULE_TIMEOUT,
3071 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003072 if (ret)
3073 return ret;
3074
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003075 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3076 return 0;
3077
Chris Wilson43566de2015-01-02 16:29:29 +05303078 /* Flush and acquire obj->pages so that we are coherent through
3079 * direct access in memory with previous cached writes through
3080 * shmemfs and that our cache domain tracking remains valid.
3081 * For example, if the obj->filp was moved to swap without us
3082 * being notified and releasing the pages, we would mistakenly
3083 * continue to assume that the obj remained out of the CPU cached
3084 * domain.
3085 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003086 ret = i915_gem_object_pin_pages(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303087 if (ret)
3088 return ret;
3089
Daniel Vettere62b59e2015-01-21 14:53:48 +01003090 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003091
Chris Wilsond0a57782012-10-09 19:24:37 +01003092 /* Serialise direct access to this object with the barriers for
3093 * coherent writes from the GPU, by effectively invalidating the
3094 * GTT domain upon first access.
3095 */
3096 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3097 mb();
3098
Chris Wilson05394f32010-11-08 19:18:58 +00003099 old_write_domain = obj->base.write_domain;
3100 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003101
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003102 /* It should now be out of any other write domains, and we can update
3103 * the domain values for our changes.
3104 */
Chris Wilson40e62d52016-10-28 13:58:41 +01003105 GEM_BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
Chris Wilson05394f32010-11-08 19:18:58 +00003106 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003107 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003108 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3109 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003110 obj->mm.dirty = true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003111 }
3112
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003113 trace_i915_gem_object_change_domain(obj,
3114 old_read_domains,
3115 old_write_domain);
3116
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003117 i915_gem_object_unpin_pages(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003118 return 0;
3119}
3120
Chris Wilsonef55f922015-10-09 14:11:27 +01003121/**
3122 * Changes the cache-level of an object across all VMA.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003123 * @obj: object to act on
3124 * @cache_level: new cache level to set for the object
Chris Wilsonef55f922015-10-09 14:11:27 +01003125 *
3126 * After this function returns, the object will be in the new cache-level
3127 * across all GTT and the contents of the backing storage will be coherent,
3128 * with respect to the new cache-level. In order to keep the backing storage
3129 * coherent for all users, we only allow a single cache level to be set
3130 * globally on the object and prevent it from being changed whilst the
3131 * hardware is reading from the object. That is if the object is currently
3132 * on the scanout it will be set to uncached (or equivalent display
3133 * cache coherency) and all non-MOCS GPU access will also be uncached so
3134 * that all direct access to the scanout remains coherent.
3135 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003136int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3137 enum i915_cache_level cache_level)
3138{
Chris Wilsonaa653a62016-08-04 07:52:27 +01003139 struct i915_vma *vma;
Ville Syrjäläed75a552015-08-11 19:47:10 +03003140 int ret = 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003141
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003142 lockdep_assert_held(&obj->base.dev->struct_mutex);
3143
Chris Wilsone4ffd172011-04-04 09:44:39 +01003144 if (obj->cache_level == cache_level)
Ville Syrjäläed75a552015-08-11 19:47:10 +03003145 goto out;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003146
Chris Wilsonef55f922015-10-09 14:11:27 +01003147 /* Inspect the list of currently bound VMA and unbind any that would
3148 * be invalid given the new cache-level. This is principally to
3149 * catch the issue of the CS prefetch crossing page boundaries and
3150 * reading an invalid PTE on older architectures.
3151 */
Chris Wilsonaa653a62016-08-04 07:52:27 +01003152restart:
3153 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003154 if (!drm_mm_node_allocated(&vma->node))
3155 continue;
3156
Chris Wilson20dfbde2016-08-04 16:32:30 +01003157 if (i915_vma_is_pinned(vma)) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003158 DRM_DEBUG("can not change the cache level of pinned objects\n");
3159 return -EBUSY;
3160 }
3161
Chris Wilsonaa653a62016-08-04 07:52:27 +01003162 if (i915_gem_valid_gtt_space(vma, cache_level))
3163 continue;
3164
3165 ret = i915_vma_unbind(vma);
3166 if (ret)
3167 return ret;
3168
3169 /* As unbinding may affect other elements in the
3170 * obj->vma_list (due to side-effects from retiring
3171 * an active vma), play safe and restart the iterator.
3172 */
3173 goto restart;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003174 }
3175
Chris Wilsonef55f922015-10-09 14:11:27 +01003176 /* We can reuse the existing drm_mm nodes but need to change the
3177 * cache-level on the PTE. We could simply unbind them all and
3178 * rebind with the correct cache-level on next use. However since
3179 * we already have a valid slot, dma mapping, pages etc, we may as
3180 * rewrite the PTE in the belief that doing so tramples upon less
3181 * state and so involves less work.
3182 */
Chris Wilson15717de2016-08-04 07:52:26 +01003183 if (obj->bind_count) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003184 /* Before we change the PTE, the GPU must not be accessing it.
3185 * If we wait upon the object, we know that all the bound
3186 * VMA are no longer active.
3187 */
Chris Wilsone95433c2016-10-28 13:58:27 +01003188 ret = i915_gem_object_wait(obj,
3189 I915_WAIT_INTERRUPTIBLE |
3190 I915_WAIT_LOCKED |
3191 I915_WAIT_ALL,
3192 MAX_SCHEDULE_TIMEOUT,
3193 NULL);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003194 if (ret)
3195 return ret;
3196
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00003197 if (!HAS_LLC(to_i915(obj->base.dev)) &&
3198 cache_level != I915_CACHE_NONE) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003199 /* Access to snoopable pages through the GTT is
3200 * incoherent and on some machines causes a hard
3201 * lockup. Relinquish the CPU mmaping to force
3202 * userspace to refault in the pages and we can
3203 * then double check if the GTT mapping is still
3204 * valid for that pointer access.
3205 */
3206 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003207
Chris Wilsonef55f922015-10-09 14:11:27 +01003208 /* As we no longer need a fence for GTT access,
3209 * we can relinquish it now (and so prevent having
3210 * to steal a fence from someone else on the next
3211 * fence request). Note GPU activity would have
3212 * dropped the fence as all snoopable access is
3213 * supposed to be linear.
3214 */
Chris Wilson49ef5292016-08-18 17:17:00 +01003215 list_for_each_entry(vma, &obj->vma_list, obj_link) {
3216 ret = i915_vma_put_fence(vma);
3217 if (ret)
3218 return ret;
3219 }
Chris Wilsonef55f922015-10-09 14:11:27 +01003220 } else {
3221 /* We either have incoherent backing store and
3222 * so no GTT access or the architecture is fully
3223 * coherent. In such cases, existing GTT mmaps
3224 * ignore the cache bit in the PTE and we can
3225 * rewrite it without confusing the GPU or having
3226 * to force userspace to fault back in its mmaps.
3227 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003228 }
3229
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003230 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003231 if (!drm_mm_node_allocated(&vma->node))
3232 continue;
3233
3234 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3235 if (ret)
3236 return ret;
3237 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003238 }
3239
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003240 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003241 vma->node.color = cache_level;
3242 obj->cache_level = cache_level;
3243
Ville Syrjäläed75a552015-08-11 19:47:10 +03003244out:
Chris Wilsonef55f922015-10-09 14:11:27 +01003245 /* Flush the dirty CPU caches to the backing storage so that the
3246 * object is now coherent at its new cache level (with respect
3247 * to the access domain).
3248 */
Chris Wilsond0da48c2016-11-06 12:59:59 +00003249 if (obj->cache_dirty && cpu_write_needs_clflush(obj))
3250 i915_gem_clflush_object(obj, true);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003251
Chris Wilsone4ffd172011-04-04 09:44:39 +01003252 return 0;
3253}
3254
Ben Widawsky199adf42012-09-21 17:01:20 -07003255int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3256 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003257{
Ben Widawsky199adf42012-09-21 17:01:20 -07003258 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003259 struct drm_i915_gem_object *obj;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003260 int err = 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003261
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003262 rcu_read_lock();
3263 obj = i915_gem_object_lookup_rcu(file, args->handle);
3264 if (!obj) {
3265 err = -ENOENT;
3266 goto out;
3267 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003268
Chris Wilson651d7942013-08-08 14:41:10 +01003269 switch (obj->cache_level) {
3270 case I915_CACHE_LLC:
3271 case I915_CACHE_L3_LLC:
3272 args->caching = I915_CACHING_CACHED;
3273 break;
3274
Chris Wilson4257d3b2013-08-08 14:41:11 +01003275 case I915_CACHE_WT:
3276 args->caching = I915_CACHING_DISPLAY;
3277 break;
3278
Chris Wilson651d7942013-08-08 14:41:10 +01003279 default:
3280 args->caching = I915_CACHING_NONE;
3281 break;
3282 }
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003283out:
3284 rcu_read_unlock();
3285 return err;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003286}
3287
Ben Widawsky199adf42012-09-21 17:01:20 -07003288int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3289 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003290{
Chris Wilson9c870d02016-10-24 13:42:15 +01003291 struct drm_i915_private *i915 = to_i915(dev);
Ben Widawsky199adf42012-09-21 17:01:20 -07003292 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003293 struct drm_i915_gem_object *obj;
3294 enum i915_cache_level level;
3295 int ret;
3296
Ben Widawsky199adf42012-09-21 17:01:20 -07003297 switch (args->caching) {
3298 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003299 level = I915_CACHE_NONE;
3300 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003301 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003302 /*
3303 * Due to a HW issue on BXT A stepping, GPU stores via a
3304 * snooped mapping may leave stale data in a corresponding CPU
3305 * cacheline, whereas normally such cachelines would get
3306 * invalidated.
3307 */
Chris Wilson9c870d02016-10-24 13:42:15 +01003308 if (!HAS_LLC(i915) && !HAS_SNOOP(i915))
Imre Deake5756c12015-08-14 18:43:30 +03003309 return -ENODEV;
3310
Chris Wilsone6994ae2012-07-10 10:27:08 +01003311 level = I915_CACHE_LLC;
3312 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003313 case I915_CACHING_DISPLAY:
Chris Wilson9c870d02016-10-24 13:42:15 +01003314 level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003315 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003316 default:
3317 return -EINVAL;
3318 }
3319
Ben Widawsky3bc29132012-09-26 16:15:20 -07003320 ret = i915_mutex_lock_interruptible(dev);
3321 if (ret)
Chris Wilson9c870d02016-10-24 13:42:15 +01003322 return ret;
Ben Widawsky3bc29132012-09-26 16:15:20 -07003323
Chris Wilson03ac0642016-07-20 13:31:51 +01003324 obj = i915_gem_object_lookup(file, args->handle);
3325 if (!obj) {
Chris Wilsone6994ae2012-07-10 10:27:08 +01003326 ret = -ENOENT;
3327 goto unlock;
3328 }
3329
3330 ret = i915_gem_object_set_cache_level(obj, level);
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003331 i915_gem_object_put(obj);
Chris Wilsone6994ae2012-07-10 10:27:08 +01003332unlock:
3333 mutex_unlock(&dev->struct_mutex);
3334 return ret;
3335}
3336
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003337/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003338 * Prepare buffer for display plane (scanout, cursors, etc).
3339 * Can be called from an uninterruptible phase (modesetting) and allows
3340 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003341 */
Chris Wilson058d88c2016-08-15 10:49:06 +01003342struct i915_vma *
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003343i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3344 u32 alignment,
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003345 const struct i915_ggtt_view *view)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003346{
Chris Wilson058d88c2016-08-15 10:49:06 +01003347 struct i915_vma *vma;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003348 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003349 int ret;
3350
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003351 lockdep_assert_held(&obj->base.dev->struct_mutex);
3352
Chris Wilsoncc98b412013-08-09 12:25:09 +01003353 /* Mark the pin_display early so that we account for the
3354 * display coherency whilst setting up the cache domains.
3355 */
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003356 obj->pin_display++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003357
Eric Anholta7ef0642011-03-29 16:59:54 -07003358 /* The display engine is not coherent with the LLC cache on gen6. As
3359 * a result, we make sure that the pinning that is about to occur is
3360 * done with uncached PTEs. This is lowest common denominator for all
3361 * chipsets.
3362 *
3363 * However for gen6+, we could do better by using the GFDT bit instead
3364 * of uncaching, which would allow us to flush all the LLC-cached data
3365 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3366 */
Chris Wilson651d7942013-08-08 14:41:10 +01003367 ret = i915_gem_object_set_cache_level(obj,
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003368 HAS_WT(to_i915(obj->base.dev)) ?
3369 I915_CACHE_WT : I915_CACHE_NONE);
Chris Wilson058d88c2016-08-15 10:49:06 +01003370 if (ret) {
3371 vma = ERR_PTR(ret);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003372 goto err_unpin_display;
Chris Wilson058d88c2016-08-15 10:49:06 +01003373 }
Eric Anholta7ef0642011-03-29 16:59:54 -07003374
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003375 /* As the user may map the buffer once pinned in the display plane
3376 * (e.g. libkms for the bootup splash), we have to ensure that we
Chris Wilson2efb8132016-08-18 17:17:06 +01003377 * always use map_and_fenceable for all scanout buffers. However,
3378 * it may simply be too big to fit into mappable, in which case
3379 * put it anyway and hope that userspace can cope (but always first
3380 * try to preserve the existing ABI).
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003381 */
Chris Wilson2efb8132016-08-18 17:17:06 +01003382 vma = ERR_PTR(-ENOSPC);
3383 if (view->type == I915_GGTT_VIEW_NORMAL)
3384 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment,
3385 PIN_MAPPABLE | PIN_NONBLOCK);
Chris Wilson767a2222016-11-07 11:01:28 +00003386 if (IS_ERR(vma)) {
3387 struct drm_i915_private *i915 = to_i915(obj->base.dev);
3388 unsigned int flags;
3389
3390 /* Valleyview is definitely limited to scanning out the first
3391 * 512MiB. Lets presume this behaviour was inherited from the
3392 * g4x display engine and that all earlier gen are similarly
3393 * limited. Testing suggests that it is a little more
3394 * complicated than this. For example, Cherryview appears quite
3395 * happy to scanout from anywhere within its global aperture.
3396 */
3397 flags = 0;
3398 if (HAS_GMCH_DISPLAY(i915))
3399 flags = PIN_MAPPABLE;
3400 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, flags);
3401 }
Chris Wilson058d88c2016-08-15 10:49:06 +01003402 if (IS_ERR(vma))
Chris Wilsoncc98b412013-08-09 12:25:09 +01003403 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003404
Chris Wilsond8923dc2016-08-18 17:17:07 +01003405 vma->display_alignment = max_t(u64, vma->display_alignment, alignment);
3406
Daniel Vettere62b59e2015-01-21 14:53:48 +01003407 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003408
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003409 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003410 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003411
3412 /* It should now be out of any other write domains, and we can update
3413 * the domain values for our changes.
3414 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003415 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003416 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003417
3418 trace_i915_gem_object_change_domain(obj,
3419 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003420 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003421
Chris Wilson058d88c2016-08-15 10:49:06 +01003422 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003423
3424err_unpin_display:
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003425 obj->pin_display--;
Chris Wilson058d88c2016-08-15 10:49:06 +01003426 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003427}
3428
3429void
Chris Wilson058d88c2016-08-15 10:49:06 +01003430i915_gem_object_unpin_from_display_plane(struct i915_vma *vma)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003431{
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003432 lockdep_assert_held(&vma->vm->dev->struct_mutex);
3433
Chris Wilson058d88c2016-08-15 10:49:06 +01003434 if (WARN_ON(vma->obj->pin_display == 0))
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003435 return;
3436
Chris Wilsond8923dc2016-08-18 17:17:07 +01003437 if (--vma->obj->pin_display == 0)
3438 vma->display_alignment = 0;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003439
Chris Wilson383d5822016-08-18 17:17:08 +01003440 /* Bump the LRU to try and avoid premature eviction whilst flipping */
3441 if (!i915_vma_is_active(vma))
3442 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
3443
Chris Wilson058d88c2016-08-15 10:49:06 +01003444 i915_vma_unpin(vma);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003445}
3446
Eric Anholte47c68e2008-11-14 13:35:19 -08003447/**
3448 * Moves a single object to the CPU read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003449 * @obj: object to act on
3450 * @write: requesting write or read-only access
Eric Anholte47c68e2008-11-14 13:35:19 -08003451 *
3452 * This function returns when the move is complete, including waiting on
3453 * flushes to occur.
3454 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003455int
Chris Wilson919926a2010-11-12 13:42:53 +00003456i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003457{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003458 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003459 int ret;
3460
Chris Wilsone95433c2016-10-28 13:58:27 +01003461 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003462
Chris Wilsone95433c2016-10-28 13:58:27 +01003463 ret = i915_gem_object_wait(obj,
3464 I915_WAIT_INTERRUPTIBLE |
3465 I915_WAIT_LOCKED |
3466 (write ? I915_WAIT_ALL : 0),
3467 MAX_SCHEDULE_TIMEOUT,
3468 NULL);
Chris Wilson88241782011-01-07 17:09:48 +00003469 if (ret)
3470 return ret;
3471
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003472 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3473 return 0;
3474
Eric Anholte47c68e2008-11-14 13:35:19 -08003475 i915_gem_object_flush_gtt_write_domain(obj);
3476
Chris Wilson05394f32010-11-08 19:18:58 +00003477 old_write_domain = obj->base.write_domain;
3478 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003479
Eric Anholte47c68e2008-11-14 13:35:19 -08003480 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003481 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003482 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003483
Chris Wilson05394f32010-11-08 19:18:58 +00003484 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003485 }
3486
3487 /* It should now be out of any other write domains, and we can update
3488 * the domain values for our changes.
3489 */
Chris Wilson40e62d52016-10-28 13:58:41 +01003490 GEM_BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003491
3492 /* If we're writing through the CPU, then the GPU read domains will
3493 * need to be invalidated at next use.
3494 */
3495 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003496 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3497 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003498 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003499
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003500 trace_i915_gem_object_change_domain(obj,
3501 old_read_domains,
3502 old_write_domain);
3503
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003504 return 0;
3505}
3506
Eric Anholt673a3942008-07-30 12:06:12 -07003507/* Throttle our rendering by waiting until the ring has completed our requests
3508 * emitted over 20 msec ago.
3509 *
Eric Anholtb9624422009-06-03 07:27:35 +00003510 * Note that if we were to use the current jiffies each time around the loop,
3511 * we wouldn't escape the function with any frames outstanding if the time to
3512 * render a frame was over 20ms.
3513 *
Eric Anholt673a3942008-07-30 12:06:12 -07003514 * This should get us reasonable parallelism between CPU and GPU but also
3515 * relatively low latency when blocking on a particular request to finish.
3516 */
3517static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003518i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003519{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003520 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003521 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01003522 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
John Harrison54fb2412014-11-24 18:49:27 +00003523 struct drm_i915_gem_request *request, *target = NULL;
Chris Wilsone95433c2016-10-28 13:58:27 +01003524 long ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003525
Chris Wilsonf4457ae2016-04-13 17:35:08 +01003526 /* ABI: return -EIO if already wedged */
3527 if (i915_terminally_wedged(&dev_priv->gpu_error))
3528 return -EIO;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003529
Chris Wilson1c255952010-09-26 11:03:27 +01003530 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003531 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003532 if (time_after_eq(request->emitted_jiffies, recent_enough))
3533 break;
3534
John Harrisonfcfa423c2015-05-29 17:44:12 +01003535 /*
3536 * Note that the request might not have been submitted yet.
3537 * In which case emitted_jiffies will be zero.
3538 */
3539 if (!request->emitted_jiffies)
3540 continue;
3541
John Harrison54fb2412014-11-24 18:49:27 +00003542 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00003543 }
John Harrisonff865882014-11-24 18:49:28 +00003544 if (target)
Chris Wilsone8a261e2016-07-20 13:31:49 +01003545 i915_gem_request_get(target);
Chris Wilson1c255952010-09-26 11:03:27 +01003546 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003547
John Harrison54fb2412014-11-24 18:49:27 +00003548 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003549 return 0;
3550
Chris Wilsone95433c2016-10-28 13:58:27 +01003551 ret = i915_wait_request(target,
3552 I915_WAIT_INTERRUPTIBLE,
3553 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone8a261e2016-07-20 13:31:49 +01003554 i915_gem_request_put(target);
John Harrisonff865882014-11-24 18:49:28 +00003555
Chris Wilsone95433c2016-10-28 13:58:27 +01003556 return ret < 0 ? ret : 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003557}
3558
Chris Wilson058d88c2016-08-15 10:49:06 +01003559struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003560i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
3561 const struct i915_ggtt_view *view,
Chris Wilson91b2db62016-08-04 16:32:23 +01003562 u64 size,
Chris Wilson2ffffd02016-08-04 16:32:22 +01003563 u64 alignment,
3564 u64 flags)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003565{
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003566 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
3567 struct i915_address_space *vm = &dev_priv->ggtt.base;
Chris Wilson59bfa122016-08-04 16:32:31 +01003568 struct i915_vma *vma;
3569 int ret;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003570
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003571 lockdep_assert_held(&obj->base.dev->struct_mutex);
3572
Chris Wilson058d88c2016-08-15 10:49:06 +01003573 vma = i915_gem_obj_lookup_or_create_vma(obj, vm, view);
Chris Wilson59bfa122016-08-04 16:32:31 +01003574 if (IS_ERR(vma))
Chris Wilson058d88c2016-08-15 10:49:06 +01003575 return vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01003576
3577 if (i915_vma_misplaced(vma, size, alignment, flags)) {
3578 if (flags & PIN_NONBLOCK &&
3579 (i915_vma_is_pinned(vma) || i915_vma_is_active(vma)))
Chris Wilson058d88c2016-08-15 10:49:06 +01003580 return ERR_PTR(-ENOSPC);
Chris Wilson59bfa122016-08-04 16:32:31 +01003581
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003582 if (flags & PIN_MAPPABLE) {
3583 u32 fence_size;
3584
3585 fence_size = i915_gem_get_ggtt_size(dev_priv, vma->size,
3586 i915_gem_object_get_tiling(obj));
3587 /* If the required space is larger than the available
3588 * aperture, we will not able to find a slot for the
3589 * object and unbinding the object now will be in
3590 * vain. Worse, doing so may cause us to ping-pong
3591 * the object in and out of the Global GTT and
3592 * waste a lot of cycles under the mutex.
3593 */
3594 if (fence_size > dev_priv->ggtt.mappable_end)
3595 return ERR_PTR(-E2BIG);
3596
3597 /* If NONBLOCK is set the caller is optimistically
3598 * trying to cache the full object within the mappable
3599 * aperture, and *must* have a fallback in place for
3600 * situations where we cannot bind the object. We
3601 * can be a little more lax here and use the fallback
3602 * more often to avoid costly migrations of ourselves
3603 * and other objects within the aperture.
3604 *
3605 * Half-the-aperture is used as a simple heuristic.
3606 * More interesting would to do search for a free
3607 * block prior to making the commitment to unbind.
3608 * That caters for the self-harm case, and with a
3609 * little more heuristics (e.g. NOFAULT, NOEVICT)
3610 * we could try to minimise harm to others.
3611 */
3612 if (flags & PIN_NONBLOCK &&
3613 fence_size > dev_priv->ggtt.mappable_end / 2)
3614 return ERR_PTR(-ENOSPC);
3615 }
3616
Chris Wilson59bfa122016-08-04 16:32:31 +01003617 WARN(i915_vma_is_pinned(vma),
3618 "bo is already pinned in ggtt with incorrect alignment:"
Chris Wilson05a20d02016-08-18 17:16:55 +01003619 " offset=%08x, req.alignment=%llx,"
3620 " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n",
3621 i915_ggtt_offset(vma), alignment,
Chris Wilson59bfa122016-08-04 16:32:31 +01003622 !!(flags & PIN_MAPPABLE),
Chris Wilson05a20d02016-08-18 17:16:55 +01003623 i915_vma_is_map_and_fenceable(vma));
Chris Wilson59bfa122016-08-04 16:32:31 +01003624 ret = i915_vma_unbind(vma);
3625 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +01003626 return ERR_PTR(ret);
Chris Wilson59bfa122016-08-04 16:32:31 +01003627 }
3628
Chris Wilson058d88c2016-08-15 10:49:06 +01003629 ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL);
3630 if (ret)
3631 return ERR_PTR(ret);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003632
Chris Wilson058d88c2016-08-15 10:49:06 +01003633 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003634}
3635
Chris Wilsonedf6b762016-08-09 09:23:33 +01003636static __always_inline unsigned int __busy_read_flag(unsigned int id)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003637{
3638 /* Note that we could alias engines in the execbuf API, but
3639 * that would be very unwise as it prevents userspace from
3640 * fine control over engine selection. Ahem.
3641 *
3642 * This should be something like EXEC_MAX_ENGINE instead of
3643 * I915_NUM_ENGINES.
3644 */
3645 BUILD_BUG_ON(I915_NUM_ENGINES > 16);
3646 return 0x10000 << id;
3647}
3648
3649static __always_inline unsigned int __busy_write_id(unsigned int id)
3650{
Chris Wilson70cb4722016-08-09 18:08:25 +01003651 /* The uABI guarantees an active writer is also amongst the read
3652 * engines. This would be true if we accessed the activity tracking
3653 * under the lock, but as we perform the lookup of the object and
3654 * its activity locklessly we can not guarantee that the last_write
3655 * being active implies that we have set the same engine flag from
3656 * last_read - hence we always set both read and write busy for
3657 * last_write.
3658 */
3659 return id | __busy_read_flag(id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003660}
3661
Chris Wilsonedf6b762016-08-09 09:23:33 +01003662static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003663__busy_set_if_active(const struct dma_fence *fence,
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003664 unsigned int (*flag)(unsigned int id))
3665{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003666 struct drm_i915_gem_request *rq;
Chris Wilson12555012016-08-16 09:50:40 +01003667
Chris Wilsond07f0e52016-10-28 13:58:44 +01003668 /* We have to check the current hw status of the fence as the uABI
3669 * guarantees forward progress. We could rely on the idle worker
3670 * to eventually flush us, but to minimise latency just ask the
3671 * hardware.
3672 *
3673 * Note we only report on the status of native fences.
3674 */
3675 if (!dma_fence_is_i915(fence))
Chris Wilson12555012016-08-16 09:50:40 +01003676 return 0;
3677
Chris Wilsond07f0e52016-10-28 13:58:44 +01003678 /* opencode to_request() in order to avoid const warnings */
3679 rq = container_of(fence, struct drm_i915_gem_request, fence);
3680 if (i915_gem_request_completed(rq))
3681 return 0;
3682
3683 return flag(rq->engine->exec_id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003684}
3685
Chris Wilsonedf6b762016-08-09 09:23:33 +01003686static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003687busy_check_reader(const struct dma_fence *fence)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003688{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003689 return __busy_set_if_active(fence, __busy_read_flag);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003690}
3691
Chris Wilsonedf6b762016-08-09 09:23:33 +01003692static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003693busy_check_writer(const struct dma_fence *fence)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003694{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003695 if (!fence)
3696 return 0;
3697
3698 return __busy_set_if_active(fence, __busy_write_id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003699}
3700
Eric Anholt673a3942008-07-30 12:06:12 -07003701int
Eric Anholt673a3942008-07-30 12:06:12 -07003702i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003703 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003704{
3705 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003706 struct drm_i915_gem_object *obj;
Chris Wilsond07f0e52016-10-28 13:58:44 +01003707 struct reservation_object_list *list;
3708 unsigned int seq;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003709 int err;
Eric Anholt673a3942008-07-30 12:06:12 -07003710
Chris Wilsond07f0e52016-10-28 13:58:44 +01003711 err = -ENOENT;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003712 rcu_read_lock();
3713 obj = i915_gem_object_lookup_rcu(file, args->handle);
Chris Wilsond07f0e52016-10-28 13:58:44 +01003714 if (!obj)
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003715 goto out;
Chris Wilsond07f0e52016-10-28 13:58:44 +01003716
3717 /* A discrepancy here is that we do not report the status of
3718 * non-i915 fences, i.e. even though we may report the object as idle,
3719 * a call to set-domain may still stall waiting for foreign rendering.
3720 * This also means that wait-ioctl may report an object as busy,
3721 * where busy-ioctl considers it idle.
3722 *
3723 * We trade the ability to warn of foreign fences to report on which
3724 * i915 engines are active for the object.
3725 *
3726 * Alternatively, we can trade that extra information on read/write
3727 * activity with
3728 * args->busy =
3729 * !reservation_object_test_signaled_rcu(obj->resv, true);
3730 * to report the overall busyness. This is what the wait-ioctl does.
3731 *
3732 */
3733retry:
3734 seq = raw_read_seqcount(&obj->resv->seq);
3735
3736 /* Translate the exclusive fence to the READ *and* WRITE engine */
3737 args->busy = busy_check_writer(rcu_dereference(obj->resv->fence_excl));
3738
3739 /* Translate shared fences to READ set of engines */
3740 list = rcu_dereference(obj->resv->fence);
3741 if (list) {
3742 unsigned int shared_count = list->shared_count, i;
3743
3744 for (i = 0; i < shared_count; ++i) {
3745 struct dma_fence *fence =
3746 rcu_dereference(list->shared[i]);
3747
3748 args->busy |= busy_check_reader(fence);
3749 }
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003750 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003751
Chris Wilsond07f0e52016-10-28 13:58:44 +01003752 if (args->busy && read_seqcount_retry(&obj->resv->seq, seq))
3753 goto retry;
Chris Wilson426960b2016-01-15 16:51:46 +00003754
Chris Wilsond07f0e52016-10-28 13:58:44 +01003755 err = 0;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003756out:
3757 rcu_read_unlock();
3758 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07003759}
3760
3761int
3762i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3763 struct drm_file *file_priv)
3764{
Akshay Joshi0206e352011-08-16 15:34:10 -04003765 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003766}
3767
Chris Wilson3ef94da2009-09-14 16:50:29 +01003768int
3769i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3770 struct drm_file *file_priv)
3771{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003772 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson3ef94da2009-09-14 16:50:29 +01003773 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003774 struct drm_i915_gem_object *obj;
Chris Wilson1233e2d2016-10-28 13:58:37 +01003775 int err;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003776
3777 switch (args->madv) {
3778 case I915_MADV_DONTNEED:
3779 case I915_MADV_WILLNEED:
3780 break;
3781 default:
3782 return -EINVAL;
3783 }
3784
Chris Wilson03ac0642016-07-20 13:31:51 +01003785 obj = i915_gem_object_lookup(file_priv, args->handle);
Chris Wilson1233e2d2016-10-28 13:58:37 +01003786 if (!obj)
3787 return -ENOENT;
3788
3789 err = mutex_lock_interruptible(&obj->mm.lock);
3790 if (err)
3791 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003792
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003793 if (obj->mm.pages &&
Chris Wilson3e510a82016-08-05 10:14:23 +01003794 i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01003795 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003796 if (obj->mm.madv == I915_MADV_WILLNEED) {
3797 GEM_BUG_ON(!obj->mm.quirked);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003798 __i915_gem_object_unpin_pages(obj);
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003799 obj->mm.quirked = false;
3800 }
3801 if (args->madv == I915_MADV_WILLNEED) {
Chris Wilson2c3a3f42016-11-04 10:30:01 +00003802 GEM_BUG_ON(obj->mm.quirked);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003803 __i915_gem_object_pin_pages(obj);
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003804 obj->mm.quirked = true;
3805 }
Daniel Vetter656bfa32014-11-20 09:26:30 +01003806 }
3807
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003808 if (obj->mm.madv != __I915_MADV_PURGED)
3809 obj->mm.madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003810
Chris Wilson6c085a72012-08-20 11:40:46 +02003811 /* if the object is no longer attached, discard its backing storage */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003812 if (obj->mm.madv == I915_MADV_DONTNEED && !obj->mm.pages)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003813 i915_gem_object_truncate(obj);
3814
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003815 args->retained = obj->mm.madv != __I915_MADV_PURGED;
Chris Wilson1233e2d2016-10-28 13:58:37 +01003816 mutex_unlock(&obj->mm.lock);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003817
Chris Wilson1233e2d2016-10-28 13:58:37 +01003818out:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003819 i915_gem_object_put(obj);
Chris Wilson1233e2d2016-10-28 13:58:37 +01003820 return err;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003821}
3822
Chris Wilson37e680a2012-06-07 15:38:42 +01003823void i915_gem_object_init(struct drm_i915_gem_object *obj,
3824 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003825{
Chris Wilson1233e2d2016-10-28 13:58:37 +01003826 mutex_init(&obj->mm.lock);
3827
Joonas Lahtinen56cea322016-11-02 12:16:04 +02003828 INIT_LIST_HEAD(&obj->global_link);
Chris Wilson275f0392016-10-24 13:42:14 +01003829 INIT_LIST_HEAD(&obj->userfault_link);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02003830 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07003831 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01003832 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003833
Chris Wilson37e680a2012-06-07 15:38:42 +01003834 obj->ops = ops;
3835
Chris Wilsond07f0e52016-10-28 13:58:44 +01003836 reservation_object_init(&obj->__builtin_resv);
3837 obj->resv = &obj->__builtin_resv;
3838
Chris Wilson50349242016-08-18 17:17:04 +01003839 obj->frontbuffer_ggtt_origin = ORIGIN_GTT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003840
3841 obj->mm.madv = I915_MADV_WILLNEED;
3842 INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN);
3843 mutex_init(&obj->mm.get_page.lock);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003844
Dave Gordonf19ec8c2016-07-04 11:34:37 +01003845 i915_gem_info_add_obj(to_i915(obj->base.dev), obj->base.size);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003846}
3847
Chris Wilson37e680a2012-06-07 15:38:42 +01003848static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Tvrtko Ursulin3599a912016-11-01 14:44:10 +00003849 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE |
3850 I915_GEM_OBJECT_IS_SHRINKABLE,
Chris Wilson37e680a2012-06-07 15:38:42 +01003851 .get_pages = i915_gem_object_get_pages_gtt,
3852 .put_pages = i915_gem_object_put_pages_gtt,
3853};
3854
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01003855/* Note we don't consider signbits :| */
3856#define overflows_type(x, T) \
3857 (sizeof(x) > sizeof(T) && (x) >> (sizeof(T) * BITS_PER_BYTE))
3858
3859struct drm_i915_gem_object *
3860i915_gem_object_create(struct drm_device *dev, u64 size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003861{
Ville Syrjäläa26e5232016-10-31 22:37:19 +02003862 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00003863 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003864 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01003865 gfp_t mask;
Chris Wilsonfe3db792016-04-25 13:32:13 +01003866 int ret;
Daniel Vetterc397b902010-04-09 19:05:07 +00003867
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01003868 /* There is a prevalence of the assumption that we fit the object's
3869 * page count inside a 32bit _signed_ variable. Let's document this and
3870 * catch if we ever need to fix it. In the meantime, if you do spot
3871 * such a local variable, please consider fixing!
3872 */
3873 if (WARN_ON(size >> PAGE_SHIFT > INT_MAX))
3874 return ERR_PTR(-E2BIG);
3875
3876 if (overflows_type(size, obj->base.size))
3877 return ERR_PTR(-E2BIG);
3878
Chris Wilson42dcedd2012-11-15 11:32:30 +00003879 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00003880 if (obj == NULL)
Chris Wilsonfe3db792016-04-25 13:32:13 +01003881 return ERR_PTR(-ENOMEM);
Daniel Vetterc397b902010-04-09 19:05:07 +00003882
Chris Wilsonfe3db792016-04-25 13:32:13 +01003883 ret = drm_gem_object_init(dev, &obj->base, size);
3884 if (ret)
3885 goto fail;
Daniel Vetterc397b902010-04-09 19:05:07 +00003886
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003887 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
Ville Syrjäläa26e5232016-10-31 22:37:19 +02003888 if (IS_CRESTLINE(dev_priv) || IS_BROADWATER(dev_priv)) {
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003889 /* 965gm cannot relocate objects above 4GiB. */
3890 mask &= ~__GFP_HIGHMEM;
3891 mask |= __GFP_DMA32;
3892 }
3893
Al Viro93c76a32015-12-04 23:45:44 -05003894 mapping = obj->base.filp->f_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003895 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07003896
Chris Wilson37e680a2012-06-07 15:38:42 +01003897 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01003898
Daniel Vetterc397b902010-04-09 19:05:07 +00003899 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3900 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3901
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00003902 if (HAS_LLC(dev_priv)) {
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003903 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003904 * cache) for about a 10% performance improvement
3905 * compared to uncached. Graphics requests other than
3906 * display scanout are coherent with the CPU in
3907 * accessing this cache. This means in this mode we
3908 * don't need to clflush on the CPU side, and on the
3909 * GPU side we only need to flush internal caches to
3910 * get data visible to the CPU.
3911 *
3912 * However, we maintain the display planes as UC, and so
3913 * need to rebind when first used as such.
3914 */
3915 obj->cache_level = I915_CACHE_LLC;
3916 } else
3917 obj->cache_level = I915_CACHE_NONE;
3918
Daniel Vetterd861e332013-07-24 23:25:03 +02003919 trace_i915_gem_object_create(obj);
3920
Chris Wilson05394f32010-11-08 19:18:58 +00003921 return obj;
Chris Wilsonfe3db792016-04-25 13:32:13 +01003922
3923fail:
3924 i915_gem_object_free(obj);
Chris Wilsonfe3db792016-04-25 13:32:13 +01003925 return ERR_PTR(ret);
Daniel Vetterac52bc52010-04-09 19:05:06 +00003926}
3927
Chris Wilson340fbd82014-05-22 09:16:52 +01003928static bool discard_backing_storage(struct drm_i915_gem_object *obj)
3929{
3930 /* If we are the last user of the backing storage (be it shmemfs
3931 * pages or stolen etc), we know that the pages are going to be
3932 * immediately released. In this case, we can then skip copying
3933 * back the contents from the GPU.
3934 */
3935
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003936 if (obj->mm.madv != I915_MADV_WILLNEED)
Chris Wilson340fbd82014-05-22 09:16:52 +01003937 return false;
3938
3939 if (obj->base.filp == NULL)
3940 return true;
3941
3942 /* At first glance, this looks racy, but then again so would be
3943 * userspace racing mmap against close. However, the first external
3944 * reference to the filp can only be obtained through the
3945 * i915_gem_mmap_ioctl() which safeguards us against the user
3946 * acquiring such a reference whilst we are in the middle of
3947 * freeing the object.
3948 */
3949 return atomic_long_read(&obj->base.filp->f_count) == 1;
3950}
3951
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003952static void __i915_gem_free_objects(struct drm_i915_private *i915,
3953 struct llist_node *freed)
Chris Wilsonbe726152010-07-23 23:18:50 +01003954{
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003955 struct drm_i915_gem_object *obj, *on;
Chris Wilsonbe726152010-07-23 23:18:50 +01003956
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003957 mutex_lock(&i915->drm.struct_mutex);
3958 intel_runtime_pm_get(i915);
3959 llist_for_each_entry(obj, freed, freed) {
3960 struct i915_vma *vma, *vn;
Paulo Zanonif65c9162013-11-27 18:20:34 -02003961
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003962 trace_i915_gem_object_destroy(obj);
3963
3964 GEM_BUG_ON(i915_gem_object_is_active(obj));
3965 list_for_each_entry_safe(vma, vn,
3966 &obj->vma_list, obj_link) {
3967 GEM_BUG_ON(!i915_vma_is_ggtt(vma));
3968 GEM_BUG_ON(i915_vma_is_active(vma));
3969 vma->flags &= ~I915_VMA_PIN_MASK;
3970 i915_vma_close(vma);
3971 }
Chris Wilsondb6c2b42016-11-01 11:54:00 +00003972 GEM_BUG_ON(!list_empty(&obj->vma_list));
3973 GEM_BUG_ON(!RB_EMPTY_ROOT(&obj->vma_tree));
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003974
Joonas Lahtinen56cea322016-11-02 12:16:04 +02003975 list_del(&obj->global_link);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003976 }
3977 intel_runtime_pm_put(i915);
3978 mutex_unlock(&i915->drm.struct_mutex);
3979
3980 llist_for_each_entry_safe(obj, on, freed, freed) {
3981 GEM_BUG_ON(obj->bind_count);
3982 GEM_BUG_ON(atomic_read(&obj->frontbuffer_bits));
3983
3984 if (obj->ops->release)
3985 obj->ops->release(obj);
3986
3987 if (WARN_ON(i915_gem_object_has_pinned_pages(obj)))
3988 atomic_set(&obj->mm.pages_pin_count, 0);
Chris Wilson548625e2016-11-01 12:11:34 +00003989 __i915_gem_object_put_pages(obj, I915_MM_NORMAL);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003990 GEM_BUG_ON(obj->mm.pages);
3991
3992 if (obj->base.import_attach)
3993 drm_prime_gem_destroy(&obj->base, NULL);
3994
Chris Wilsond07f0e52016-10-28 13:58:44 +01003995 reservation_object_fini(&obj->__builtin_resv);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003996 drm_gem_object_release(&obj->base);
3997 i915_gem_info_remove_obj(i915, obj->base.size);
3998
3999 kfree(obj->bit_17);
4000 i915_gem_object_free(obj);
4001 }
4002}
4003
4004static void i915_gem_flush_free_objects(struct drm_i915_private *i915)
4005{
4006 struct llist_node *freed;
4007
4008 freed = llist_del_all(&i915->mm.free_list);
4009 if (unlikely(freed))
4010 __i915_gem_free_objects(i915, freed);
4011}
4012
4013static void __i915_gem_free_work(struct work_struct *work)
4014{
4015 struct drm_i915_private *i915 =
4016 container_of(work, struct drm_i915_private, mm.free_work);
4017 struct llist_node *freed;
Chris Wilson26e12f82011-03-20 11:20:19 +00004018
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004019 /* All file-owned VMA should have been released by this point through
4020 * i915_gem_close_object(), or earlier by i915_gem_context_close().
4021 * However, the object may also be bound into the global GTT (e.g.
4022 * older GPUs without per-process support, or for direct access through
4023 * the GTT either for the user or for scanout). Those VMA still need to
4024 * unbound now.
4025 */
Chris Wilson1488fc02012-04-24 15:47:31 +01004026
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004027 while ((freed = llist_del_all(&i915->mm.free_list)))
4028 __i915_gem_free_objects(i915, freed);
4029}
4030
4031static void __i915_gem_free_object_rcu(struct rcu_head *head)
4032{
4033 struct drm_i915_gem_object *obj =
4034 container_of(head, typeof(*obj), rcu);
4035 struct drm_i915_private *i915 = to_i915(obj->base.dev);
4036
4037 /* We can't simply use call_rcu() from i915_gem_free_object()
4038 * as we need to block whilst unbinding, and the call_rcu
4039 * task may be called from softirq context. So we take a
4040 * detour through a worker.
4041 */
4042 if (llist_add(&obj->freed, &i915->mm.free_list))
4043 schedule_work(&i915->mm.free_work);
4044}
4045
4046void i915_gem_free_object(struct drm_gem_object *gem_obj)
4047{
4048 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
4049
Chris Wilsonbc0629a2016-11-01 10:03:17 +00004050 if (obj->mm.quirked)
4051 __i915_gem_object_unpin_pages(obj);
4052
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004053 if (discard_backing_storage(obj))
4054 obj->mm.madv = I915_MADV_DONTNEED;
Daniel Vettera071fa02014-06-18 23:28:09 +02004055
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004056 /* Before we free the object, make sure any pure RCU-only
4057 * read-side critical sections are complete, e.g.
4058 * i915_gem_busy_ioctl(). For the corresponding synchronized
4059 * lookup see i915_gem_object_lookup_rcu().
4060 */
4061 call_rcu(&obj->rcu, __i915_gem_free_object_rcu);
Chris Wilsonbe726152010-07-23 23:18:50 +01004062}
4063
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01004064void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj)
4065{
4066 lockdep_assert_held(&obj->base.dev->struct_mutex);
4067
4068 GEM_BUG_ON(i915_gem_object_has_active_reference(obj));
4069 if (i915_gem_object_is_active(obj))
4070 i915_gem_object_set_active_reference(obj);
4071 else
4072 i915_gem_object_put(obj);
4073}
4074
Chris Wilson3033aca2016-10-28 13:58:47 +01004075static void assert_kernel_context_is_current(struct drm_i915_private *dev_priv)
4076{
4077 struct intel_engine_cs *engine;
4078 enum intel_engine_id id;
4079
4080 for_each_engine(engine, dev_priv, id)
4081 GEM_BUG_ON(engine->last_context != dev_priv->kernel_context);
4082}
4083
Chris Wilsondcff85c2016-08-05 10:14:11 +01004084int i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004085{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004086 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsondcff85c2016-08-05 10:14:11 +01004087 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004088
Chris Wilson54b4f682016-07-21 21:16:19 +01004089 intel_suspend_gt_powersave(dev_priv);
4090
Chris Wilson45c5f202013-10-16 11:50:01 +01004091 mutex_lock(&dev->struct_mutex);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004092
4093 /* We have to flush all the executing contexts to main memory so
4094 * that they can saved in the hibernation image. To ensure the last
4095 * context image is coherent, we have to switch away from it. That
4096 * leaves the dev_priv->kernel_context still active when
4097 * we actually suspend, and its image in memory may not match the GPU
4098 * state. Fortunately, the kernel_context is disposable and we do
4099 * not rely on its state.
4100 */
4101 ret = i915_gem_switch_to_kernel_context(dev_priv);
4102 if (ret)
4103 goto err;
4104
Chris Wilson22dd3bb2016-09-09 14:11:50 +01004105 ret = i915_gem_wait_for_idle(dev_priv,
4106 I915_WAIT_INTERRUPTIBLE |
4107 I915_WAIT_LOCKED);
Chris Wilsonf7403342013-09-13 23:57:04 +01004108 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004109 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004110
Chris Wilsonc0336662016-05-06 15:40:21 +01004111 i915_gem_retire_requests(dev_priv);
Chris Wilson28176ef2016-10-28 13:58:56 +01004112 GEM_BUG_ON(dev_priv->gt.active_requests);
Eric Anholt673a3942008-07-30 12:06:12 -07004113
Chris Wilson3033aca2016-10-28 13:58:47 +01004114 assert_kernel_context_is_current(dev_priv);
Chris Wilsonb2e862d2016-04-28 09:56:41 +01004115 i915_gem_context_lost(dev_priv);
Chris Wilson45c5f202013-10-16 11:50:01 +01004116 mutex_unlock(&dev->struct_mutex);
4117
Chris Wilson737b1502015-01-26 18:03:03 +02004118 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson67d97da2016-07-04 08:08:31 +01004119 cancel_delayed_work_sync(&dev_priv->gt.retire_work);
4120 flush_delayed_work(&dev_priv->gt.idle_work);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004121 flush_work(&dev_priv->mm.free_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004122
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004123 /* Assert that we sucessfully flushed all the work and
4124 * reset the GPU back to its idle, low power state.
4125 */
Chris Wilson67d97da2016-07-04 08:08:31 +01004126 WARN_ON(dev_priv->gt.awake);
Imre Deak31ab49a2016-11-07 11:20:05 +02004127 WARN_ON(!intel_execlists_idle(dev_priv));
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004128
Imre Deak1c777c52016-10-12 17:46:37 +03004129 /*
4130 * Neither the BIOS, ourselves or any other kernel
4131 * expects the system to be in execlists mode on startup,
4132 * so we need to reset the GPU back to legacy mode. And the only
4133 * known way to disable logical contexts is through a GPU reset.
4134 *
4135 * So in order to leave the system in a known default configuration,
4136 * always reset the GPU upon unload and suspend. Afterwards we then
4137 * clean up the GEM state tracking, flushing off the requests and
4138 * leaving the system in a known idle state.
4139 *
4140 * Note that is of the upmost importance that the GPU is idle and
4141 * all stray writes are flushed *before* we dismantle the backing
4142 * storage for the pinned objects.
4143 *
4144 * However, since we are uncertain that resetting the GPU on older
4145 * machines is a good idea, we don't - just in case it leaves the
4146 * machine in an unusable condition.
4147 */
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00004148 if (HAS_HW_CONTEXTS(dev_priv)) {
Imre Deak1c777c52016-10-12 17:46:37 +03004149 int reset = intel_gpu_reset(dev_priv, ALL_ENGINES);
4150 WARN_ON(reset && reset != -ENODEV);
4151 }
4152
Eric Anholt673a3942008-07-30 12:06:12 -07004153 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004154
4155err:
4156 mutex_unlock(&dev->struct_mutex);
4157 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004158}
4159
Chris Wilson5ab57c72016-07-15 14:56:20 +01004160void i915_gem_resume(struct drm_device *dev)
4161{
4162 struct drm_i915_private *dev_priv = to_i915(dev);
4163
Imre Deak31ab49a2016-11-07 11:20:05 +02004164 WARN_ON(dev_priv->gt.awake);
4165
Chris Wilson5ab57c72016-07-15 14:56:20 +01004166 mutex_lock(&dev->struct_mutex);
4167 i915_gem_restore_gtt_mappings(dev);
4168
4169 /* As we didn't flush the kernel context before suspend, we cannot
4170 * guarantee that the context image is complete. So let's just reset
4171 * it and start again.
4172 */
Chris Wilson821ed7d2016-09-09 14:11:53 +01004173 dev_priv->gt.resume(dev_priv);
Chris Wilson5ab57c72016-07-15 14:56:20 +01004174
4175 mutex_unlock(&dev->struct_mutex);
4176}
4177
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004178void i915_gem_init_swizzling(struct drm_device *dev)
4179{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004180 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004181
Daniel Vetter11782b02012-01-31 16:47:55 +01004182 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004183 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4184 return;
4185
4186 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4187 DISP_TILE_SURFACE_SWIZZLING);
4188
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004189 if (IS_GEN5(dev_priv))
Daniel Vetter11782b02012-01-31 16:47:55 +01004190 return;
4191
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004192 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004193 if (IS_GEN6(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004194 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004195 else if (IS_GEN7(dev_priv))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004196 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004197 else if (IS_GEN8(dev_priv))
Ben Widawsky31a53362013-11-02 21:07:04 -07004198 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004199 else
4200 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004201}
Daniel Vettere21af882012-02-09 20:53:27 +01004202
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004203static void init_unused_ring(struct drm_i915_private *dev_priv, u32 base)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004204{
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004205 I915_WRITE(RING_CTL(base), 0);
4206 I915_WRITE(RING_HEAD(base), 0);
4207 I915_WRITE(RING_TAIL(base), 0);
4208 I915_WRITE(RING_START(base), 0);
4209}
4210
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004211static void init_unused_rings(struct drm_i915_private *dev_priv)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004212{
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004213 if (IS_I830(dev_priv)) {
4214 init_unused_ring(dev_priv, PRB1_BASE);
4215 init_unused_ring(dev_priv, SRB0_BASE);
4216 init_unused_ring(dev_priv, SRB1_BASE);
4217 init_unused_ring(dev_priv, SRB2_BASE);
4218 init_unused_ring(dev_priv, SRB3_BASE);
4219 } else if (IS_GEN2(dev_priv)) {
4220 init_unused_ring(dev_priv, SRB0_BASE);
4221 init_unused_ring(dev_priv, SRB1_BASE);
4222 } else if (IS_GEN3(dev_priv)) {
4223 init_unused_ring(dev_priv, PRB1_BASE);
4224 init_unused_ring(dev_priv, PRB2_BASE);
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004225 }
4226}
4227
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004228int
4229i915_gem_init_hw(struct drm_device *dev)
4230{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004231 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004232 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304233 enum intel_engine_id id;
Chris Wilsond200cda2016-04-28 09:56:44 +01004234 int ret;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004235
Chris Wilsonde867c22016-10-25 13:16:02 +01004236 dev_priv->gt.last_init_time = ktime_get();
4237
Chris Wilson5e4f5182015-02-13 14:35:59 +00004238 /* Double layer security blanket, see i915_gem_init() */
4239 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4240
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00004241 if (HAS_EDRAM(dev_priv) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004242 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004243
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01004244 if (IS_HASWELL(dev_priv))
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004245 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ?
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004246 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004247
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01004248 if (HAS_PCH_NOP(dev_priv)) {
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004249 if (IS_IVYBRIDGE(dev_priv)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004250 u32 temp = I915_READ(GEN7_MSG_CTL);
4251 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4252 I915_WRITE(GEN7_MSG_CTL, temp);
4253 } else if (INTEL_INFO(dev)->gen >= 7) {
4254 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4255 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4256 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4257 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004258 }
4259
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004260 i915_gem_init_swizzling(dev);
4261
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004262 /*
4263 * At least 830 can leave some of the unused rings
4264 * "active" (ie. head != tail) after resume which
4265 * will prevent c3 entry. Makes sure all unused rings
4266 * are totally idle.
4267 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004268 init_unused_rings(dev_priv);
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004269
Dave Gordoned54c1a2016-01-19 19:02:54 +00004270 BUG_ON(!dev_priv->kernel_context);
John Harrison90638cc2015-05-29 17:43:37 +01004271
John Harrison4ad2fd82015-06-18 13:11:20 +01004272 ret = i915_ppgtt_init_hw(dev);
4273 if (ret) {
4274 DRM_ERROR("PPGTT enable HW failed %d\n", ret);
4275 goto out;
4276 }
4277
4278 /* Need to do basic initialisation of all rings first: */
Akash Goel3b3f1652016-10-13 22:44:48 +05304279 for_each_engine(engine, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004280 ret = engine->init_hw(engine);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004281 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004282 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004283 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004284
Peter Antoine0ccdacf2016-04-13 15:03:25 +01004285 intel_mocs_init_l3cc_table(dev);
4286
Alex Dai33a732f2015-08-12 15:43:36 +01004287 /* We can't enable contexts until all firmware is loaded */
Dave Gordone556f7c2016-06-07 09:14:49 +01004288 ret = intel_guc_setup(dev);
4289 if (ret)
4290 goto out;
Alex Dai33a732f2015-08-12 15:43:36 +01004291
Chris Wilson5e4f5182015-02-13 14:35:59 +00004292out:
4293 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004294 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004295}
4296
Chris Wilson39df9192016-07-20 13:31:57 +01004297bool intel_sanitize_semaphores(struct drm_i915_private *dev_priv, int value)
4298{
4299 if (INTEL_INFO(dev_priv)->gen < 6)
4300 return false;
4301
4302 /* TODO: make semaphores and Execlists play nicely together */
4303 if (i915.enable_execlists)
4304 return false;
4305
4306 if (value >= 0)
4307 return value;
4308
4309#ifdef CONFIG_INTEL_IOMMU
4310 /* Enable semaphores on SNB when IO remapping is off */
4311 if (INTEL_INFO(dev_priv)->gen == 6 && intel_iommu_gfx_mapped)
4312 return false;
4313#endif
4314
4315 return true;
4316}
4317
Chris Wilson1070a422012-04-24 15:47:41 +01004318int i915_gem_init(struct drm_device *dev)
4319{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004320 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson1070a422012-04-24 15:47:41 +01004321 int ret;
4322
Chris Wilson1070a422012-04-24 15:47:41 +01004323 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004324
Oscar Mateoa83014d2014-07-24 17:04:21 +01004325 if (!i915.enable_execlists) {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004326 dev_priv->gt.resume = intel_legacy_submission_resume;
Chris Wilson7e37f882016-08-02 22:50:21 +01004327 dev_priv->gt.cleanup_engine = intel_engine_cleanup;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004328 } else {
Chris Wilson821ed7d2016-09-09 14:11:53 +01004329 dev_priv->gt.resume = intel_lr_context_resume;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004330 dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004331 }
4332
Chris Wilson5e4f5182015-02-13 14:35:59 +00004333 /* This is just a security blanket to placate dragons.
4334 * On some systems, we very sporadically observe that the first TLBs
4335 * used by the CS may be stale, despite us poking the TLB reset. If
4336 * we hold the forcewake during initialisation these problems
4337 * just magically go away.
4338 */
4339 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4340
Chris Wilson72778cb2016-05-19 16:17:16 +01004341 i915_gem_init_userptr(dev_priv);
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01004342
4343 ret = i915_gem_init_ggtt(dev_priv);
4344 if (ret)
4345 goto out_unlock;
Jesse Barnesd62b4892013-03-08 10:45:53 -08004346
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004347 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004348 if (ret)
4349 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004350
Tvrtko Ursulin8b3e2d32016-07-13 16:03:37 +01004351 ret = intel_engines_init(dev);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004352 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004353 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004354
4355 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004356 if (ret == -EIO) {
Chris Wilson7e21d642016-07-27 09:07:29 +01004357 /* Allow engine initialisation to fail by marking the GPU as
Chris Wilson60990322014-04-09 09:19:42 +01004358 * wedged. But we only want to do this where the GPU is angry,
4359 * for all other failure, such as an allocation failure, bail.
4360 */
4361 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
Chris Wilson821ed7d2016-09-09 14:11:53 +01004362 i915_gem_set_wedged(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004363 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004364 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004365
4366out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00004367 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01004368 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004369
Chris Wilson60990322014-04-09 09:19:42 +01004370 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004371}
4372
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004373void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004374i915_gem_cleanup_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004375{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004376 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004377 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05304378 enum intel_engine_id id;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004379
Akash Goel3b3f1652016-10-13 22:44:48 +05304380 for_each_engine(engine, dev_priv, id)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004381 dev_priv->gt.cleanup_engine(engine);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004382}
4383
Eric Anholt673a3942008-07-30 12:06:12 -07004384void
Imre Deak40ae4e12016-03-16 14:54:03 +02004385i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
4386{
Chris Wilson91c8a322016-07-05 10:40:23 +01004387 struct drm_device *dev = &dev_priv->drm;
Chris Wilson49ef5292016-08-18 17:17:00 +01004388 int i;
Imre Deak40ae4e12016-03-16 14:54:03 +02004389
4390 if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) &&
4391 !IS_CHERRYVIEW(dev_priv))
4392 dev_priv->num_fence_regs = 32;
4393 else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) ||
4394 IS_I945GM(dev_priv) || IS_G33(dev_priv))
4395 dev_priv->num_fence_regs = 16;
4396 else
4397 dev_priv->num_fence_regs = 8;
4398
Chris Wilsonc0336662016-05-06 15:40:21 +01004399 if (intel_vgpu_active(dev_priv))
Imre Deak40ae4e12016-03-16 14:54:03 +02004400 dev_priv->num_fence_regs =
4401 I915_READ(vgtif_reg(avail_rs.fence_num));
4402
4403 /* Initialize fence registers to zero */
Chris Wilson49ef5292016-08-18 17:17:00 +01004404 for (i = 0; i < dev_priv->num_fence_regs; i++) {
4405 struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i];
4406
4407 fence->i915 = dev_priv;
4408 fence->id = i;
4409 list_add_tail(&fence->link, &dev_priv->mm.fence_list);
4410 }
Imre Deak40ae4e12016-03-16 14:54:03 +02004411 i915_gem_restore_fences(dev);
4412
4413 i915_gem_detect_bit_6_swizzle(dev);
4414}
4415
Chris Wilson73cb9702016-10-28 13:58:46 +01004416int
Imre Deakd64aa092016-01-19 15:26:29 +02004417i915_gem_load_init(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004418{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004419 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004420 int err = -ENOMEM;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004421
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004422 dev_priv->objects = KMEM_CACHE(drm_i915_gem_object, SLAB_HWCACHE_ALIGN);
4423 if (!dev_priv->objects)
Chris Wilson73cb9702016-10-28 13:58:46 +01004424 goto err_out;
Chris Wilson73cb9702016-10-28 13:58:46 +01004425
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004426 dev_priv->vmas = KMEM_CACHE(i915_vma, SLAB_HWCACHE_ALIGN);
4427 if (!dev_priv->vmas)
Chris Wilson73cb9702016-10-28 13:58:46 +01004428 goto err_objects;
Chris Wilson73cb9702016-10-28 13:58:46 +01004429
Tvrtko Ursulina9335682016-11-02 15:14:59 +00004430 dev_priv->requests = KMEM_CACHE(drm_i915_gem_request,
4431 SLAB_HWCACHE_ALIGN |
4432 SLAB_RECLAIM_ACCOUNT |
4433 SLAB_DESTROY_BY_RCU);
4434 if (!dev_priv->requests)
Chris Wilson73cb9702016-10-28 13:58:46 +01004435 goto err_vmas;
Chris Wilson73cb9702016-10-28 13:58:46 +01004436
Chris Wilson52e54202016-11-14 20:41:02 +00004437 dev_priv->dependencies = KMEM_CACHE(i915_dependency,
4438 SLAB_HWCACHE_ALIGN |
4439 SLAB_RECLAIM_ACCOUNT);
4440 if (!dev_priv->dependencies)
4441 goto err_requests;
4442
Chris Wilson73cb9702016-10-28 13:58:46 +01004443 mutex_lock(&dev_priv->drm.struct_mutex);
4444 INIT_LIST_HEAD(&dev_priv->gt.timelines);
Chris Wilsonbb894852016-11-14 20:40:57 +00004445 err = i915_gem_timeline_init__global(dev_priv);
Chris Wilson73cb9702016-10-28 13:58:46 +01004446 mutex_unlock(&dev_priv->drm.struct_mutex);
4447 if (err)
Chris Wilson52e54202016-11-14 20:41:02 +00004448 goto err_dependencies;
Eric Anholt673a3942008-07-30 12:06:12 -07004449
Ben Widawskya33afea2013-09-17 21:12:45 -07004450 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004451 INIT_WORK(&dev_priv->mm.free_work, __i915_gem_free_work);
4452 init_llist_head(&dev_priv->mm.free_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004453 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4454 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004455 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson275f0392016-10-24 13:42:14 +01004456 INIT_LIST_HEAD(&dev_priv->mm.userfault_list);
Chris Wilson67d97da2016-07-04 08:08:31 +01004457 INIT_DELAYED_WORK(&dev_priv->gt.retire_work,
Eric Anholt673a3942008-07-30 12:06:12 -07004458 i915_gem_retire_work_handler);
Chris Wilson67d97da2016-07-04 08:08:31 +01004459 INIT_DELAYED_WORK(&dev_priv->gt.idle_work,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004460 i915_gem_idle_work_handler);
Chris Wilson1f15b762016-07-01 17:23:14 +01004461 init_waitqueue_head(&dev_priv->gpu_error.wait_queue);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004462 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004463
Chris Wilson72bfa192010-12-19 11:42:05 +00004464 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4465
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004466 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004467
Chris Wilsonce453d82011-02-21 14:43:56 +00004468 dev_priv->mm.interruptible = true;
4469
Joonas Lahtinen6f633402016-09-01 14:58:21 +03004470 atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0);
4471
Chris Wilsonb5add952016-08-04 16:32:36 +01004472 spin_lock_init(&dev_priv->fb_tracking.lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01004473
4474 return 0;
4475
Chris Wilson52e54202016-11-14 20:41:02 +00004476err_dependencies:
4477 kmem_cache_destroy(dev_priv->dependencies);
Chris Wilson73cb9702016-10-28 13:58:46 +01004478err_requests:
4479 kmem_cache_destroy(dev_priv->requests);
4480err_vmas:
4481 kmem_cache_destroy(dev_priv->vmas);
4482err_objects:
4483 kmem_cache_destroy(dev_priv->objects);
4484err_out:
4485 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07004486}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004487
Imre Deakd64aa092016-01-19 15:26:29 +02004488void i915_gem_load_cleanup(struct drm_device *dev)
4489{
4490 struct drm_i915_private *dev_priv = to_i915(dev);
4491
Chris Wilson7d5d59e2016-11-01 08:48:41 +00004492 WARN_ON(!llist_empty(&dev_priv->mm.free_list));
4493
Chris Wilson52e54202016-11-14 20:41:02 +00004494 kmem_cache_destroy(dev_priv->dependencies);
Imre Deakd64aa092016-01-19 15:26:29 +02004495 kmem_cache_destroy(dev_priv->requests);
4496 kmem_cache_destroy(dev_priv->vmas);
4497 kmem_cache_destroy(dev_priv->objects);
Chris Wilson0eafec62016-08-04 16:32:41 +01004498
4499 /* And ensure that our DESTROY_BY_RCU slabs are truly destroyed */
4500 rcu_barrier();
Imre Deakd64aa092016-01-19 15:26:29 +02004501}
4502
Chris Wilson6a800ea2016-09-21 14:51:07 +01004503int i915_gem_freeze(struct drm_i915_private *dev_priv)
4504{
4505 intel_runtime_pm_get(dev_priv);
4506
4507 mutex_lock(&dev_priv->drm.struct_mutex);
4508 i915_gem_shrink_all(dev_priv);
4509 mutex_unlock(&dev_priv->drm.struct_mutex);
4510
4511 intel_runtime_pm_put(dev_priv);
4512
4513 return 0;
4514}
4515
Chris Wilson461fb992016-05-14 07:26:33 +01004516int i915_gem_freeze_late(struct drm_i915_private *dev_priv)
4517{
4518 struct drm_i915_gem_object *obj;
Chris Wilson7aab2d52016-09-09 20:02:18 +01004519 struct list_head *phases[] = {
4520 &dev_priv->mm.unbound_list,
4521 &dev_priv->mm.bound_list,
4522 NULL
4523 }, **p;
Chris Wilson461fb992016-05-14 07:26:33 +01004524
4525 /* Called just before we write the hibernation image.
4526 *
4527 * We need to update the domain tracking to reflect that the CPU
4528 * will be accessing all the pages to create and restore from the
4529 * hibernation, and so upon restoration those pages will be in the
4530 * CPU domain.
4531 *
4532 * To make sure the hibernation image contains the latest state,
4533 * we update that state just before writing out the image.
Chris Wilson7aab2d52016-09-09 20:02:18 +01004534 *
4535 * To try and reduce the hibernation image, we manually shrink
4536 * the objects as well.
Chris Wilson461fb992016-05-14 07:26:33 +01004537 */
4538
Chris Wilson6a800ea2016-09-21 14:51:07 +01004539 mutex_lock(&dev_priv->drm.struct_mutex);
4540 i915_gem_shrink(dev_priv, -1UL, I915_SHRINK_UNBOUND);
Chris Wilson461fb992016-05-14 07:26:33 +01004541
Chris Wilson7aab2d52016-09-09 20:02:18 +01004542 for (p = phases; *p; p++) {
Joonas Lahtinen56cea322016-11-02 12:16:04 +02004543 list_for_each_entry(obj, *p, global_link) {
Chris Wilson7aab2d52016-09-09 20:02:18 +01004544 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4545 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4546 }
Chris Wilson461fb992016-05-14 07:26:33 +01004547 }
Chris Wilson6a800ea2016-09-21 14:51:07 +01004548 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson461fb992016-05-14 07:26:33 +01004549
4550 return 0;
4551}
4552
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004553void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004554{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004555 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004556 struct drm_i915_gem_request *request;
Eric Anholtb9624422009-06-03 07:27:35 +00004557
4558 /* Clean up our request list when the client is going away, so that
4559 * later retire_requests won't dereference our soon-to-be-gone
4560 * file_priv.
4561 */
Chris Wilson1c255952010-09-26 11:03:27 +01004562 spin_lock(&file_priv->mm.lock);
Chris Wilson15f7bbc2016-07-26 12:01:52 +01004563 list_for_each_entry(request, &file_priv->mm.request_list, client_list)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004564 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01004565 spin_unlock(&file_priv->mm.lock);
Chris Wilson31169712009-09-14 16:50:28 +01004566
Chris Wilson2e1b8732015-04-27 13:41:22 +01004567 if (!list_empty(&file_priv->rps.link)) {
Chris Wilson8d3afd72015-05-21 21:01:47 +01004568 spin_lock(&to_i915(dev)->rps.client_lock);
Chris Wilson2e1b8732015-04-27 13:41:22 +01004569 list_del(&file_priv->rps.link);
Chris Wilson8d3afd72015-05-21 21:01:47 +01004570 spin_unlock(&to_i915(dev)->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01004571 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004572}
4573
4574int i915_gem_open(struct drm_device *dev, struct drm_file *file)
4575{
4576 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08004577 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004578
4579 DRM_DEBUG_DRIVER("\n");
4580
4581 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
4582 if (!file_priv)
4583 return -ENOMEM;
4584
4585 file->driver_priv = file_priv;
Dave Gordonf19ec8c2016-07-04 11:34:37 +01004586 file_priv->dev_priv = to_i915(dev);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02004587 file_priv->file = file;
Chris Wilson2e1b8732015-04-27 13:41:22 +01004588 INIT_LIST_HEAD(&file_priv->rps.link);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004589
4590 spin_lock_init(&file_priv->mm.lock);
4591 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004592
Chris Wilsonc80ff162016-07-27 09:07:27 +01004593 file_priv->bsd_engine = -1;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00004594
Ben Widawskye422b882013-12-06 14:10:58 -08004595 ret = i915_gem_context_open(dev, file);
4596 if (ret)
4597 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004598
Ben Widawskye422b882013-12-06 14:10:58 -08004599 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004600}
4601
Daniel Vetterb680c372014-09-19 18:27:27 +02004602/**
4603 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07004604 * @old: current GEM buffer for the frontbuffer slots
4605 * @new: new GEM buffer for the frontbuffer slots
4606 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02004607 *
4608 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
4609 * from @old and setting them in @new. Both @old and @new can be NULL.
4610 */
Daniel Vettera071fa02014-06-18 23:28:09 +02004611void i915_gem_track_fb(struct drm_i915_gem_object *old,
4612 struct drm_i915_gem_object *new,
4613 unsigned frontbuffer_bits)
4614{
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004615 /* Control of individual bits within the mask are guarded by
4616 * the owning plane->mutex, i.e. we can never see concurrent
4617 * manipulation of individual bits. But since the bitfield as a whole
4618 * is updated using RMW, we need to use atomics in order to update
4619 * the bits.
4620 */
4621 BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES >
4622 sizeof(atomic_t) * BITS_PER_BYTE);
4623
Daniel Vettera071fa02014-06-18 23:28:09 +02004624 if (old) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004625 WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits));
4626 atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02004627 }
4628
4629 if (new) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004630 WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits);
4631 atomic_or(frontbuffer_bits, &new->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02004632 }
4633}
4634
Dave Gordonea702992015-07-09 19:29:02 +01004635/* Allocate a new GEM object and fill it with the supplied data */
4636struct drm_i915_gem_object *
4637i915_gem_object_create_from_data(struct drm_device *dev,
4638 const void *data, size_t size)
4639{
4640 struct drm_i915_gem_object *obj;
4641 struct sg_table *sg;
4642 size_t bytes;
4643 int ret;
4644
Dave Gordond37cd8a2016-04-22 19:14:32 +01004645 obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE));
Chris Wilsonfe3db792016-04-25 13:32:13 +01004646 if (IS_ERR(obj))
Dave Gordonea702992015-07-09 19:29:02 +01004647 return obj;
4648
4649 ret = i915_gem_object_set_to_cpu_domain(obj, true);
4650 if (ret)
4651 goto fail;
4652
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004653 ret = i915_gem_object_pin_pages(obj);
Dave Gordonea702992015-07-09 19:29:02 +01004654 if (ret)
4655 goto fail;
4656
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004657 sg = obj->mm.pages;
Dave Gordonea702992015-07-09 19:29:02 +01004658 bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004659 obj->mm.dirty = true; /* Backing store is now out of date */
Dave Gordonea702992015-07-09 19:29:02 +01004660 i915_gem_object_unpin_pages(obj);
4661
4662 if (WARN_ON(bytes != size)) {
4663 DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size);
4664 ret = -EFAULT;
4665 goto fail;
4666 }
4667
4668 return obj;
4669
4670fail:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01004671 i915_gem_object_put(obj);
Dave Gordonea702992015-07-09 19:29:02 +01004672 return ERR_PTR(ret);
4673}
Chris Wilson96d77632016-10-28 13:58:33 +01004674
4675struct scatterlist *
4676i915_gem_object_get_sg(struct drm_i915_gem_object *obj,
4677 unsigned int n,
4678 unsigned int *offset)
4679{
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004680 struct i915_gem_object_page_iter *iter = &obj->mm.get_page;
Chris Wilson96d77632016-10-28 13:58:33 +01004681 struct scatterlist *sg;
4682 unsigned int idx, count;
4683
4684 might_sleep();
4685 GEM_BUG_ON(n >= obj->base.size >> PAGE_SHIFT);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004686 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
Chris Wilson96d77632016-10-28 13:58:33 +01004687
4688 /* As we iterate forward through the sg, we record each entry in a
4689 * radixtree for quick repeated (backwards) lookups. If we have seen
4690 * this index previously, we will have an entry for it.
4691 *
4692 * Initial lookup is O(N), but this is amortized to O(1) for
4693 * sequential page access (where each new request is consecutive
4694 * to the previous one). Repeated lookups are O(lg(obj->base.size)),
4695 * i.e. O(1) with a large constant!
4696 */
4697 if (n < READ_ONCE(iter->sg_idx))
4698 goto lookup;
4699
4700 mutex_lock(&iter->lock);
4701
4702 /* We prefer to reuse the last sg so that repeated lookup of this
4703 * (or the subsequent) sg are fast - comparing against the last
4704 * sg is faster than going through the radixtree.
4705 */
4706
4707 sg = iter->sg_pos;
4708 idx = iter->sg_idx;
4709 count = __sg_page_count(sg);
4710
4711 while (idx + count <= n) {
4712 unsigned long exception, i;
4713 int ret;
4714
4715 /* If we cannot allocate and insert this entry, or the
4716 * individual pages from this range, cancel updating the
4717 * sg_idx so that on this lookup we are forced to linearly
4718 * scan onwards, but on future lookups we will try the
4719 * insertion again (in which case we need to be careful of
4720 * the error return reporting that we have already inserted
4721 * this index).
4722 */
4723 ret = radix_tree_insert(&iter->radix, idx, sg);
4724 if (ret && ret != -EEXIST)
4725 goto scan;
4726
4727 exception =
4728 RADIX_TREE_EXCEPTIONAL_ENTRY |
4729 idx << RADIX_TREE_EXCEPTIONAL_SHIFT;
4730 for (i = 1; i < count; i++) {
4731 ret = radix_tree_insert(&iter->radix, idx + i,
4732 (void *)exception);
4733 if (ret && ret != -EEXIST)
4734 goto scan;
4735 }
4736
4737 idx += count;
4738 sg = ____sg_next(sg);
4739 count = __sg_page_count(sg);
4740 }
4741
4742scan:
4743 iter->sg_pos = sg;
4744 iter->sg_idx = idx;
4745
4746 mutex_unlock(&iter->lock);
4747
4748 if (unlikely(n < idx)) /* insertion completed by another thread */
4749 goto lookup;
4750
4751 /* In case we failed to insert the entry into the radixtree, we need
4752 * to look beyond the current sg.
4753 */
4754 while (idx + count <= n) {
4755 idx += count;
4756 sg = ____sg_next(sg);
4757 count = __sg_page_count(sg);
4758 }
4759
4760 *offset = n - idx;
4761 return sg;
4762
4763lookup:
4764 rcu_read_lock();
4765
4766 sg = radix_tree_lookup(&iter->radix, n);
4767 GEM_BUG_ON(!sg);
4768
4769 /* If this index is in the middle of multi-page sg entry,
4770 * the radixtree will contain an exceptional entry that points
4771 * to the start of that range. We will return the pointer to
4772 * the base page and the offset of this page within the
4773 * sg entry's range.
4774 */
4775 *offset = 0;
4776 if (unlikely(radix_tree_exception(sg))) {
4777 unsigned long base =
4778 (unsigned long)sg >> RADIX_TREE_EXCEPTIONAL_SHIFT;
4779
4780 sg = radix_tree_lookup(&iter->radix, base);
4781 GEM_BUG_ON(!sg);
4782
4783 *offset = n - base;
4784 }
4785
4786 rcu_read_unlock();
4787
4788 return sg;
4789}
4790
4791struct page *
4792i915_gem_object_get_page(struct drm_i915_gem_object *obj, unsigned int n)
4793{
4794 struct scatterlist *sg;
4795 unsigned int offset;
4796
4797 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
4798
4799 sg = i915_gem_object_get_sg(obj, n, &offset);
4800 return nth_page(sg_page(sg), offset);
4801}
4802
4803/* Like i915_gem_object_get_page(), but mark the returned page dirty */
4804struct page *
4805i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj,
4806 unsigned int n)
4807{
4808 struct page *page;
4809
4810 page = i915_gem_object_get_page(obj, n);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004811 if (!obj->mm.dirty)
Chris Wilson96d77632016-10-28 13:58:33 +01004812 set_page_dirty(page);
4813
4814 return page;
4815}
4816
4817dma_addr_t
4818i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj,
4819 unsigned long n)
4820{
4821 struct scatterlist *sg;
4822 unsigned int offset;
4823
4824 sg = i915_gem_object_get_sg(obj, n, &offset);
4825 return sg_dma_address(sg) + (offset << PAGE_SHIFT);
4826}