intel_context.c 7.0 KB
Newer Older
1 2 3 4 5 6
/*
 * SPDX-License-Identifier: MIT
 *
 * Copyright © 2019 Intel Corporation
 */

7 8 9
#include "gem/i915_gem_context.h"
#include "gem/i915_gem_pm.h"

10 11
#include "i915_drv.h"
#include "i915_globals.h"
12

13
#include "intel_context.h"
14
#include "intel_engine.h"
15
#include "intel_engine_pm.h"
16 17 18 19 20 21

static struct i915_global_context {
	struct i915_global base;
	struct kmem_cache *slab_ce;
} global;

22
static struct intel_context *intel_context_alloc(void)
23 24 25 26 27 28 29 30 31 32
{
	return kmem_cache_zalloc(global.slab_ce, GFP_KERNEL);
}

void intel_context_free(struct intel_context *ce)
{
	kmem_cache_free(global.slab_ce, ce);
}

struct intel_context *
33
intel_context_create(struct i915_gem_context *ctx,
34 35
		     struct intel_engine_cs *engine)
{
36
	struct intel_context *ce;
37 38 39 40 41 42

	ce = intel_context_alloc();
	if (!ce)
		return ERR_PTR(-ENOMEM);

	intel_context_init(ce, ctx, engine);
43
	return ce;
44 45
}

46 47 48
int __intel_context_do_pin(struct intel_context *ce)
{
	int err;
49 50

	if (mutex_lock_interruptible(&ce->pin_mutex))
51
		return -EINTR;
52 53

	if (likely(!atomic_read(&ce->pin_count))) {
54 55
		intel_wakeref_t wakeref;

56 57 58 59 60 61 62 63
		if (unlikely(!test_bit(CONTEXT_ALLOC_BIT, &ce->flags))) {
			err = ce->ops->alloc(ce);
			if (unlikely(err))
				goto err;

			__set_bit(CONTEXT_ALLOC_BIT, &ce->flags);
		}

64
		err = 0;
65
		with_intel_runtime_pm(&ce->engine->i915->runtime_pm, wakeref)
66
			err = ce->ops->pin(ce);
67
		if (err)
68
			goto err;
69

70 71 72 73
		GEM_TRACE("%s context:%llx pin ring:{head:%04x, tail:%04x}\n",
			  ce->engine->name, ce->ring->timeline->fence_context,
			  ce->ring->head, ce->ring->tail);

74
		i915_gem_context_get(ce->gem_context); /* for ctx->ppgtt */
75

76
		smp_mb__before_atomic(); /* flush pin before it is visible */
77 78
	}

79 80 81 82
	atomic_inc(&ce->pin_count);
	GEM_BUG_ON(!intel_context_is_pinned(ce)); /* no overflow! */

	mutex_unlock(&ce->pin_mutex);
83
	return 0;
84

85 86
err:
	mutex_unlock(&ce->pin_mutex);
87
	return err;
88 89
}

90 91 92 93 94 95
void intel_context_unpin(struct intel_context *ce)
{
	if (likely(atomic_add_unless(&ce->pin_count, -1, 1)))
		return;

	/* We may be called from inside intel_context_pin() to evict another */
96
	intel_context_get(ce);
97 98
	mutex_lock_nested(&ce->pin_mutex, SINGLE_DEPTH_NESTING);

99
	if (likely(atomic_dec_and_test(&ce->pin_count))) {
100 101 102
		GEM_TRACE("%s context:%llx retire\n",
			  ce->engine->name, ce->ring->timeline->fence_context);

103 104
		ce->ops->unpin(ce);

105
		i915_gem_context_put(ce->gem_context);
106
		intel_context_active_release(ce);
107 108
	}

109
	mutex_unlock(&ce->pin_mutex);
110
	intel_context_put(ce);
111 112
}

113
static int __context_pin_state(struct i915_vma *vma)
114
{
115
	u64 flags;
116
	int err;
117

118 119 120 121
	flags = i915_ggtt_pin_bias(vma) | PIN_OFFSET_BIAS;
	flags |= PIN_HIGH | PIN_GLOBAL;

	err = i915_vma_pin(vma, 0, 0, flags);
122 123 124 125 126 127 128
	if (err)
		return err;

	/*
	 * And mark it as a globally pinned object to let the shrinker know
	 * it cannot reclaim the object until we release it.
	 */
129
	i915_vma_make_unshrinkable(vma);
130 131 132 133 134 135 136 137
	vma->obj->mm.dirty = true;

	return 0;
}

static void __context_unpin_state(struct i915_vma *vma)
{
	__i915_vma_unpin(vma);
138
	i915_vma_make_shrinkable(vma);
139 140
}

141
static void __intel_context_retire(struct i915_active *active)
142 143 144
{
	struct intel_context *ce = container_of(active, typeof(*ce), active);

145 146 147
	GEM_TRACE("%s context:%llx retire\n",
		  ce->engine->name, ce->ring->timeline->fence_context);

148 149 150
	if (ce->state)
		__context_unpin_state(ce->state);

151
	intel_ring_unpin(ce->ring);
152
	intel_context_put(ce);
153 154
}

