]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blob - drivers/gpu/drm/i915/i915_gem_context.c
drm/i915: Get context early in execbuf
[mirror_ubuntu-hirsute-kernel.git] / drivers / gpu / drm / i915 / i915_gem_context.c
1 /*
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
76 * GPU. The GPU has loaded its state already and has stored away the gtt
77 * 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
88 #include <drm/drmP.h>
89 #include <drm/i915_drm.h>
90 #include "i915_drv.h"
91
92 /* This is a HW constraint. The value below is the largest known requirement
93 * I've seen in a spec to date, and that was a workaround for a non-shipping
94 * part. It should be safe to decrease this, but it's more future proof as is.
95 */
96 #define GEN6_CONTEXT_ALIGN (64<<10)
97 #define GEN7_CONTEXT_ALIGN 4096
98
99 static int do_switch(struct intel_ring_buffer *ring,
100 struct i915_hw_context *to);
101
102 static size_t get_context_alignment(struct drm_device *dev)
103 {
104 if (IS_GEN6(dev))
105 return GEN6_CONTEXT_ALIGN;
106
107 return GEN7_CONTEXT_ALIGN;
108 }
109
110 static int get_context_size(struct drm_device *dev)
111 {
112 struct drm_i915_private *dev_priv = dev->dev_private;
113 int ret;
114 u32 reg;
115
116 switch (INTEL_INFO(dev)->gen) {
117 case 6:
118 reg = I915_READ(CXT_SIZE);
119 ret = GEN6_CXT_TOTAL_SIZE(reg) * 64;
120 break;
121 case 7:
122 reg = I915_READ(GEN7_CXT_SIZE);
123 if (IS_HASWELL(dev))
124 ret = HSW_CXT_TOTAL_SIZE;
125 else
126 ret = GEN7_CXT_TOTAL_SIZE(reg) * 64;
127 break;
128 case 8:
129 ret = GEN8_CXT_TOTAL_SIZE;
130 break;
131 default:
132 BUG();
133 }
134
135 return ret;
136 }
137
138 void i915_gem_context_free(struct kref *ctx_ref)
139 {
140 struct i915_hw_context *ctx = container_of(ctx_ref,
141 typeof(*ctx), ref);
142 struct i915_hw_ppgtt *ppgtt = NULL;
143
144 /* We refcount even the aliasing PPGTT to keep the code symmetric */
145 if (USES_ALIASING_PPGTT(ctx->obj->base.dev))
146 ppgtt = ctx_to_ppgtt(ctx);
147
148 /* XXX: Free up the object before tearing down the address space, in
149 * case we're bound in the PPGTT */
150 drm_gem_object_unreference(&ctx->obj->base);
151
152 if (ppgtt)
153 kref_put(&ppgtt->ref, ppgtt_release);
154 list_del(&ctx->link);
155 kfree(ctx);
156 }
157
158 static struct i915_hw_ppgtt *
159 create_vm_for_ctx(struct drm_device *dev, struct i915_hw_context *ctx)
160 {
161 struct i915_hw_ppgtt *ppgtt;
162 int ret;
163
164 ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
165 if (!ppgtt)
166 return ERR_PTR(-ENOMEM);
167
168 ret = i915_gem_init_ppgtt(dev, ppgtt);
169 if (ret) {
170 kfree(ppgtt);
171 return ERR_PTR(ret);
172 }
173
174 return ppgtt;
175 }
176
177 static struct i915_hw_context *
178 __create_hw_context(struct drm_device *dev,
179 struct drm_i915_file_private *file_priv)
180 {
181 struct drm_i915_private *dev_priv = dev->dev_private;
182 struct i915_hw_context *ctx;
183 int ret;
184
185 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
186 if (ctx == NULL)
187 return ERR_PTR(-ENOMEM);
188
189 kref_init(&ctx->ref);
190 ctx->obj = i915_gem_alloc_object(dev, dev_priv->hw_context_size);
191 INIT_LIST_HEAD(&ctx->link);
192 if (ctx->obj == NULL) {
193 kfree(ctx);
194 DRM_DEBUG_DRIVER("Context object allocated failed\n");
195 return ERR_PTR(-ENOMEM);
196 }
197
198 if (INTEL_INFO(dev)->gen >= 7) {
199 ret = i915_gem_object_set_cache_level(ctx->obj,
200 I915_CACHE_L3_LLC);
201 /* Failure shouldn't ever happen this early */
202 if (WARN_ON(ret))
203 goto err_out;
204 }
205
206 list_add_tail(&ctx->link, &dev_priv->context_list);
207
208 /* Default context will never have a file_priv */
209 if (file_priv == NULL)
210 return ctx;
211
212 ret = idr_alloc(&file_priv->context_idr, ctx, DEFAULT_CONTEXT_ID, 0,
213 GFP_KERNEL);
214 if (ret < 0)
215 goto err_out;
216
217 ctx->file_priv = file_priv;
218 ctx->id = ret;
219 /* NB: Mark all slices as needing a remap so that when the context first
220 * loads it will restore whatever remap state already exists. If there
221 * is no remap info, it will be a NOP. */
222 ctx->remap_slice = (1 << NUM_L3_SLICES(dev)) - 1;
223
224 return ctx;
225
226 err_out:
227 i915_gem_context_unreference(ctx);
228 return ERR_PTR(ret);
229 }
230
231 static inline bool is_default_context(struct i915_hw_context *ctx)
232 {
233 return (ctx->id == DEFAULT_CONTEXT_ID);
234 }
235
236 /**
237 * The default context needs to exist per ring that uses contexts. It stores the
238 * context state of the GPU for applications that don't utilize HW contexts, as
239 * well as an idle case.
240 */
241 static struct i915_hw_context *
242 i915_gem_create_context(struct drm_device *dev,
243 struct drm_i915_file_private *file_priv,
244 bool create_vm)
245 {
246 struct drm_i915_private *dev_priv = dev->dev_private;
247 struct i915_hw_context *ctx;
248 int ret = 0;
249
250 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
251
252 ctx = __create_hw_context(dev, file_priv);
253 if (IS_ERR(ctx))
254 return ctx;
255
256 if (create_vm) {
257 struct i915_hw_ppgtt *ppgtt = create_vm_for_ctx(dev, ctx);
258
259 if (IS_ERR_OR_NULL(ppgtt)) {
260 DRM_DEBUG_DRIVER("PPGTT setup failed (%ld)\n",
261 PTR_ERR(ppgtt));
262 ret = PTR_ERR(ppgtt);
263 goto err_destroy;
264 } else
265 ctx->vm = &ppgtt->base;
266
267 /* This case is reserved for the global default context and
268 * should only happen once. */
269 if (!file_priv) {
270 if (WARN_ON(dev_priv->mm.aliasing_ppgtt)) {
271 ret = -EEXIST;
272 goto err_destroy;
273 }
274
275 dev_priv->mm.aliasing_ppgtt = ppgtt;
276
277 /* We may need to do things with the shrinker which
278 * require us to immediately switch back to the default
279 * context. This can cause a problem as pinning the
280 * default context also requires GTT space which may not
281 * be available. To avoid this we always pin the default
282 * context.
283 */
284 ret = i915_gem_obj_ggtt_pin(ctx->obj,
285 get_context_alignment(dev),
286 false, false);
287 if (ret) {
288 DRM_DEBUG_DRIVER("Couldn't pin %d\n", ret);
289 goto err_destroy;
290 }
291 }
292 } else if (USES_ALIASING_PPGTT(dev)) {
293 /* For platforms which only have aliasing PPGTT, we fake the
294 * address space and refcounting. */
295 kref_get(&dev_priv->mm.aliasing_ppgtt->ref);
296 }
297
298 /* TODO: Until full ppgtt... */
299 if (USES_ALIASING_PPGTT(dev))
300 ctx->vm = &dev_priv->mm.aliasing_ppgtt->base;
301 else
302 ctx->vm = &dev_priv->gtt.base;
303
304 return ctx;
305
306 err_destroy:
307 i915_gem_context_unreference(ctx);
308 return ERR_PTR(ret);
309 }
310
311 void i915_gem_context_reset(struct drm_device *dev)
312 {
313 struct drm_i915_private *dev_priv = dev->dev_private;
314 struct intel_ring_buffer *ring;
315 int i;
316
317 if (!HAS_HW_CONTEXTS(dev))
318 return;
319
320 /* Prevent the hardware from restoring the last context (which hung) on
321 * the next switch */
322 for (i = 0; i < I915_NUM_RINGS; i++) {
323 struct i915_hw_context *dctx;
324 if (!(INTEL_INFO(dev)->ring_mask & (1<<i)))
325 continue;
326
327 /* Do a fake switch to the default context */
328 ring = &dev_priv->ring[i];
329 dctx = ring->default_context;
330 if (WARN_ON(!dctx))
331 continue;
332
333 if (!ring->last_context)
334 continue;
335
336 if (ring->last_context == dctx)
337 continue;
338
339 if (i == RCS) {
340 WARN_ON(i915_gem_obj_ggtt_pin(dctx->obj,
341 get_context_alignment(dev),
342 false, false));
343 /* Fake a finish/inactive */
344 dctx->obj->base.write_domain = 0;
345 dctx->obj->active = 0;
346 }
347
348 i915_gem_context_unreference(ring->last_context);
349 i915_gem_context_reference(dctx);
350 ring->last_context = dctx;
351 }
352 }
353
354 int i915_gem_context_init(struct drm_device *dev)
355 {
356 struct drm_i915_private *dev_priv = dev->dev_private;
357 struct intel_ring_buffer *ring;
358 int i;
359
360 if (!HAS_HW_CONTEXTS(dev))
361 return 0;
362
363 /* Init should only be called once per module load. Eventually the
364 * restriction on the context_disabled check can be loosened. */
365 if (WARN_ON(dev_priv->ring[RCS].default_context))
366 return 0;
367
368 dev_priv->hw_context_size = round_up(get_context_size(dev), 4096);
369
370 if (dev_priv->hw_context_size > (1<<20)) {
371 DRM_DEBUG_DRIVER("Disabling HW Contexts; invalid size\n");
372 return -E2BIG;
373 }
374
375 dev_priv->ring[RCS].default_context =
376 i915_gem_create_context(dev, NULL, USES_ALIASING_PPGTT(dev));
377
378 if (IS_ERR_OR_NULL(dev_priv->ring[RCS].default_context)) {
379 DRM_DEBUG_DRIVER("Disabling HW Contexts; create failed %ld\n",
380 PTR_ERR(dev_priv->ring[RCS].default_context));
381 return PTR_ERR(dev_priv->ring[RCS].default_context);
382 }
383
384 for (i = RCS + 1; i < I915_NUM_RINGS; i++) {
385 if (!(INTEL_INFO(dev)->ring_mask & (1<<i)))
386 continue;
387
388 ring = &dev_priv->ring[i];
389
390 /* NB: RCS will hold a ref for all rings */
391 ring->default_context = dev_priv->ring[RCS].default_context;
392 }
393
394 DRM_DEBUG_DRIVER("HW context support initialized\n");
395 return 0;
396 }
397
398 void i915_gem_context_fini(struct drm_device *dev)
399 {
400 struct drm_i915_private *dev_priv = dev->dev_private;
401 struct i915_hw_context *dctx = dev_priv->ring[RCS].default_context;
402 int i;
403
404 if (!HAS_HW_CONTEXTS(dev))
405 return;
406
407 /* The only known way to stop the gpu from accessing the hw context is
408 * to reset it. Do this as the very last operation to avoid confusing
409 * other code, leading to spurious errors. */
410 intel_gpu_reset(dev);
411
412 /* When default context is created and switched to, base object refcount
413 * will be 2 (+1 from object creation and +1 from do_switch()).
414 * i915_gem_context_fini() will be called after gpu_idle() has switched
415 * to default context. So we need to unreference the base object once
416 * to offset the do_switch part, so that i915_gem_context_unreference()
417 * can then free the base object correctly. */
418 WARN_ON(!dev_priv->ring[RCS].last_context);
419 if (dev_priv->ring[RCS].last_context == dctx) {
420 /* Fake switch to NULL context */
421 WARN_ON(dctx->obj->active);
422 i915_gem_object_ggtt_unpin(dctx->obj);
423 i915_gem_context_unreference(dctx);
424 dev_priv->ring[RCS].last_context = NULL;
425 }
426
427 for (i = 0; i < I915_NUM_RINGS; i++) {
428 struct intel_ring_buffer *ring = &dev_priv->ring[i];
429 if (!(INTEL_INFO(dev)->ring_mask & (1<<i)))
430 continue;
431
432 if (ring->last_context)
433 i915_gem_context_unreference(ring->last_context);
434
435 ring->default_context = NULL;
436 ring->last_context = NULL;
437 }
438
439 i915_gem_object_ggtt_unpin(dctx->obj);
440 i915_gem_context_unreference(dctx);
441 dev_priv->mm.aliasing_ppgtt = NULL;
442 }
443
444 int i915_gem_context_enable(struct drm_i915_private *dev_priv)
445 {
446 struct intel_ring_buffer *ring;
447 int ret, i;
448
449 if (!HAS_HW_CONTEXTS(dev_priv->dev))
450 return 0;
451
452 /* This is the only place the aliasing PPGTT gets enabled, which means
453 * it has to happen before we bail on reset */
454 if (dev_priv->mm.aliasing_ppgtt) {
455 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
456 ppgtt->enable(ppgtt);
457 }
458
459 /* FIXME: We should make this work, even in reset */
460 if (i915_reset_in_progress(&dev_priv->gpu_error))
461 return 0;
462
463 BUG_ON(!dev_priv->ring[RCS].default_context);
464
465 for_each_ring(ring, dev_priv, i) {
466 ret = do_switch(ring, ring->default_context);
467 if (ret)
468 return ret;
469 }
470
471 return 0;
472 }
473
474 static int context_idr_cleanup(int id, void *p, void *data)
475 {
476 struct i915_hw_context *ctx = p;
477
478 /* Ignore the default context because close will handle it */
479 if (is_default_context(ctx))
480 return 0;
481
482 i915_gem_context_unreference(ctx);
483 return 0;
484 }
485
486 int i915_gem_context_open(struct drm_device *dev, struct drm_file *file)
487 {
488 struct drm_i915_file_private *file_priv = file->driver_priv;
489 struct drm_i915_private *dev_priv = dev->dev_private;
490
491 if (!HAS_HW_CONTEXTS(dev)) {
492 /* Cheat for hang stats */
493 file_priv->private_default_ctx =
494 kzalloc(sizeof(struct i915_hw_context), GFP_KERNEL);
495 file_priv->private_default_ctx->vm = &dev_priv->gtt.base;
496 return 0;
497 }
498
499 idr_init(&file_priv->context_idr);
500
501 mutex_lock(&dev->struct_mutex);
502 file_priv->private_default_ctx =
503 i915_gem_create_context(dev, file_priv, false);
504 mutex_unlock(&dev->struct_mutex);
505
506 if (IS_ERR(file_priv->private_default_ctx)) {
507 idr_destroy(&file_priv->context_idr);
508 return PTR_ERR(file_priv->private_default_ctx);
509 }
510
511 return 0;
512 }
513
514 void i915_gem_context_close(struct drm_device *dev, struct drm_file *file)
515 {
516 struct drm_i915_file_private *file_priv = file->driver_priv;
517
518 if (!HAS_HW_CONTEXTS(dev)) {
519 kfree(file_priv->private_default_ctx);
520 return;
521 }
522
523 mutex_lock(&dev->struct_mutex);
524 idr_for_each(&file_priv->context_idr, context_idr_cleanup, NULL);
525 i915_gem_context_unreference(file_priv->private_default_ctx);
526 idr_destroy(&file_priv->context_idr);
527 mutex_unlock(&dev->struct_mutex);
528 }
529
530 struct i915_hw_context *
531 i915_gem_context_get(struct drm_i915_file_private *file_priv, u32 id)
532 {
533 if (!HAS_HW_CONTEXTS(file_priv->dev_priv->dev))
534 return file_priv->private_default_ctx;
535
536 return (struct i915_hw_context *)idr_find(&file_priv->context_idr, id);
537 }
538
539 static inline int
540 mi_set_context(struct intel_ring_buffer *ring,
541 struct i915_hw_context *new_context,
542 u32 hw_flags)
543 {
544 int ret;
545
546 /* w/a: If Flush TLB Invalidation Mode is enabled, driver must do a TLB
547 * invalidation prior to MI_SET_CONTEXT. On GEN6 we don't set the value
548 * explicitly, so we rely on the value at ring init, stored in
549 * itlb_before_ctx_switch.
550 */
551 if (IS_GEN6(ring->dev) && ring->itlb_before_ctx_switch) {
552 ret = ring->flush(ring, I915_GEM_GPU_DOMAINS, 0);
553 if (ret)
554 return ret;
555 }
556
557 ret = intel_ring_begin(ring, 6);
558 if (ret)
559 return ret;
560
561 /* WaProgramMiArbOnOffAroundMiSetContext:ivb,vlv,hsw */
562 if (IS_GEN7(ring->dev))
563 intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_DISABLE);
564 else
565 intel_ring_emit(ring, MI_NOOP);
566
567 intel_ring_emit(ring, MI_NOOP);
568 intel_ring_emit(ring, MI_SET_CONTEXT);
569 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(new_context->obj) |
570 MI_MM_SPACE_GTT |
571 MI_SAVE_EXT_STATE_EN |
572 MI_RESTORE_EXT_STATE_EN |
573 hw_flags);
574 /* w/a: MI_SET_CONTEXT must always be followed by MI_NOOP */
575 intel_ring_emit(ring, MI_NOOP);
576
577 if (IS_GEN7(ring->dev))
578 intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_ENABLE);
579 else
580 intel_ring_emit(ring, MI_NOOP);
581
582 intel_ring_advance(ring);
583
584 return ret;
585 }
586
587 static int do_switch(struct intel_ring_buffer *ring,
588 struct i915_hw_context *to)
589 {
590 struct drm_i915_private *dev_priv = ring->dev->dev_private;
591 struct i915_hw_context *from = ring->last_context;
592 u32 hw_flags = 0;
593 int ret, i;
594
595 if (from != NULL && ring == &dev_priv->ring[RCS]) {
596 BUG_ON(from->obj == NULL);
597 BUG_ON(!i915_gem_obj_is_pinned(from->obj));
598 }
599
600 if (from == to && from->last_ring == ring && !to->remap_slice)
601 return 0;
602
603 if (ring != &dev_priv->ring[RCS]) {
604 if (from)
605 i915_gem_context_unreference(from);
606 goto done;
607 }
608
609 ret = i915_gem_obj_ggtt_pin(to->obj, get_context_alignment(ring->dev),
610 false, false);
611 if (ret)
612 return ret;
613
614 /* Clear this page out of any CPU caches for coherent swap-in/out. Note
615 * that thanks to write = false in this call and us not setting any gpu
616 * write domains when putting a context object onto the active list
617 * (when switching away from it), this won't block.
618 * XXX: We need a real interface to do this instead of trickery. */
619 ret = i915_gem_object_set_to_gtt_domain(to->obj, false);
620 if (ret) {
621 i915_gem_object_ggtt_unpin(to->obj);
622 return ret;
623 }
624
625 if (!to->obj->has_global_gtt_mapping) {
626 struct i915_vma *vma = i915_gem_obj_to_vma(to->obj,
627 &dev_priv->gtt.base);
628 vma->bind_vma(vma, to->obj->cache_level, GLOBAL_BIND);
629 }
630
631 if (!to->is_initialized || is_default_context(to))
632 hw_flags |= MI_RESTORE_INHIBIT;
633
634 ret = mi_set_context(ring, to, hw_flags);
635 if (ret) {
636 i915_gem_object_ggtt_unpin(to->obj);
637 return ret;
638 }
639
640 for (i = 0; i < MAX_L3_SLICES; i++) {
641 if (!(to->remap_slice & (1<<i)))
642 continue;
643
644 ret = i915_gem_l3_remap(ring, i);
645 /* If it failed, try again next round */
646 if (ret)
647 DRM_DEBUG_DRIVER("L3 remapping failed\n");
648 else
649 to->remap_slice &= ~(1<<i);
650 }
651
652 /* The backing object for the context is done after switching to the
653 * *next* context. Therefore we cannot retire the previous context until
654 * the next context has already started running. In fact, the below code
655 * is a bit suboptimal because the retiring can occur simply after the
656 * MI_SET_CONTEXT instead of when the next seqno has completed.
657 */
658 if (from != NULL) {
659 from->obj->base.read_domains = I915_GEM_DOMAIN_INSTRUCTION;
660 i915_vma_move_to_active(i915_gem_obj_to_ggtt(from->obj), ring);
661 /* As long as MI_SET_CONTEXT is serializing, ie. it flushes the
662 * whole damn pipeline, we don't need to explicitly mark the
663 * object dirty. The only exception is that the context must be
664 * correct in case the object gets swapped out. Ideally we'd be
665 * able to defer doing this until we know the object would be
666 * swapped, but there is no way to do that yet.
667 */
668 from->obj->dirty = 1;
669 BUG_ON(from->obj->ring != ring);
670
671 /* obj is kept alive until the next request by its active ref */
672 i915_gem_object_ggtt_unpin(from->obj);
673 i915_gem_context_unreference(from);
674 }
675
676 done:
677 i915_gem_context_reference(to);
678 ring->last_context = to;
679 to->is_initialized = true;
680 to->last_ring = ring;
681
682 return 0;
683 }
684
685 /**
686 * i915_switch_context() - perform a GPU context switch.
687 * @ring: ring for which we'll execute the context switch
688 * @file_priv: file_priv associated with the context, may be NULL
689 * @id: context id number
690 *
691 * The context life cycle is simple. The context refcount is incremented and
692 * decremented by 1 and create and destroy. If the context is in use by the GPU,
693 * it will have a refoucnt > 1. This allows us to destroy the context abstract
694 * object while letting the normal object tracking destroy the backing BO.
695 */
696 int i915_switch_context(struct intel_ring_buffer *ring,
697 struct drm_file *file,
698 struct i915_hw_context *to)
699 {
700 struct drm_i915_private *dev_priv = ring->dev->dev_private;
701
702 WARN_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
703
704 BUG_ON(file && to == NULL);
705
706 /* We have the fake context, but don't supports switching. */
707 if (!HAS_HW_CONTEXTS(ring->dev))
708 return 0;
709
710 return do_switch(ring, to);
711 }
712
713 int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
714 struct drm_file *file)
715 {
716 struct drm_i915_gem_context_create *args = data;
717 struct drm_i915_file_private *file_priv = file->driver_priv;
718 struct i915_hw_context *ctx;
719 int ret;
720
721 if (!(dev->driver->driver_features & DRIVER_GEM))
722 return -ENODEV;
723
724 if (!HAS_HW_CONTEXTS(dev))
725 return -ENODEV;
726
727 ret = i915_mutex_lock_interruptible(dev);
728 if (ret)
729 return ret;
730
731 ctx = i915_gem_create_context(dev, file_priv, false);
732 mutex_unlock(&dev->struct_mutex);
733 if (IS_ERR(ctx))
734 return PTR_ERR(ctx);
735
736 args->ctx_id = ctx->id;
737 DRM_DEBUG_DRIVER("HW context %d created\n", args->ctx_id);
738
739 return 0;
740 }
741
742 int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
743 struct drm_file *file)
744 {
745 struct drm_i915_gem_context_destroy *args = data;
746 struct drm_i915_file_private *file_priv = file->driver_priv;
747 struct i915_hw_context *ctx;
748 int ret;
749
750 if (!(dev->driver->driver_features & DRIVER_GEM))
751 return -ENODEV;
752
753 if (args->ctx_id == DEFAULT_CONTEXT_ID)
754 return -EPERM;
755
756 ret = i915_mutex_lock_interruptible(dev);
757 if (ret)
758 return ret;
759
760 ctx = i915_gem_context_get(file_priv, args->ctx_id);
761 if (!ctx) {
762 mutex_unlock(&dev->struct_mutex);
763 return -ENOENT;
764 }
765
766 idr_remove(&ctx->file_priv->context_idr, ctx->id);
767 i915_gem_context_unreference(ctx);
768 mutex_unlock(&dev->struct_mutex);
769
770 DRM_DEBUG_DRIVER("HW context %d destroyed\n", args->ctx_id);
771 return 0;
772 }