blob: c5d1666d7071271335b6c614b05ed75b5412651c [file] [log] [blame]
Ben Widawsky254f9652012-06-04 14:42:42 -07001/*
2 * Copyright © 2011-2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Ben Widawsky <ben@bwidawsk.net>
25 *
26 */
27
28/*
29 * This file implements HW context support. On gen5+ a HW context consists of an
30 * opaque GPU object which is referenced at times of context saves and restores.
31 * With RC6 enabled, the context is also referenced as the GPU enters and exists
32 * from RC6 (GPU has it's own internal power context, except on gen5). Though
33 * something like a context does exist for the media ring, the code only
34 * supports contexts for the render ring.
35 *
36 * In software, there is a distinction between contexts created by the user,
37 * and the default HW context. The default HW context is used by GPU clients
38 * that do not request setup of their own hardware context. The default
39 * context's state is never restored to help prevent programming errors. This
40 * would happen if a client ran and piggy-backed off another clients GPU state.
41 * The default context only exists to give the GPU some offset to load as the
42 * current to invoke a save of the context we actually care about. In fact, the
43 * code could likely be constructed, albeit in a more complicated fashion, to
44 * never use the default context, though that limits the driver's ability to
45 * swap out, and/or destroy other contexts.
46 *
47 * All other contexts are created as a request by the GPU client. These contexts
48 * store GPU state, and thus allow GPU clients to not re-emit state (and
49 * potentially query certain state) at any time. The kernel driver makes
50 * certain that the appropriate commands are inserted.
51 *
52 * The context life cycle is semi-complicated in that context BOs may live
53 * longer than the context itself because of the way the hardware, and object
54 * tracking works. Below is a very crude representation of the state machine
55 * describing the context life.
56 * refcount pincount active
57 * S0: initial state 0 0 0
58 * S1: context created 1 0 0
59 * S2: context is currently running 2 1 X
60 * S3: GPU referenced, but not current 2 0 1
61 * S4: context is current, but destroyed 1 1 0
62 * S5: like S3, but destroyed 1 0 1
63 *
64 * The most common (but not all) transitions:
65 * S0->S1: client creates a context
66 * S1->S2: client submits execbuf with context
67 * S2->S3: other clients submits execbuf with context
68 * S3->S1: context object was retired
69 * S3->S2: clients submits another execbuf
70 * S2->S4: context destroy called with current context
71 * S3->S5->S0: destroy path
72 * S4->S5->S0: destroy path on current context
73 *
74 * There are two confusing terms used above:
75 * The "current context" means the context which is currently running on the
Damien Lespiau508842a2013-08-30 14:40:26 +010076 * GPU. The GPU has loaded its state already and has stored away the gtt
Ben Widawsky254f9652012-06-04 14:42:42 -070077 * offset of the BO. The GPU is not actively referencing the data at this
78 * offset, but it will on the next context switch. The only way to avoid this
79 * is to do a GPU reset.
80 *
81 * An "active context' is one which was previously the "current context" and is
82 * on the active list waiting for the next context switch to occur. Until this
83 * happens, the object must remain at the same gtt offset. It is therefore
84 * possible to destroy a context, but it is still active.
85 *
86 */
87
David Howells760285e2012-10-02 18:01:07 +010088#include <drm/drmP.h>
89#include <drm/i915_drm.h>
Ben Widawsky254f9652012-06-04 14:42:42 -070090#include "i915_drv.h"
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +000091#include "i915_trace.h"
Ben Widawsky254f9652012-06-04 14:42:42 -070092
Chris Wilsonb2e862d2016-04-28 09:56:41 +010093#define ALL_L3_SLICES(dev) (1 << NUM_L3_SLICES(dev)) - 1
94
Mika Kuoppaladce32712013-04-30 13:30:33 +030095void i915_gem_context_free(struct kref *ctx_ref)
Ben Widawsky40521052012-06-04 14:42:43 -070096{
Chris Wilsone2efd132016-05-24 14:53:34 +010097 struct i915_gem_context *ctx = container_of(ctx_ref, typeof(*ctx), ref);
Chris Wilsonbca44d82016-05-24 14:53:41 +010098 int i;
Ben Widawsky40521052012-06-04 14:42:43 -070099
Chris Wilson91c8a322016-07-05 10:40:23 +0100100 lockdep_assert_held(&ctx->i915->drm.struct_mutex);
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +0000101 trace_i915_context_free(ctx);
Chris Wilson60958682016-12-31 11:20:11 +0000102 GEM_BUG_ON(!i915_gem_context_is_closed(ctx));
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +0000103
Daniel Vetterae6c4802014-08-06 15:04:53 +0200104 i915_ppgtt_put(ctx->ppgtt);
105
Chris Wilsonbca44d82016-05-24 14:53:41 +0100106 for (i = 0; i < I915_NUM_ENGINES; i++) {
107 struct intel_context *ce = &ctx->engine[i];
108
109 if (!ce->state)
110 continue;
111
112 WARN_ON(ce->pin_count);
Chris Wilsondca33ec2016-08-02 22:50:20 +0100113 if (ce->ring)
Chris Wilson7e37f882016-08-02 22:50:21 +0100114 intel_ring_free(ce->ring);
Chris Wilsonbca44d82016-05-24 14:53:41 +0100115
Chris Wilsonf8a7fde2016-10-28 13:58:29 +0100116 __i915_gem_object_release_unless_active(ce->state->obj);
Chris Wilsonbca44d82016-05-24 14:53:41 +0100117 }
118
Chris Wilson562f5d42016-10-28 13:58:54 +0100119 kfree(ctx->name);
Chris Wilsonc84455b2016-08-15 10:49:08 +0100120 put_pid(ctx->pid);
Ben Widawskyc7c48df2013-12-06 14:11:15 -0800121 list_del(&ctx->link);
Chris Wilson5d1808e2016-04-28 09:56:51 +0100122
123 ida_simple_remove(&ctx->i915->context_hw_ida, ctx->hw_id);
Ben Widawsky40521052012-06-04 14:42:43 -0700124 kfree(ctx);
125}
126
Chris Wilson50e046b2016-08-04 07:52:46 +0100127static void context_close(struct i915_gem_context *ctx)
128{
Chris Wilson60958682016-12-31 11:20:11 +0000129 i915_gem_context_set_closed(ctx);
Chris Wilson50e046b2016-08-04 07:52:46 +0100130 if (ctx->ppgtt)
131 i915_ppgtt_close(&ctx->ppgtt->base);
132 ctx->file_priv = ERR_PTR(-EBADF);
133 i915_gem_context_put(ctx);
134}
135
Chris Wilson5d1808e2016-04-28 09:56:51 +0100136static int assign_hw_id(struct drm_i915_private *dev_priv, unsigned *out)
137{
138 int ret;
139
140 ret = ida_simple_get(&dev_priv->context_hw_ida,
141 0, MAX_CONTEXT_HW_ID, GFP_KERNEL);
142 if (ret < 0) {
143 /* Contexts are only released when no longer active.
144 * Flush any pending retires to hopefully release some
145 * stale contexts and try again.
146 */
Chris Wilsonc0336662016-05-06 15:40:21 +0100147 i915_gem_retire_requests(dev_priv);
Chris Wilson5d1808e2016-04-28 09:56:51 +0100148 ret = ida_simple_get(&dev_priv->context_hw_ida,
149 0, MAX_CONTEXT_HW_ID, GFP_KERNEL);
150 if (ret < 0)
151 return ret;
152 }
153
154 *out = ret;
155 return 0;
156}
157
Chris Wilson949e8ab2017-02-09 14:40:36 +0000158static u32 default_desc_template(const struct drm_i915_private *i915,
159 const struct i915_hw_ppgtt *ppgtt)
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200160{
Chris Wilson949e8ab2017-02-09 14:40:36 +0000161 u32 address_mode;
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200162 u32 desc;
163
Chris Wilson949e8ab2017-02-09 14:40:36 +0000164 desc = GEN8_CTX_VALID | GEN8_CTX_PRIVILEGE;
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200165
Chris Wilson949e8ab2017-02-09 14:40:36 +0000166 address_mode = INTEL_LEGACY_32B_CONTEXT;
167 if (ppgtt && i915_vm_is_48bit(&ppgtt->base))
168 address_mode = INTEL_LEGACY_64B_CONTEXT;
169 desc |= address_mode << GEN8_CTX_ADDRESSING_MODE_SHIFT;
170
171 if (IS_GEN8(i915))
Mika Kuoppala2355cf02017-01-27 15:03:09 +0200172 desc |= GEN8_CTX_L3LLC_COHERENT;
173
174 /* TODO: WaDisableLiteRestore when we start using semaphore
175 * signalling between Command Streamers
176 * ring->ctx_desc_template |= GEN8_CTX_FORCE_RESTORE;
177 */
178
179 return desc;
180}
181
Chris Wilsone2efd132016-05-24 14:53:34 +0100182static struct i915_gem_context *
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000183__create_hw_context(struct drm_i915_private *dev_priv,
Daniel Vetteree960be2014-08-06 15:04:45 +0200184 struct drm_i915_file_private *file_priv)
Ben Widawsky40521052012-06-04 14:42:43 -0700185{
Chris Wilsone2efd132016-05-24 14:53:34 +0100186 struct i915_gem_context *ctx;
Tejun Heoc8c470a2013-02-27 17:04:10 -0800187 int ret;
Ben Widawsky40521052012-06-04 14:42:43 -0700188
Ben Widawskyf94982b2012-11-10 10:56:04 -0800189 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
Ben Widawsky146937e2012-06-29 10:30:39 -0700190 if (ctx == NULL)
191 return ERR_PTR(-ENOMEM);
Ben Widawsky40521052012-06-04 14:42:43 -0700192
Chris Wilson5d1808e2016-04-28 09:56:51 +0100193 ret = assign_hw_id(dev_priv, &ctx->hw_id);
194 if (ret) {
195 kfree(ctx);
196 return ERR_PTR(ret);
197 }
198
Mika Kuoppaladce32712013-04-30 13:30:33 +0300199 kref_init(&ctx->ref);
Ben Widawskya33afea2013-09-17 21:12:45 -0700200 list_add_tail(&ctx->link, &dev_priv->context_list);
Chris Wilson9ea4fee2015-05-05 09:17:29 +0100201 ctx->i915 = dev_priv;
Chris Wilsone4f815f2017-05-17 13:10:02 +0100202 ctx->priority = I915_PRIORITY_NORMAL;
Ben Widawsky40521052012-06-04 14:42:43 -0700203
Chris Wilson691e6412014-04-09 09:07:36 +0100204 /* Default context will never have a file_priv */
Chris Wilson562f5d42016-10-28 13:58:54 +0100205 ret = DEFAULT_CONTEXT_HANDLE;
206 if (file_priv) {
Chris Wilson691e6412014-04-09 09:07:36 +0100207 ret = idr_alloc(&file_priv->context_idr, ctx,
Oscar Mateo821d66d2014-07-03 16:28:00 +0100208 DEFAULT_CONTEXT_HANDLE, 0, GFP_KERNEL);
Chris Wilson691e6412014-04-09 09:07:36 +0100209 if (ret < 0)
210 goto err_out;
Chris Wilson562f5d42016-10-28 13:58:54 +0100211 }
212 ctx->user_handle = ret;
Mika Kuoppaladce32712013-04-30 13:30:33 +0300213
214 ctx->file_priv = file_priv;
Chris Wilson562f5d42016-10-28 13:58:54 +0100215 if (file_priv) {
Chris Wilsonc84455b2016-08-15 10:49:08 +0100216 ctx->pid = get_task_pid(current, PIDTYPE_PID);
Chris Wilson562f5d42016-10-28 13:58:54 +0100217 ctx->name = kasprintf(GFP_KERNEL, "%s[%d]/%x",
218 current->comm,
219 pid_nr(ctx->pid),
220 ctx->user_handle);
221 if (!ctx->name) {
222 ret = -ENOMEM;
223 goto err_pid;
224 }
225 }
Chris Wilsonc84455b2016-08-15 10:49:08 +0100226
Ben Widawsky3ccfd192013-09-18 19:03:18 -0700227 /* NB: Mark all slices as needing a remap so that when the context first
228 * loads it will restore whatever remap state already exists. If there
229 * is no remap info, it will be a NOP. */
Chris Wilsonb2e862d2016-04-28 09:56:41 +0100230 ctx->remap_slice = ALL_L3_SLICES(dev_priv);
Ben Widawsky40521052012-06-04 14:42:43 -0700231
Chris Wilson60958682016-12-31 11:20:11 +0000232 i915_gem_context_set_bannable(ctx);
Zhi Wangbcd794c2016-06-16 08:07:01 -0400233 ctx->ring_size = 4 * PAGE_SIZE;
Chris Wilson949e8ab2017-02-09 14:40:36 +0000234 ctx->desc_template =
235 default_desc_template(dev_priv, dev_priv->mm.aliasing_ppgtt);
Chris Wilson676fa572014-12-24 08:13:39 -0800236
Daniele Ceraolo Spuriod3ef1af2016-12-23 15:56:21 -0800237 /* GuC requires the ring to be placed above GUC_WOPCM_TOP. If GuC is not
238 * present or not in use we still need a small bias as ring wraparound
239 * at offset 0 sometimes hangs. No idea why.
240 */
241 if (HAS_GUC(dev_priv) && i915.enable_guc_loading)
242 ctx->ggtt_offset_bias = GUC_WOPCM_TOP;
243 else
Chris Wilsonf51455d2017-01-10 14:47:34 +0000244 ctx->ggtt_offset_bias = I915_GTT_PAGE_SIZE;
Daniele Ceraolo Spuriod3ef1af2016-12-23 15:56:21 -0800245
Ben Widawsky146937e2012-06-29 10:30:39 -0700246 return ctx;
Ben Widawsky40521052012-06-04 14:42:43 -0700247
Chris Wilson562f5d42016-10-28 13:58:54 +0100248err_pid:
249 put_pid(ctx->pid);
250 idr_remove(&file_priv->context_idr, ctx->user_handle);
Ben Widawsky40521052012-06-04 14:42:43 -0700251err_out:
Chris Wilson50e046b2016-08-04 07:52:46 +0100252 context_close(ctx);
Ben Widawsky146937e2012-06-29 10:30:39 -0700253 return ERR_PTR(ret);
Ben Widawsky40521052012-06-04 14:42:43 -0700254}
255
Joonas Lahtinen6d1f9fb2017-02-09 13:34:25 +0200256static void __destroy_hw_context(struct i915_gem_context *ctx,
257 struct drm_i915_file_private *file_priv)
258{
259 idr_remove(&file_priv->context_idr, ctx->user_handle);
260 context_close(ctx);
261}
262
Ben Widawsky254f9652012-06-04 14:42:42 -0700263/**
264 * The default context needs to exist per ring that uses contexts. It stores the
265 * context state of the GPU for applications that don't utilize HW contexts, as
266 * well as an idle case.
267 */
Chris Wilsone2efd132016-05-24 14:53:34 +0100268static struct i915_gem_context *
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000269i915_gem_create_context(struct drm_i915_private *dev_priv,
Daniel Vetterd624d862014-08-06 15:04:54 +0200270 struct drm_i915_file_private *file_priv)
Ben Widawsky254f9652012-06-04 14:42:42 -0700271{
Chris Wilsone2efd132016-05-24 14:53:34 +0100272 struct i915_gem_context *ctx;
Ben Widawsky40521052012-06-04 14:42:43 -0700273
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000274 lockdep_assert_held(&dev_priv->drm.struct_mutex);
Ben Widawsky40521052012-06-04 14:42:43 -0700275
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000276 ctx = __create_hw_context(dev_priv, file_priv);
Ben Widawsky146937e2012-06-29 10:30:39 -0700277 if (IS_ERR(ctx))
Ben Widawskya45d0f62013-12-06 14:11:05 -0800278 return ctx;
Ben Widawsky40521052012-06-04 14:42:43 -0700279
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000280 if (USES_FULL_PPGTT(dev_priv)) {
Chris Wilson80b204b2016-10-28 13:58:58 +0100281 struct i915_hw_ppgtt *ppgtt;
Ben Widawskybdf4fd72013-12-06 14:11:18 -0800282
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000283 ppgtt = i915_ppgtt_create(dev_priv, file_priv, ctx->name);
Chris Wilsonc6aab912016-05-24 14:53:38 +0100284 if (IS_ERR(ppgtt)) {
Ben Widawsky0eea67e2013-12-06 14:11:19 -0800285 DRM_DEBUG_DRIVER("PPGTT setup failed (%ld)\n",
286 PTR_ERR(ppgtt));
Joonas Lahtinen6d1f9fb2017-02-09 13:34:25 +0200287 __destroy_hw_context(ctx, file_priv);
Chris Wilsonc6aab912016-05-24 14:53:38 +0100288 return ERR_CAST(ppgtt);
Daniel Vetterae6c4802014-08-06 15:04:53 +0200289 }
290
291 ctx->ppgtt = ppgtt;
Chris Wilson949e8ab2017-02-09 14:40:36 +0000292 ctx->desc_template = default_desc_template(dev_priv, ppgtt);
Daniel Vetterae6c4802014-08-06 15:04:53 +0200293 }
Ben Widawskybdf4fd72013-12-06 14:11:18 -0800294
Daniele Ceraolo Spurio198c9742014-11-10 13:44:31 +0000295 trace_i915_context_create(ctx);
296
Ben Widawskya45d0f62013-12-06 14:11:05 -0800297 return ctx;
Ben Widawsky254f9652012-06-04 14:42:42 -0700298}
299
Zhi Wangc8c35792016-06-16 08:07:05 -0400300/**
301 * i915_gem_context_create_gvt - create a GVT GEM context
302 * @dev: drm device *
303 *
304 * This function is used to create a GVT specific GEM context.
305 *
306 * Returns:
307 * pointer to i915_gem_context on success, error pointer if failed
308 *
309 */
310struct i915_gem_context *
311i915_gem_context_create_gvt(struct drm_device *dev)
312{
313 struct i915_gem_context *ctx;
314 int ret;
315
316 if (!IS_ENABLED(CONFIG_DRM_I915_GVT))
317 return ERR_PTR(-ENODEV);
318
319 ret = i915_mutex_lock_interruptible(dev);
320 if (ret)
321 return ERR_PTR(ret);
322
Chris Wilson984ff29f2017-01-06 15:20:13 +0000323 ctx = __create_hw_context(to_i915(dev), NULL);
Zhi Wangc8c35792016-06-16 08:07:05 -0400324 if (IS_ERR(ctx))
325 goto out;
326
Chris Wilson984ff29f2017-01-06 15:20:13 +0000327 ctx->file_priv = ERR_PTR(-EBADF);
Chris Wilson60958682016-12-31 11:20:11 +0000328 i915_gem_context_set_closed(ctx); /* not user accessible */
329 i915_gem_context_clear_bannable(ctx);
330 i915_gem_context_set_force_single_submission(ctx);
Chuanxiao Dong718e8842017-02-16 14:36:40 +0800331 if (!i915.enable_guc_submission)
332 ctx->ring_size = 512 * PAGE_SIZE; /* Max ring buffer size */
Chris Wilson984ff29f2017-01-06 15:20:13 +0000333
334 GEM_BUG_ON(i915_gem_context_is_kernel(ctx));
Zhi Wangc8c35792016-06-16 08:07:05 -0400335out:
336 mutex_unlock(&dev->struct_mutex);
337 return ctx;
338}
339
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000340int i915_gem_context_init(struct drm_i915_private *dev_priv)
Ben Widawsky254f9652012-06-04 14:42:42 -0700341{
Chris Wilsone2efd132016-05-24 14:53:34 +0100342 struct i915_gem_context *ctx;
Ben Widawsky254f9652012-06-04 14:42:42 -0700343
Ben Widawsky2fa48d82013-12-06 14:11:04 -0800344 /* Init should only be called once per module load. Eventually the
345 * restriction on the context_disabled check can be loosened. */
Dave Gordoned54c1a2016-01-19 19:02:54 +0000346 if (WARN_ON(dev_priv->kernel_context))
Ben Widawsky8245be32013-11-06 13:56:29 -0200347 return 0;
Ben Widawsky254f9652012-06-04 14:42:42 -0700348
Chris Wilsonc0336662016-05-06 15:40:21 +0100349 if (intel_vgpu_active(dev_priv) &&
350 HAS_LOGICAL_RING_CONTEXTS(dev_priv)) {
Zhiyuan Lva0bd6c32015-08-28 15:41:16 +0800351 if (!i915.enable_execlists) {
352 DRM_INFO("Only EXECLIST mode is supported in vgpu.\n");
353 return -EINVAL;
354 }
355 }
356
Chris Wilson5d1808e2016-04-28 09:56:51 +0100357 /* Using the simple ida interface, the max is limited by sizeof(int) */
358 BUILD_BUG_ON(MAX_CONTEXT_HW_ID > INT_MAX);
359 ida_init(&dev_priv->context_hw_ida);
360
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000361 ctx = i915_gem_create_context(dev_priv, NULL);
Chris Wilson691e6412014-04-09 09:07:36 +0100362 if (IS_ERR(ctx)) {
363 DRM_ERROR("Failed to create default global context (error %ld)\n",
364 PTR_ERR(ctx));
365 return PTR_ERR(ctx);
Ben Widawsky254f9652012-06-04 14:42:42 -0700366 }
367
Chris Wilson5d12fce2017-01-23 11:31:31 +0000368 /* For easy recognisablity, we want the kernel context to be 0 and then
369 * all user contexts will have non-zero hw_id.
370 */
371 GEM_BUG_ON(ctx->hw_id);
372
Chris Wilson60958682016-12-31 11:20:11 +0000373 i915_gem_context_clear_bannable(ctx);
Chris Wilson9f792eb2016-11-14 20:41:04 +0000374 ctx->priority = I915_PRIORITY_MIN; /* lowest priority; idle task */
Dave Gordoned54c1a2016-01-19 19:02:54 +0000375 dev_priv->kernel_context = ctx;
Oscar Mateoede7d422014-07-24 17:04:12 +0100376
Chris Wilson984ff29f2017-01-06 15:20:13 +0000377 GEM_BUG_ON(!i915_gem_context_is_kernel(ctx));
378
Oscar Mateoede7d422014-07-24 17:04:12 +0100379 DRM_DEBUG_DRIVER("%s context support initialized\n",
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300380 dev_priv->engine[RCS]->context_size ? "logical" :
381 "fake");
Ben Widawsky8245be32013-11-06 13:56:29 -0200382 return 0;
Ben Widawsky254f9652012-06-04 14:42:42 -0700383}
384
Chris Wilsonb2e862d2016-04-28 09:56:41 +0100385void i915_gem_context_lost(struct drm_i915_private *dev_priv)
386{
387 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530388 enum intel_engine_id id;
Chris Wilsonb2e862d2016-04-28 09:56:41 +0100389
Chris Wilson91c8a322016-07-05 10:40:23 +0100390 lockdep_assert_held(&dev_priv->drm.struct_mutex);
Chris Wilson499f2692016-05-24 14:53:35 +0100391
Akash Goel3b3f1652016-10-13 22:44:48 +0530392 for_each_engine(engine, dev_priv, id) {
Chris Wilsone8a9c582016-12-18 15:37:20 +0000393 engine->legacy_active_context = NULL;
394
395 if (!engine->last_retired_context)
396 continue;
397
398 engine->context_unpin(engine, engine->last_retired_context);
399 engine->last_retired_context = NULL;
Chris Wilsonb2e862d2016-04-28 09:56:41 +0100400 }
401
Chris Wilsonc7c3c072016-06-24 14:55:54 +0100402 /* Force the GPU state to be restored on enabling */
403 if (!i915.enable_execlists) {
Chris Wilsona168b2d2016-06-24 14:55:55 +0100404 struct i915_gem_context *ctx;
405
406 list_for_each_entry(ctx, &dev_priv->context_list, link) {
407 if (!i915_gem_context_is_default(ctx))
408 continue;
409
Akash Goel3b3f1652016-10-13 22:44:48 +0530410 for_each_engine(engine, dev_priv, id)
Chris Wilsona168b2d2016-06-24 14:55:55 +0100411 ctx->engine[engine->id].initialised = false;
412
413 ctx->remap_slice = ALL_L3_SLICES(dev_priv);
414 }
415
Akash Goel3b3f1652016-10-13 22:44:48 +0530416 for_each_engine(engine, dev_priv, id) {
Chris Wilsonc7c3c072016-06-24 14:55:54 +0100417 struct intel_context *kce =
418 &dev_priv->kernel_context->engine[engine->id];
419
420 kce->initialised = true;
421 }
422 }
Chris Wilsonb2e862d2016-04-28 09:56:41 +0100423}
424
Tvrtko Ursulincb15d9f2016-12-01 14:16:39 +0000425void i915_gem_context_fini(struct drm_i915_private *dev_priv)
Ben Widawsky254f9652012-06-04 14:42:42 -0700426{
Chris Wilsone2efd132016-05-24 14:53:34 +0100427 struct i915_gem_context *dctx = dev_priv->kernel_context;
Chris Wilsonb2e862d2016-04-28 09:56:41 +0100428
Tvrtko Ursulincb15d9f2016-12-01 14:16:39 +0000429 lockdep_assert_held(&dev_priv->drm.struct_mutex);
Chris Wilson499f2692016-05-24 14:53:35 +0100430
Chris Wilson984ff29f2017-01-06 15:20:13 +0000431 GEM_BUG_ON(!i915_gem_context_is_kernel(dctx));
432
Chris Wilson50e046b2016-08-04 07:52:46 +0100433 context_close(dctx);
Dave Gordoned54c1a2016-01-19 19:02:54 +0000434 dev_priv->kernel_context = NULL;
Chris Wilson5d1808e2016-04-28 09:56:51 +0100435
436 ida_destroy(&dev_priv->context_hw_ida);
Ben Widawsky254f9652012-06-04 14:42:42 -0700437}
438
Ben Widawsky40521052012-06-04 14:42:43 -0700439static int context_idr_cleanup(int id, void *p, void *data)
440{
Chris Wilsone2efd132016-05-24 14:53:34 +0100441 struct i915_gem_context *ctx = p;
Ben Widawsky40521052012-06-04 14:42:43 -0700442
Chris Wilson50e046b2016-08-04 07:52:46 +0100443 context_close(ctx);
Ben Widawsky40521052012-06-04 14:42:43 -0700444 return 0;
Ben Widawsky254f9652012-06-04 14:42:42 -0700445}
446
Ben Widawskye422b882013-12-06 14:10:58 -0800447int i915_gem_context_open(struct drm_device *dev, struct drm_file *file)
448{
449 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsone2efd132016-05-24 14:53:34 +0100450 struct i915_gem_context *ctx;
Ben Widawskye422b882013-12-06 14:10:58 -0800451
452 idr_init(&file_priv->context_idr);
453
Ben Widawsky0eea67e2013-12-06 14:11:19 -0800454 mutex_lock(&dev->struct_mutex);
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +0000455 ctx = i915_gem_create_context(to_i915(dev), file_priv);
Ben Widawsky0eea67e2013-12-06 14:11:19 -0800456 mutex_unlock(&dev->struct_mutex);
457
Chris Wilson984ff29f2017-01-06 15:20:13 +0000458 GEM_BUG_ON(i915_gem_context_is_kernel(ctx));
459
Oscar Mateof83d6512014-05-22 14:13:38 +0100460 if (IS_ERR(ctx)) {
Ben Widawsky0eea67e2013-12-06 14:11:19 -0800461 idr_destroy(&file_priv->context_idr);
Oscar Mateof83d6512014-05-22 14:13:38 +0100462 return PTR_ERR(ctx);
Ben Widawsky0eea67e2013-12-06 14:11:19 -0800463 }
464
Ben Widawskye422b882013-12-06 14:10:58 -0800465 return 0;
466}
467
Ben Widawsky254f9652012-06-04 14:42:42 -0700468void i915_gem_context_close(struct drm_device *dev, struct drm_file *file)
469{
Ben Widawsky40521052012-06-04 14:42:43 -0700470 struct drm_i915_file_private *file_priv = file->driver_priv;
Ben Widawsky254f9652012-06-04 14:42:42 -0700471
Chris Wilson499f2692016-05-24 14:53:35 +0100472 lockdep_assert_held(&dev->struct_mutex);
473
Daniel Vetter73c273e2012-06-19 20:27:39 +0200474 idr_for_each(&file_priv->context_idr, context_idr_cleanup, NULL);
Ben Widawsky40521052012-06-04 14:42:43 -0700475 idr_destroy(&file_priv->context_idr);
Ben Widawsky40521052012-06-04 14:42:43 -0700476}
477
Ben Widawskye0556842012-06-04 14:42:46 -0700478static inline int
Chris Wilsone555e322017-03-22 21:03:50 +0000479mi_set_context(struct drm_i915_gem_request *req, u32 flags)
Ben Widawskye0556842012-06-04 14:42:46 -0700480{
Chris Wilsonc0336662016-05-06 15:40:21 +0100481 struct drm_i915_private *dev_priv = req->i915;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000482 struct intel_engine_cs *engine = req->engine;
Akash Goel3b3f1652016-10-13 22:44:48 +0530483 enum intel_engine_id id;
Chris Wilson2c550182014-12-16 10:02:27 +0000484 const int num_rings =
Chris Wilsone02d9d76b2017-03-24 15:17:23 +0000485 /* Use an extended w/a on gen7 if signalling from other rings */
486 (i915.semaphores && INTEL_GEN(dev_priv) == 7) ?
Tvrtko Ursulinc1bb1142016-08-10 16:22:10 +0100487 INTEL_INFO(dev_priv)->num_rings - 1 :
Chris Wilson2c550182014-12-16 10:02:27 +0000488 0;
Tvrtko Ursulina937eaf2017-02-14 15:29:01 +0000489 int len;
Chris Wilsone555e322017-03-22 21:03:50 +0000490 u32 *cs;
Ben Widawskye0556842012-06-04 14:42:46 -0700491
Chris Wilsone555e322017-03-22 21:03:50 +0000492 flags |= MI_MM_SPACE_GTT;
Chris Wilsonc0336662016-05-06 15:40:21 +0100493 if (IS_HASWELL(dev_priv) || INTEL_GEN(dev_priv) >= 8)
Chris Wilsone555e322017-03-22 21:03:50 +0000494 /* These flags are for resource streamer on HSW+ */
495 flags |= HSW_MI_RS_SAVE_STATE_EN | HSW_MI_RS_RESTORE_STATE_EN;
496 else
497 flags |= MI_SAVE_EXT_STATE_EN | MI_RESTORE_EXT_STATE_EN;
Chris Wilson2c550182014-12-16 10:02:27 +0000498
499 len = 4;
Chris Wilsonc0336662016-05-06 15:40:21 +0100500 if (INTEL_GEN(dev_priv) >= 7)
Chris Wilsone9135c42016-04-13 17:35:10 +0100501 len += 2 + (num_rings ? 4*num_rings + 6 : 0);
Chris Wilson2c550182014-12-16 10:02:27 +0000502
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000503 cs = intel_ring_begin(req, len);
504 if (IS_ERR(cs))
505 return PTR_ERR(cs);
Ben Widawskye0556842012-06-04 14:42:46 -0700506
Ville Syrjäläb3f797a2014-04-28 14:31:09 +0300507 /* WaProgramMiArbOnOffAroundMiSetContext:ivb,vlv,hsw,bdw,chv */
Chris Wilsonc0336662016-05-06 15:40:21 +0100508 if (INTEL_GEN(dev_priv) >= 7) {
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000509 *cs++ = MI_ARB_ON_OFF | MI_ARB_DISABLE;
Chris Wilson2c550182014-12-16 10:02:27 +0000510 if (num_rings) {
511 struct intel_engine_cs *signaller;
512
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000513 *cs++ = MI_LOAD_REGISTER_IMM(num_rings);
Akash Goel3b3f1652016-10-13 22:44:48 +0530514 for_each_engine(signaller, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000515 if (signaller == engine)
Chris Wilson2c550182014-12-16 10:02:27 +0000516 continue;
517
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000518 *cs++ = i915_mmio_reg_offset(
519 RING_PSMI_CTL(signaller->mmio_base));
520 *cs++ = _MASKED_BIT_ENABLE(
521 GEN6_PSMI_SLEEP_MSG_DISABLE);
Chris Wilson2c550182014-12-16 10:02:27 +0000522 }
523 }
524 }
Ben Widawskye37ec392012-06-04 14:42:48 -0700525
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000526 *cs++ = MI_NOOP;
527 *cs++ = MI_SET_CONTEXT;
528 *cs++ = i915_ggtt_offset(req->ctx->engine[RCS].state) | flags;
Ville Syrjälä2b7e8082014-01-22 21:32:43 +0200529 /*
530 * w/a: MI_SET_CONTEXT must always be followed by MI_NOOP
531 * WaMiSetContext_Hang:snb,ivb,vlv
532 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000533 *cs++ = MI_NOOP;
Ben Widawskye0556842012-06-04 14:42:46 -0700534
Chris Wilsonc0336662016-05-06 15:40:21 +0100535 if (INTEL_GEN(dev_priv) >= 7) {
Chris Wilson2c550182014-12-16 10:02:27 +0000536 if (num_rings) {
537 struct intel_engine_cs *signaller;
Chris Wilsone9135c42016-04-13 17:35:10 +0100538 i915_reg_t last_reg = {}; /* keep gcc quiet */
Chris Wilson2c550182014-12-16 10:02:27 +0000539
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000540 *cs++ = MI_LOAD_REGISTER_IMM(num_rings);
Akash Goel3b3f1652016-10-13 22:44:48 +0530541 for_each_engine(signaller, dev_priv, id) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000542 if (signaller == engine)
Chris Wilson2c550182014-12-16 10:02:27 +0000543 continue;
544
Chris Wilsone9135c42016-04-13 17:35:10 +0100545 last_reg = RING_PSMI_CTL(signaller->mmio_base);
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000546 *cs++ = i915_mmio_reg_offset(last_reg);
547 *cs++ = _MASKED_BIT_DISABLE(
548 GEN6_PSMI_SLEEP_MSG_DISABLE);
Chris Wilson2c550182014-12-16 10:02:27 +0000549 }
Chris Wilsone9135c42016-04-13 17:35:10 +0100550
551 /* Insert a delay before the next switch! */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000552 *cs++ = MI_STORE_REGISTER_MEM | MI_SRM_LRM_GLOBAL_GTT;
553 *cs++ = i915_mmio_reg_offset(last_reg);
554 *cs++ = i915_ggtt_offset(engine->scratch);
555 *cs++ = MI_NOOP;
Chris Wilson2c550182014-12-16 10:02:27 +0000556 }
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000557 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
Chris Wilson2c550182014-12-16 10:02:27 +0000558 }
Ben Widawskye37ec392012-06-04 14:42:48 -0700559
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000560 intel_ring_advance(req, cs);
Ben Widawskye0556842012-06-04 14:42:46 -0700561
Tvrtko Ursulina937eaf2017-02-14 15:29:01 +0000562 return 0;
Ben Widawskye0556842012-06-04 14:42:46 -0700563}
564
Chris Wilsond200cda2016-04-28 09:56:44 +0100565static int remap_l3(struct drm_i915_gem_request *req, int slice)
Chris Wilsonb0ebde32016-04-28 09:56:42 +0100566{
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000567 u32 *cs, *remap_info = req->i915->l3_parity.remap_info[slice];
568 int i;
Chris Wilsonb0ebde32016-04-28 09:56:42 +0100569
Chris Wilsonff55b5e2016-04-28 09:56:43 +0100570 if (!remap_info)
Chris Wilsonb0ebde32016-04-28 09:56:42 +0100571 return 0;
572
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000573 cs = intel_ring_begin(req, GEN7_L3LOG_SIZE/4 * 2 + 2);
574 if (IS_ERR(cs))
575 return PTR_ERR(cs);
Chris Wilsonb0ebde32016-04-28 09:56:42 +0100576
577 /*
578 * Note: We do not worry about the concurrent register cacheline hang
579 * here because no other code should access these registers other than
580 * at initialization time.
581 */
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000582 *cs++ = MI_LOAD_REGISTER_IMM(GEN7_L3LOG_SIZE/4);
Chris Wilsonff55b5e2016-04-28 09:56:43 +0100583 for (i = 0; i < GEN7_L3LOG_SIZE/4; i++) {
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000584 *cs++ = i915_mmio_reg_offset(GEN7_L3LOG(slice, i));
585 *cs++ = remap_info[i];
Chris Wilsonb0ebde32016-04-28 09:56:42 +0100586 }
Tvrtko Ursulin73dec952017-02-14 11:32:42 +0000587 *cs++ = MI_NOOP;
588 intel_ring_advance(req, cs);
Chris Wilsonb0ebde32016-04-28 09:56:42 +0100589
Chris Wilsonff55b5e2016-04-28 09:56:43 +0100590 return 0;
Chris Wilsonb0ebde32016-04-28 09:56:42 +0100591}
592
Chris Wilsonf9326be2016-04-28 09:56:45 +0100593static inline bool skip_rcs_switch(struct i915_hw_ppgtt *ppgtt,
594 struct intel_engine_cs *engine,
Chris Wilsone2efd132016-05-24 14:53:34 +0100595 struct i915_gem_context *to)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000596{
Ben Widawsky563222a2015-03-19 12:53:28 +0000597 if (to->remap_slice)
598 return false;
599
Chris Wilsonbca44d82016-05-24 14:53:41 +0100600 if (!to->engine[RCS].initialised)
Chris Wilsonfcb51062016-04-13 17:35:14 +0100601 return false;
Ben Widawsky317b4e92015-03-16 16:00:55 +0000602
Chris Wilsonf9326be2016-04-28 09:56:45 +0100603 if (ppgtt && (intel_engine_flag(engine) & ppgtt->pd_dirty_rings))
Chris Wilsonfcb51062016-04-13 17:35:14 +0100604 return false;
605
Chris Wilsone8a9c582016-12-18 15:37:20 +0000606 return to == engine->legacy_active_context;
Ben Widawsky317b4e92015-03-16 16:00:55 +0000607}
608
609static bool
Chris Wilsonf9326be2016-04-28 09:56:45 +0100610needs_pd_load_pre(struct i915_hw_ppgtt *ppgtt,
611 struct intel_engine_cs *engine,
Chris Wilsone2efd132016-05-24 14:53:34 +0100612 struct i915_gem_context *to)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000613{
Chris Wilsonf9326be2016-04-28 09:56:45 +0100614 if (!ppgtt)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000615 return false;
616
Chris Wilsonf9326be2016-04-28 09:56:45 +0100617 /* Always load the ppgtt on first use */
Chris Wilsone8a9c582016-12-18 15:37:20 +0000618 if (!engine->legacy_active_context)
Chris Wilsonf9326be2016-04-28 09:56:45 +0100619 return true;
620
621 /* Same context without new entries, skip */
Chris Wilsone8a9c582016-12-18 15:37:20 +0000622 if (engine->legacy_active_context == to &&
Chris Wilsonf9326be2016-04-28 09:56:45 +0100623 !(intel_engine_flag(engine) & ppgtt->pd_dirty_rings))
Chris Wilsone1a8daa2016-04-13 17:35:13 +0100624 return false;
625
626 if (engine->id != RCS)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000627 return true;
628
Chris Wilsonc0336662016-05-06 15:40:21 +0100629 if (INTEL_GEN(engine->i915) < 8)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000630 return true;
631
632 return false;
633}
634
635static bool
Chris Wilsonf9326be2016-04-28 09:56:45 +0100636needs_pd_load_post(struct i915_hw_ppgtt *ppgtt,
Chris Wilsone2efd132016-05-24 14:53:34 +0100637 struct i915_gem_context *to,
Chris Wilsonf9326be2016-04-28 09:56:45 +0100638 u32 hw_flags)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000639{
Chris Wilsonf9326be2016-04-28 09:56:45 +0100640 if (!ppgtt)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000641 return false;
642
Chris Wilsonfcb51062016-04-13 17:35:14 +0100643 if (!IS_GEN8(to->i915))
Ben Widawsky317b4e92015-03-16 16:00:55 +0000644 return false;
645
Ben Widawsky6702cf12015-03-16 16:00:58 +0000646 if (hw_flags & MI_RESTORE_INHIBIT)
Ben Widawsky317b4e92015-03-16 16:00:55 +0000647 return true;
648
649 return false;
650}
651
Chris Wilsone1a8daa2016-04-13 17:35:13 +0100652static int do_rcs_switch(struct drm_i915_gem_request *req)
Ben Widawskye0556842012-06-04 14:42:46 -0700653{
Chris Wilsone2efd132016-05-24 14:53:34 +0100654 struct i915_gem_context *to = req->ctx;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000655 struct intel_engine_cs *engine = req->engine;
Chris Wilsonf9326be2016-04-28 09:56:45 +0100656 struct i915_hw_ppgtt *ppgtt = to->ppgtt ?: req->i915->mm.aliasing_ppgtt;
Chris Wilsone8a9c582016-12-18 15:37:20 +0000657 struct i915_gem_context *from = engine->legacy_active_context;
Chris Wilsonfcb51062016-04-13 17:35:14 +0100658 u32 hw_flags;
Ben Widawsky3ccfd192013-09-18 19:03:18 -0700659 int ret, i;
Ben Widawskye0556842012-06-04 14:42:46 -0700660
Chris Wilsone8a9c582016-12-18 15:37:20 +0000661 GEM_BUG_ON(engine->id != RCS);
662
Chris Wilsonf9326be2016-04-28 09:56:45 +0100663 if (skip_rcs_switch(ppgtt, engine, to))
Chris Wilson9a3b5302012-07-15 12:34:24 +0100664 return 0;
665
Chris Wilsonf9326be2016-04-28 09:56:45 +0100666 if (needs_pd_load_pre(ppgtt, engine, to)) {
Chris Wilsonfcb51062016-04-13 17:35:14 +0100667 /* Older GENs and non render rings still want the load first,
668 * "PP_DCLV followed by PP_DIR_BASE register through Load
669 * Register Immediate commands in Ring Buffer before submitting
670 * a context."*/
671 trace_switch_mm(engine, to);
Chris Wilsonf9326be2016-04-28 09:56:45 +0100672 ret = ppgtt->switch_mm(ppgtt, req);
Chris Wilsonfcb51062016-04-13 17:35:14 +0100673 if (ret)
Chris Wilsone8a9c582016-12-18 15:37:20 +0000674 return ret;
Chris Wilsonfcb51062016-04-13 17:35:14 +0100675 }
676
Chris Wilsonbca44d82016-05-24 14:53:41 +0100677 if (!to->engine[RCS].initialised || i915_gem_context_is_default(to))
Ben Widawsky6702cf12015-03-16 16:00:58 +0000678 /* NB: If we inhibit the restore, the context is not allowed to
679 * die because future work may end up depending on valid address
680 * space. This means we must enforce that a page table load
681 * occur when this occurs. */
Chris Wilsonfcb51062016-04-13 17:35:14 +0100682 hw_flags = MI_RESTORE_INHIBIT;
Chris Wilsonf9326be2016-04-28 09:56:45 +0100683 else if (ppgtt && intel_engine_flag(engine) & ppgtt->pd_dirty_rings)
Chris Wilsonfcb51062016-04-13 17:35:14 +0100684 hw_flags = MI_FORCE_RESTORE;
685 else
686 hw_flags = 0;
Ben Widawskye0556842012-06-04 14:42:46 -0700687
Chris Wilsonfcb51062016-04-13 17:35:14 +0100688 if (to != from || (hw_flags & MI_FORCE_RESTORE)) {
689 ret = mi_set_context(req, hw_flags);
Ben Widawsky3ccfd192013-09-18 19:03:18 -0700690 if (ret)
Chris Wilsone8a9c582016-12-18 15:37:20 +0000691 return ret;
Ben Widawsky3ccfd192013-09-18 19:03:18 -0700692
Chris Wilsone8a9c582016-12-18 15:37:20 +0000693 engine->legacy_active_context = to;
Ben Widawskye0556842012-06-04 14:42:46 -0700694 }
Ben Widawskye0556842012-06-04 14:42:46 -0700695
Chris Wilsonfcb51062016-04-13 17:35:14 +0100696 /* GEN8 does *not* require an explicit reload if the PDPs have been
697 * setup, and we do not wish to move them.
698 */
Chris Wilsonf9326be2016-04-28 09:56:45 +0100699 if (needs_pd_load_post(ppgtt, to, hw_flags)) {
Chris Wilsonfcb51062016-04-13 17:35:14 +0100700 trace_switch_mm(engine, to);
Chris Wilsonf9326be2016-04-28 09:56:45 +0100701 ret = ppgtt->switch_mm(ppgtt, req);
Chris Wilsonfcb51062016-04-13 17:35:14 +0100702 /* The hardware context switch is emitted, but we haven't
703 * actually changed the state - so it's probably safe to bail
704 * here. Still, let the user know something dangerous has
705 * happened.
706 */
707 if (ret)
708 return ret;
709 }
710
Chris Wilsonf9326be2016-04-28 09:56:45 +0100711 if (ppgtt)
712 ppgtt->pd_dirty_rings &= ~intel_engine_flag(engine);
Chris Wilsonfcb51062016-04-13 17:35:14 +0100713
714 for (i = 0; i < MAX_L3_SLICES; i++) {
715 if (!(to->remap_slice & (1<<i)))
716 continue;
717
Chris Wilsond200cda2016-04-28 09:56:44 +0100718 ret = remap_l3(req, i);
Chris Wilsonfcb51062016-04-13 17:35:14 +0100719 if (ret)
720 return ret;
721
722 to->remap_slice &= ~(1<<i);
723 }
724
Chris Wilsonbca44d82016-05-24 14:53:41 +0100725 if (!to->engine[RCS].initialised) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000726 if (engine->init_context) {
727 ret = engine->init_context(req);
Arun Siluvery86d7f232014-08-26 14:44:50 +0100728 if (ret)
Chris Wilsonfcb51062016-04-13 17:35:14 +0100729 return ret;
Arun Siluvery86d7f232014-08-26 14:44:50 +0100730 }
Chris Wilsonbca44d82016-05-24 14:53:41 +0100731 to->engine[RCS].initialised = true;
Mika Kuoppala46470fc92014-05-21 19:01:06 +0300732 }
733
Ben Widawskye0556842012-06-04 14:42:46 -0700734 return 0;
735}
736
737/**
738 * i915_switch_context() - perform a GPU context switch.
John Harrisonba01cc92015-05-29 17:43:41 +0100739 * @req: request for which we'll execute the context switch
Ben Widawskye0556842012-06-04 14:42:46 -0700740 *
741 * The context life cycle is simple. The context refcount is incremented and
742 * decremented by 1 and create and destroy. If the context is in use by the GPU,
Thomas Danielecdb5fd2014-08-20 16:29:24 +0100743 * it will have a refcount > 1. This allows us to destroy the context abstract
Ben Widawskye0556842012-06-04 14:42:46 -0700744 * object while letting the normal object tracking destroy the backing BO.
Thomas Danielecdb5fd2014-08-20 16:29:24 +0100745 *
746 * This function should not be used in execlists mode. Instead the context is
747 * switched by writing to the ELSP and requests keep a reference to their
748 * context.
Ben Widawskye0556842012-06-04 14:42:46 -0700749 */
John Harrisonba01cc92015-05-29 17:43:41 +0100750int i915_switch_context(struct drm_i915_gem_request *req)
Ben Widawskye0556842012-06-04 14:42:46 -0700751{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000752 struct intel_engine_cs *engine = req->engine;
Ben Widawskye0556842012-06-04 14:42:46 -0700753
Chris Wilson91c8a322016-07-05 10:40:23 +0100754 lockdep_assert_held(&req->i915->drm.struct_mutex);
Chris Wilson5b043f42016-08-02 22:50:38 +0100755 if (i915.enable_execlists)
756 return 0;
Ben Widawsky0eea67e2013-12-06 14:11:19 -0800757
Chris Wilsonbca44d82016-05-24 14:53:41 +0100758 if (!req->ctx->engine[engine->id].state) {
Chris Wilsone2efd132016-05-24 14:53:34 +0100759 struct i915_gem_context *to = req->ctx;
Chris Wilsonf9326be2016-04-28 09:56:45 +0100760 struct i915_hw_ppgtt *ppgtt =
761 to->ppgtt ?: req->i915->mm.aliasing_ppgtt;
Chris Wilsone1a8daa2016-04-13 17:35:13 +0100762
Chris Wilsonf9326be2016-04-28 09:56:45 +0100763 if (needs_pd_load_pre(ppgtt, engine, to)) {
Chris Wilsone1a8daa2016-04-13 17:35:13 +0100764 int ret;
765
766 trace_switch_mm(engine, to);
Chris Wilsonf9326be2016-04-28 09:56:45 +0100767 ret = ppgtt->switch_mm(ppgtt, req);
Chris Wilsone1a8daa2016-04-13 17:35:13 +0100768 if (ret)
769 return ret;
770
Chris Wilsonf9326be2016-04-28 09:56:45 +0100771 ppgtt->pd_dirty_rings &= ~intel_engine_flag(engine);
Chris Wilsone1a8daa2016-04-13 17:35:13 +0100772 }
773
Ben Widawskyc4829722013-12-06 14:11:20 -0800774 return 0;
Mika Kuoppalaa95f6a02014-03-14 16:22:10 +0200775 }
Ben Widawskyc4829722013-12-06 14:11:20 -0800776
Chris Wilsone1a8daa2016-04-13 17:35:13 +0100777 return do_rcs_switch(req);
Ben Widawskye0556842012-06-04 14:42:46 -0700778}
Ben Widawsky84624812012-06-04 14:42:54 -0700779
Chris Wilsonf131e352016-12-29 14:40:37 +0000780static bool engine_has_kernel_context(struct intel_engine_cs *engine)
781{
782 struct i915_gem_timeline *timeline;
783
784 list_for_each_entry(timeline, &engine->i915->gt.timelines, link) {
785 struct intel_timeline *tl;
786
787 if (timeline == &engine->i915->gt.global_timeline)
788 continue;
789
790 tl = &timeline->engine[engine->id];
791 if (i915_gem_active_peek(&tl->last_request,
792 &engine->i915->drm.struct_mutex))
793 return false;
794 }
795
796 return (!engine->last_retired_context ||
797 i915_gem_context_is_kernel(engine->last_retired_context));
798}
799
Chris Wilson945657b2016-07-15 14:56:19 +0100800int i915_gem_switch_to_kernel_context(struct drm_i915_private *dev_priv)
801{
802 struct intel_engine_cs *engine;
Chris Wilson3033aca2016-10-28 13:58:47 +0100803 struct i915_gem_timeline *timeline;
Akash Goel3b3f1652016-10-13 22:44:48 +0530804 enum intel_engine_id id;
Chris Wilson945657b2016-07-15 14:56:19 +0100805
Chris Wilson3033aca2016-10-28 13:58:47 +0100806 lockdep_assert_held(&dev_priv->drm.struct_mutex);
807
Chris Wilsonf131e352016-12-29 14:40:37 +0000808 i915_gem_retire_requests(dev_priv);
809
Akash Goel3b3f1652016-10-13 22:44:48 +0530810 for_each_engine(engine, dev_priv, id) {
Chris Wilson945657b2016-07-15 14:56:19 +0100811 struct drm_i915_gem_request *req;
812 int ret;
813
Chris Wilsonf131e352016-12-29 14:40:37 +0000814 if (engine_has_kernel_context(engine))
815 continue;
816
Chris Wilson945657b2016-07-15 14:56:19 +0100817 req = i915_gem_request_alloc(engine, dev_priv->kernel_context);
818 if (IS_ERR(req))
819 return PTR_ERR(req);
820
Chris Wilson3033aca2016-10-28 13:58:47 +0100821 /* Queue this switch after all other activity */
822 list_for_each_entry(timeline, &dev_priv->gt.timelines, link) {
823 struct drm_i915_gem_request *prev;
824 struct intel_timeline *tl;
825
826 tl = &timeline->engine[engine->id];
827 prev = i915_gem_active_raw(&tl->last_request,
828 &dev_priv->drm.struct_mutex);
829 if (prev)
830 i915_sw_fence_await_sw_fence_gfp(&req->submit,
831 &prev->submit,
832 GFP_KERNEL);
833 }
834
Chris Wilson5b043f42016-08-02 22:50:38 +0100835 ret = i915_switch_context(req);
Chris Wilsone642c852017-03-17 11:47:09 +0000836 i915_add_request(req);
Chris Wilson945657b2016-07-15 14:56:19 +0100837 if (ret)
838 return ret;
839 }
840
841 return 0;
842}
843
Mika Kuoppalab083a082016-11-18 15:10:47 +0200844static bool client_is_banned(struct drm_i915_file_private *file_priv)
845{
846 return file_priv->context_bans > I915_MAX_CLIENT_CONTEXT_BANS;
847}
848
Ben Widawsky84624812012-06-04 14:42:54 -0700849int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
850 struct drm_file *file)
851{
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300852 struct drm_i915_private *dev_priv = to_i915(dev);
Ben Widawsky84624812012-06-04 14:42:54 -0700853 struct drm_i915_gem_context_create *args = data;
854 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsone2efd132016-05-24 14:53:34 +0100855 struct i915_gem_context *ctx;
Ben Widawsky84624812012-06-04 14:42:54 -0700856 int ret;
857
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300858 if (!dev_priv->engine[RCS]->context_size)
Daniel Vetter5fa8be62012-06-19 17:16:01 +0200859 return -ENODEV;
860
Chris Wilsonb31e5132016-02-05 16:45:59 +0000861 if (args->pad != 0)
862 return -EINVAL;
863
Mika Kuoppalab083a082016-11-18 15:10:47 +0200864 if (client_is_banned(file_priv)) {
865 DRM_DEBUG("client %s[%d] banned from creating ctx\n",
866 current->comm,
867 pid_nr(get_task_pid(current, PIDTYPE_PID)));
868
869 return -EIO;
870 }
871
Ben Widawsky84624812012-06-04 14:42:54 -0700872 ret = i915_mutex_lock_interruptible(dev);
873 if (ret)
874 return ret;
875
Joonas Lahtinen63ffbcd2017-04-28 10:53:36 +0300876 ctx = i915_gem_create_context(dev_priv, file_priv);
Ben Widawsky84624812012-06-04 14:42:54 -0700877 mutex_unlock(&dev->struct_mutex);
Dan Carpenterbe636382012-07-17 09:44:49 +0300878 if (IS_ERR(ctx))
879 return PTR_ERR(ctx);
Ben Widawsky84624812012-06-04 14:42:54 -0700880
Chris Wilson984ff29f2017-01-06 15:20:13 +0000881 GEM_BUG_ON(i915_gem_context_is_kernel(ctx));
882
Oscar Mateo821d66d2014-07-03 16:28:00 +0100883 args->ctx_id = ctx->user_handle;
Chris Wilsonb84cf532016-11-21 11:31:09 +0000884 DRM_DEBUG("HW context %d created\n", args->ctx_id);
Ben Widawsky84624812012-06-04 14:42:54 -0700885
Dan Carpenterbe636382012-07-17 09:44:49 +0300886 return 0;
Ben Widawsky84624812012-06-04 14:42:54 -0700887}
888
889int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
890 struct drm_file *file)
891{
892 struct drm_i915_gem_context_destroy *args = data;
893 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsone2efd132016-05-24 14:53:34 +0100894 struct i915_gem_context *ctx;
Ben Widawsky84624812012-06-04 14:42:54 -0700895 int ret;
896
Chris Wilsonb31e5132016-02-05 16:45:59 +0000897 if (args->pad != 0)
898 return -EINVAL;
899
Oscar Mateo821d66d2014-07-03 16:28:00 +0100900 if (args->ctx_id == DEFAULT_CONTEXT_HANDLE)
Ben Widawskyc2cf2412013-12-24 16:02:54 -0800901 return -ENOENT;
Ben Widawsky0eea67e2013-12-06 14:11:19 -0800902
Ben Widawsky84624812012-06-04 14:42:54 -0700903 ret = i915_mutex_lock_interruptible(dev);
904 if (ret)
905 return ret;
906
Chris Wilsonca585b52016-05-24 14:53:36 +0100907 ctx = i915_gem_context_lookup(file_priv, args->ctx_id);
Ben Widawsky72ad5c42014-01-02 19:50:27 -1000908 if (IS_ERR(ctx)) {
Ben Widawsky84624812012-06-04 14:42:54 -0700909 mutex_unlock(&dev->struct_mutex);
Ben Widawsky72ad5c42014-01-02 19:50:27 -1000910 return PTR_ERR(ctx);
Ben Widawsky84624812012-06-04 14:42:54 -0700911 }
912
Joonas Lahtinen6d1f9fb2017-02-09 13:34:25 +0200913 __destroy_hw_context(ctx, file_priv);
Ben Widawsky84624812012-06-04 14:42:54 -0700914 mutex_unlock(&dev->struct_mutex);
915
Chris Wilsonb84cf532016-11-21 11:31:09 +0000916 DRM_DEBUG("HW context %d destroyed\n", args->ctx_id);
Ben Widawsky84624812012-06-04 14:42:54 -0700917 return 0;
918}
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800919
920int i915_gem_context_getparam_ioctl(struct drm_device *dev, void *data,
921 struct drm_file *file)
922{
923 struct drm_i915_file_private *file_priv = file->driver_priv;
924 struct drm_i915_gem_context_param *args = data;
Chris Wilsone2efd132016-05-24 14:53:34 +0100925 struct i915_gem_context *ctx;
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800926 int ret;
927
928 ret = i915_mutex_lock_interruptible(dev);
929 if (ret)
930 return ret;
931
Chris Wilsonca585b52016-05-24 14:53:36 +0100932 ctx = i915_gem_context_lookup(file_priv, args->ctx_id);
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800933 if (IS_ERR(ctx)) {
934 mutex_unlock(&dev->struct_mutex);
935 return PTR_ERR(ctx);
936 }
937
938 args->size = 0;
939 switch (args->param) {
940 case I915_CONTEXT_PARAM_BAN_PERIOD:
Mika Kuoppala84102172016-11-16 17:20:32 +0200941 ret = -EINVAL;
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800942 break;
David Weinehallb1b38272015-05-20 17:00:13 +0300943 case I915_CONTEXT_PARAM_NO_ZEROMAP:
944 args->value = ctx->flags & CONTEXT_NO_ZEROMAP;
945 break;
Chris Wilsonfa8848f2015-10-14 14:17:11 +0100946 case I915_CONTEXT_PARAM_GTT_SIZE:
947 if (ctx->ppgtt)
948 args->value = ctx->ppgtt->base.total;
949 else if (to_i915(dev)->mm.aliasing_ppgtt)
950 args->value = to_i915(dev)->mm.aliasing_ppgtt->base.total;
951 else
Joonas Lahtinen62106b42016-03-18 10:42:57 +0200952 args->value = to_i915(dev)->ggtt.base.total;
Chris Wilsonfa8848f2015-10-14 14:17:11 +0100953 break;
Chris Wilsonbc3d6742016-07-04 08:08:39 +0100954 case I915_CONTEXT_PARAM_NO_ERROR_CAPTURE:
Chris Wilson60958682016-12-31 11:20:11 +0000955 args->value = i915_gem_context_no_error_capture(ctx);
Chris Wilsonbc3d6742016-07-04 08:08:39 +0100956 break;
Mika Kuoppala84102172016-11-16 17:20:32 +0200957 case I915_CONTEXT_PARAM_BANNABLE:
Chris Wilson60958682016-12-31 11:20:11 +0000958 args->value = i915_gem_context_is_bannable(ctx);
Mika Kuoppala84102172016-11-16 17:20:32 +0200959 break;
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800960 default:
961 ret = -EINVAL;
962 break;
963 }
964 mutex_unlock(&dev->struct_mutex);
965
966 return ret;
967}
968
969int i915_gem_context_setparam_ioctl(struct drm_device *dev, void *data,
970 struct drm_file *file)
971{
972 struct drm_i915_file_private *file_priv = file->driver_priv;
973 struct drm_i915_gem_context_param *args = data;
Chris Wilsone2efd132016-05-24 14:53:34 +0100974 struct i915_gem_context *ctx;
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800975 int ret;
976
977 ret = i915_mutex_lock_interruptible(dev);
978 if (ret)
979 return ret;
980
Chris Wilsonca585b52016-05-24 14:53:36 +0100981 ctx = i915_gem_context_lookup(file_priv, args->ctx_id);
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800982 if (IS_ERR(ctx)) {
983 mutex_unlock(&dev->struct_mutex);
984 return PTR_ERR(ctx);
985 }
986
987 switch (args->param) {
988 case I915_CONTEXT_PARAM_BAN_PERIOD:
Mika Kuoppala84102172016-11-16 17:20:32 +0200989 ret = -EINVAL;
Chris Wilsonc9dc0f32014-12-24 08:13:40 -0800990 break;
David Weinehallb1b38272015-05-20 17:00:13 +0300991 case I915_CONTEXT_PARAM_NO_ZEROMAP:
992 if (args->size) {
993 ret = -EINVAL;
994 } else {
995 ctx->flags &= ~CONTEXT_NO_ZEROMAP;
996 ctx->flags |= args->value ? CONTEXT_NO_ZEROMAP : 0;
997 }
998 break;
Chris Wilsonbc3d6742016-07-04 08:08:39 +0100999 case I915_CONTEXT_PARAM_NO_ERROR_CAPTURE:
Chris Wilson60958682016-12-31 11:20:11 +00001000 if (args->size)
Chris Wilsonbc3d6742016-07-04 08:08:39 +01001001 ret = -EINVAL;
Chris Wilson60958682016-12-31 11:20:11 +00001002 else if (args->value)
1003 i915_gem_context_set_no_error_capture(ctx);
1004 else
1005 i915_gem_context_clear_no_error_capture(ctx);
Chris Wilsonbc3d6742016-07-04 08:08:39 +01001006 break;
Mika Kuoppala84102172016-11-16 17:20:32 +02001007 case I915_CONTEXT_PARAM_BANNABLE:
1008 if (args->size)
1009 ret = -EINVAL;
1010 else if (!capable(CAP_SYS_ADMIN) && !args->value)
1011 ret = -EPERM;
Chris Wilson60958682016-12-31 11:20:11 +00001012 else if (args->value)
1013 i915_gem_context_set_bannable(ctx);
Mika Kuoppala84102172016-11-16 17:20:32 +02001014 else
Chris Wilson60958682016-12-31 11:20:11 +00001015 i915_gem_context_clear_bannable(ctx);
Mika Kuoppala84102172016-11-16 17:20:32 +02001016 break;
Chris Wilsonc9dc0f32014-12-24 08:13:40 -08001017 default:
1018 ret = -EINVAL;
1019 break;
1020 }
1021 mutex_unlock(&dev->struct_mutex);
1022
1023 return ret;
1024}
Chris Wilsond5387042016-05-13 11:57:19 +01001025
1026int i915_gem_context_reset_stats_ioctl(struct drm_device *dev,
1027 void *data, struct drm_file *file)
1028{
Chris Wilsonfac5e232016-07-04 11:34:36 +01001029 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsond5387042016-05-13 11:57:19 +01001030 struct drm_i915_reset_stats *args = data;
Chris Wilsone2efd132016-05-24 14:53:34 +01001031 struct i915_gem_context *ctx;
Chris Wilsond5387042016-05-13 11:57:19 +01001032 int ret;
1033
1034 if (args->flags || args->pad)
1035 return -EINVAL;
1036
1037 if (args->ctx_id == DEFAULT_CONTEXT_HANDLE && !capable(CAP_SYS_ADMIN))
1038 return -EPERM;
1039
Chris Wilsonbdb04612016-05-13 11:57:20 +01001040 ret = i915_mutex_lock_interruptible(dev);
Chris Wilsond5387042016-05-13 11:57:19 +01001041 if (ret)
1042 return ret;
1043
Chris Wilsonca585b52016-05-24 14:53:36 +01001044 ctx = i915_gem_context_lookup(file->driver_priv, args->ctx_id);
Chris Wilsond5387042016-05-13 11:57:19 +01001045 if (IS_ERR(ctx)) {
1046 mutex_unlock(&dev->struct_mutex);
1047 return PTR_ERR(ctx);
1048 }
Chris Wilsond5387042016-05-13 11:57:19 +01001049
1050 if (capable(CAP_SYS_ADMIN))
1051 args->reset_count = i915_reset_count(&dev_priv->gpu_error);
1052 else
1053 args->reset_count = 0;
1054
Mika Kuoppalabc1d53c2016-11-16 17:20:34 +02001055 args->batch_active = ctx->guilty_count;
1056 args->batch_pending = ctx->active_count;
Chris Wilsond5387042016-05-13 11:57:19 +01001057
1058 mutex_unlock(&dev->struct_mutex);
1059
1060 return 0;
1061}
Chris Wilson0daf0112017-02-13 17:15:19 +00001062
1063#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
1064#include "selftests/mock_context.c"
Chris Wilson791ff392017-02-13 17:15:49 +00001065#include "selftests/i915_gem_context.c"
Chris Wilson0daf0112017-02-13 17:15:19 +00001066#endif