155
static int __intel_context_active(struct i915_active *active)
156
{
157
	struct intel_context *ce = container_of(active, typeof(*ce), active);
158 159 160 161
	int err;

	intel_context_get(ce);

162 163 164 165
	err = intel_ring_pin(ce->ring);
	if (err)
		goto err_put;

166 167 168
	if (!ce->state)
		return 0;

169
	err = __context_pin_state(ce->state);
170 171
	if (err)
		goto err_ring;
172

173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
	return 0;

err_ring:
	intel_ring_unpin(ce->ring);
err_put:
	intel_context_put(ce);
	return err;
}

int intel_context_active_acquire(struct intel_context *ce)
{
	int err;

	err = i915_active_acquire(&ce->active);
	if (err)
		return err;

190 191 192 193
	/* Preallocate tracking nodes */
	if (!i915_gem_context_is_kernel(ce->gem_context)) {
		err = i915_active_acquire_preallocate_barrier(&ce->active,
							      ce->engine);
194 195 196 197
		if (err) {
			i915_active_release(&ce->active);
			return err;
		}
198 199 200
	}

	return 0;
201
}
202

203 204 205 206 207
void intel_context_active_release(struct intel_context *ce)
{
	/* Nodes preallocated in intel_context_active() */
	i915_active_acquire_barrier(&ce->active);
	i915_active_release(&ce->active);
208 209
}

210 211 212 213
void
intel_context_init(struct intel_context *ce,
		   struct i915_gem_context *ctx,
		   struct intel_engine_cs *engine)
214
{
215 216 217 218 219
	GEM_BUG_ON(!engine->cops);

	kref_init(&ce->ref);

	ce->gem_context = ctx;
220 221
	ce->vm = i915_vm_get(ctx->vm ?: &engine->gt->ggtt->vm);

222 223 224
	ce->engine = engine;
	ce->ops = engine->cops;
	ce->sseu = engine->sseu;
225
	ce->ring = __intel_context_ring_size(SZ_16K);
226 227 228 229 230 231 232 233

	INIT_LIST_HEAD(&ce->signal_link);
	INIT_LIST_HEAD(&ce->signals);

	mutex_init(&ce->pin_mutex);

	i915_active_init(ctx->i915, &ce->active,
			 __intel_context_active, __intel_context_retire);
234 235
}

236 237
void intel_context_fini(struct intel_context *ce)
{
238 239
	i915_vm_put(ce->vm);

240 241 242 243
	mutex_destroy(&ce->pin_mutex);
	i915_active_fini(&ce->active);
}

244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
static void i915_global_context_shrink(void)
{
	kmem_cache_shrink(global.slab_ce);
}

static void i915_global_context_exit(void)
{
	kmem_cache_destroy(global.slab_ce);
}

static struct i915_global_context global = { {
	.shrink = i915_global_context_shrink,
	.exit = i915_global_context_exit,
} };

int __init i915_global_context_init(void)
{
	global.slab_ce = KMEM_CACHE(intel_context, SLAB_HWCACHE_ALIGN);
	if (!global.slab_ce)
		return -ENOMEM;

	i915_global_register(&global.base);
	return 0;
}
268 269 270

void intel_context_enter_engine(struct intel_context *ce)
{
271
	intel_engine_pm_get(ce->engine);
272 273 274 275
}

void intel_context_exit_engine(struct intel_context *ce)
{
276
	intel_engine_pm_put(ce->engine);
277
}
278

279 280 281 282 283 284 285 286 287
int intel_context_prepare_remote_request(struct intel_context *ce,
					 struct i915_request *rq)
{
	struct intel_timeline *tl = ce->ring->timeline;
	int err;

	/* Only suitable for use in remotely modifying this context */
	GEM_BUG_ON(rq->hw_context == ce);

288 289 290 291 292 293 294 295 296 297 298 299
	if (rq->timeline != tl) { /* beware timeline sharing */
		err = mutex_lock_interruptible_nested(&tl->mutex,
						      SINGLE_DEPTH_NESTING);
		if (err)
			return err;

		/* Queue this switch after current activity by this context. */
		err = i915_active_request_set(&tl->last_request, rq);
		if (err)
			goto unlock;
	}
	lockdep_assert_held(&tl->mutex);
300 301 302 303 304 305 306 307 308

	/*
	 * Guarantee context image and the timeline remains pinned until the
	 * modifying request is retired by setting the ce activity tracker.
	 *
	 * But we only need to take one pin on the account of it. Or in other
	 * words transfer the pinned ce object to tracked active request.
	 */
	GEM_BUG_ON(i915_active_is_idle(&ce->active));
309 310 311 312 313 314
	err = i915_active_ref(&ce->active, rq->fence.context, rq);

unlock:
	if (rq->timeline != tl)
		mutex_unlock(&tl->mutex);
	return err;
315 316
}

317 318 319 320 321 322 323 324 325 326 327 328 329 330
struct i915_request *intel_context_create_request(struct intel_context *ce)
{
	struct i915_request *rq;
	int err;

	err = intel_context_pin(ce);
	if (unlikely(err))
		return ERR_PTR(err);

	rq = i915_request_create(ce);
	intel_context_unpin(ce);

	return rq;
}
331 332 333 334

#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
#include "selftest_context.c"
#endif