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

7 8
#include <linux/debugobjects.h>

9 10
#include "gt/intel_engine_pm.h"

11 12
#include "i915_drv.h"
#include "i915_active.h"
13
#include "i915_globals.h"
14 15 16

#define BKL(ref) (&(ref)->i915->drm.struct_mutex)

17 18 19 20 21 22 23 24
/*
 * Active refs memory management
 *
 * To be more economical with memory, we reap all the i915_active trees as
 * they idle (when we know the active requests are inactive) and allocate the
 * nodes from a local slab cache to hopefully reduce the fragmentation.
 */
static struct i915_global_active {
25
	struct i915_global base;
26 27 28
	struct kmem_cache *slab_cache;
} global;

29
struct active_node {
30
	struct i915_active_request base;
31 32 33 34 35
	struct i915_active *ref;
	struct rb_node node;
	u64 timeline;
};

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM) && IS_ENABLED(CONFIG_DEBUG_OBJECTS)

static void *active_debug_hint(void *addr)
{
	struct i915_active *ref = addr;

	return (void *)ref->retire ?: (void *)ref;
}

static struct debug_obj_descr active_debug_desc = {
	.name = "i915_active",
	.debug_hint = active_debug_hint,
};

static void debug_active_init(struct i915_active *ref)
{
	debug_object_init(ref, &active_debug_desc);
}

static void debug_active_activate(struct i915_active *ref)
{
	debug_object_activate(ref, &active_debug_desc);
}

static void debug_active_deactivate(struct i915_active *ref)
{
	debug_object_deactivate(ref, &active_debug_desc);
}

static void debug_active_fini(struct i915_active *ref)
{
	debug_object_free(ref, &active_debug_desc);
}

static void debug_active_assert(struct i915_active *ref)
{
	debug_object_assert_init(ref, &active_debug_desc);
}

#else

static inline void debug_active_init(struct i915_active *ref) { }
static inline void debug_active_activate(struct i915_active *ref) { }
static inline void debug_active_deactivate(struct i915_active *ref) { }
static inline void debug_active_fini(struct i915_active *ref) { }
static inline void debug_active_assert(struct i915_active *ref) { }

#endif

85 86 87 88 89 90
static void
__active_park(struct i915_active *ref)
{
	struct active_node *it, *n;

	rbtree_postorder_for_each_entry_safe(it, n, &ref->tree, node) {
91
		GEM_BUG_ON(i915_active_request_isset(&it->base));
92
		kmem_cache_free(global.slab_cache, it);
93 94 95 96
	}
	ref->tree = RB_ROOT;
}

97 98 99 100
static void
__active_retire(struct i915_active *ref)
{
	GEM_BUG_ON(!ref->count);
101 102 103
	if (--ref->count)
		return;

104 105
	debug_active_deactivate(ref);

106 107 108 109
	/* return the unused nodes to our slabcache */
	__active_park(ref);

	ref->retire(ref);
110 111 112
}

static void
113
node_retire(struct i915_active_request *base, struct i915_request *rq)
114 115 116 117 118
{
	__active_retire(container_of(base, struct active_node, base)->ref);
}

static void
119
last_retire(struct i915_active_request *base, struct i915_request *rq)
120 121 122 123
{
	__active_retire(container_of(base, struct i915_active, last));
}

124
static struct i915_active_request *
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
active_instance(struct i915_active *ref, u64 idx)
{
	struct active_node *node;
	struct rb_node **p, *parent;
	struct i915_request *old;

	/*
	 * We track the most recently used timeline to skip a rbtree search
	 * for the common case, under typical loads we never need the rbtree
	 * at all. We can reuse the last slot if it is empty, that is
	 * after the previous activity has been retired, or if it matches the
	 * current timeline.
	 *
	 * Note that we allow the timeline to be active simultaneously in
	 * the rbtree and the last cache. We do this to avoid having
	 * to search and replace the rbtree element for a new timeline, with
	 * the cost being that we must be aware that the ref may be retired
	 * twice for the same timeline (as the older rbtree element will be
	 * retired before the new request added to last).
	 */
145
	old = i915_active_request_raw(&ref->last, BKL(ref));
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
	if (!old || old->fence.context == idx)
		goto out;

	/* Move the currently active fence into the rbtree */
	idx = old->fence.context;

	parent = NULL;
	p = &ref->tree.rb_node;
	while (*p) {
		parent = *p;

		node = rb_entry(parent, struct active_node, node);
		if (node->timeline == idx)
			goto replace;

		if (node->timeline < idx)
			p = &parent->rb_right;
		else
			p = &parent->rb_left;
	}

167
	node = kmem_cache_alloc(global.slab_cache, GFP_KERNEL);
168 169

	/* kmalloc may retire the ref->last (thanks shrinker)! */
170
	if (unlikely(!i915_active_request_raw(&ref->last, BKL(ref)))) {
171
		kmem_cache_free(global.slab_cache, node);
172 173 174 175 176 177
		goto out;
	}

	if (unlikely(!node))
		return ERR_PTR(-ENOMEM);

178
	i915_active_request_init(&node->base, NULL, node_retire);
179 180 181 182 183 184 185 186 187 188 189 190 191 192
	node->ref = ref;
	node->timeline = idx;

	rb_link_node(&node->node, parent, p);
	rb_insert_color(&node->node, &ref->tree);

replace:
	/*
	 * Overwrite the previous active slot in the rbtree with last,
	 * leaving last zeroed. If the previous slot is still active,
	 * we must be careful as we now only expect to receive one retire
	 * callback not two, and so much undo the active counting for the
	 * overwritten slot.
	 */
193
	if (i915_active_request_isset(&node->base)) {
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
		/* Retire ourselves from the old rq->active_list */
		__list_del_entry(&node->base.link);
		ref->count--;
		GEM_BUG_ON(!ref->count);
	}
	GEM_BUG_ON(list_empty(&ref->last.link));
	list_replace_init(&ref->last.link, &node->base.link);
	node->base.request = fetch_and_zero(&ref->last.request);

out:
	return &ref->last;
}

void i915_active_init(struct drm_i915_private *i915,
		      struct i915_active *ref,
		      void (*retire)(struct i915_active *ref))
{
211 212
	debug_active_init(ref);

213 214 215
	ref->i915 = i915;
	ref->retire = retire;
	ref->tree = RB_ROOT;
216
	i915_active_request_init(&ref->last, NULL, last_retire);
217
	init_llist_head(&ref->barriers);
218 219 220 221 222 223 224
	ref->count = 0;
}

int i915_active_ref(struct i915_active *ref,
		    u64 timeline,
		    struct i915_request *rq)
{
225
	struct i915_active_request *active;
226 227 228 229
	int err = 0;

	/* Prevent reaping in case we malloc/wait while building the tree */
	i915_active_acquire(ref);
230 231

	active = active_instance(ref, timeline);
232 233 234 235
	if (IS_ERR(active)) {
		err = PTR_ERR(active);
		goto out;
	}
236

237
	if (!i915_active_request_isset(active))
238
		ref->count++;
239
	__i915_active_request_set(active, rq);
240 241

	GEM_BUG_ON(!ref->count);
242 243 244
out:
	i915_active_release(ref);
	return err;
245 246 247 248
}

bool i915_active_acquire(struct i915_active *ref)
{
249
	debug_active_assert(ref);
250
	lockdep_assert_held(BKL(ref));
251 252 253 254 255 256

	if (ref->count++)
		return false;

	debug_active_activate(ref);
	return true;
257 258 259 260
}

void i915_active_release(struct i915_active *ref)
{
261
	debug_active_assert(ref);
262
	lockdep_assert_held(BKL(ref));
263

264 265 266 267 268 269 270 271 272 273 274
	__active_retire(ref);
}

int i915_active_wait(struct i915_active *ref)
{
	struct active_node *it, *n;
	int ret = 0;

	if (i915_active_acquire(ref))
		goto out_release;

275
	ret = i915_active_request_retire(&ref->last, BKL(ref));
276 277 278 279
	if (ret)
		goto out_release;

	rbtree_postorder_for_each_entry_safe(it, n, &ref->tree, node) {
280
		ret = i915_active_request_retire(&it->base, BKL(ref));
281 282 283 284 285 286 287 288 289
		if (ret)
			break;
	}

out_release:
	i915_active_release(ref);
	return ret;
}

290 291
int i915_request_await_active_request(struct i915_request *rq,
				      struct i915_active_request *active)
292 293
{
	struct i915_request *barrier =
294
		i915_active_request_raw(active, &rq->i915->drm.struct_mutex);
295 296 297 298 299 300 301

	return barrier ? i915_request_await_dma_fence(rq, &barrier->fence) : 0;
}

int i915_request_await_active(struct i915_request *rq, struct i915_active *ref)
{
	struct active_node *it, *n;
302
	int err = 0;
303

304 305 306 307 308 309 310
	/* await allocates and so we need to avoid hitting the shrinker */
	if (i915_active_acquire(ref))
		goto out; /* was idle */

	err = i915_request_await_active_request(rq, &ref->last);
	if (err)
		goto out;
311 312

	rbtree_postorder_for_each_entry_safe(it, n, &ref->tree, node) {
313 314 315
		err = i915_request_await_active_request(rq, &it->base);
		if (err)
			goto out;
316 317
	}

318 319 320
out:
	i915_active_release(ref);
	return err;
321 322
}

323
#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)
324 325
void i915_active_fini(struct i915_active *ref)
{
326
	debug_active_fini(ref);
327
	GEM_BUG_ON(i915_active_request_isset(&ref->last));
328 329
	GEM_BUG_ON(!RB_EMPTY_ROOT(&ref->tree));
	GEM_BUG_ON(ref->count);
330
}
331
#endif
332

333 334 335 336
int i915_active_acquire_preallocate_barrier(struct i915_active *ref,
					    struct intel_engine_cs *engine)
{
	struct drm_i915_private *i915 = engine->i915;
337
	struct llist_node *pos, *next;
338
	unsigned long tmp;
339
	int err;
340 341 342 343 344 345 346 347 348

	GEM_BUG_ON(!engine->mask);
	for_each_engine_masked(engine, i915, engine->mask, tmp) {
		struct intel_context *kctx = engine->kernel_context;
		struct active_node *node;

		node = kmem_cache_alloc(global.slab_cache, GFP_KERNEL);
		if (unlikely(!node)) {
			err = -ENOMEM;
349
			goto unwind;
350 351 352 353 354 355 356 357
		}

		i915_active_request_init(&node->base,
					 (void *)engine, node_retire);
		node->timeline = kctx->ring->timeline->fence_context;
		node->ref = ref;
		ref->count++;

358
		intel_engine_pm_get(engine);
359 360 361 362
		llist_add((struct llist_node *)&node->base.link,
			  &ref->barriers);
	}

363 364 365 366 367 368 369 370 371 372 373 374 375
	return 0;

unwind:
	llist_for_each_safe(pos, next, llist_del_all(&ref->barriers)) {
		struct active_node *node;

		node = container_of((struct list_head *)pos,
				    typeof(*node), base.link);
		engine = (void *)rcu_access_pointer(node->base.request);

		intel_engine_pm_put(engine);
		kmem_cache_free(global.slab_cache, node);
	}
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
	return err;
}

void i915_active_acquire_barrier(struct i915_active *ref)
{
	struct llist_node *pos, *next;

	i915_active_acquire(ref);

	llist_for_each_safe(pos, next, llist_del_all(&ref->barriers)) {
		struct intel_engine_cs *engine;
		struct active_node *node;
		struct rb_node **p, *parent;

		node = container_of((struct list_head *)pos,
				    typeof(*node), base.link);

		engine = (void *)rcu_access_pointer(node->base.request);
		RCU_INIT_POINTER(node->base.request, ERR_PTR(-EAGAIN));

		parent = NULL;
		p = &ref->tree.rb_node;
		while (*p) {
			parent = *p;
			if (rb_entry(parent,
				     struct active_node,
				     node)->timeline < node->timeline)
				p = &parent->rb_right;
			else
				p = &parent->rb_left;
		}
		rb_link_node(&node->node, parent, p);
		rb_insert_color(&node->node, &ref->tree);

		llist_add((struct llist_node *)&node->base.link,
			  &engine->barrier_tasks);
412
		intel_engine_pm_put(engine);
413 414 415 416 417 418 419 420 421 422 423 424 425
	}
	i915_active_release(ref);
}

void i915_request_add_barriers(struct i915_request *rq)
{
	struct intel_engine_cs *engine = rq->engine;
	struct llist_node *node, *next;

	llist_for_each_safe(node, next, llist_del_all(&engine->barrier_tasks))
		list_add_tail((struct list_head *)node, &rq->active_list);
}

426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
int i915_active_request_set(struct i915_active_request *active,
			    struct i915_request *rq)
{
	int err;

	/* Must maintain ordering wrt previous active requests */
	err = i915_request_await_active_request(rq, active);
	if (err)
		return err;

	__i915_active_request_set(active, rq);
	return 0;
}

void i915_active_retire_noop(struct i915_active_request *active,
			     struct i915_request *request)
{
	/* Space left intentionally blank */
}

446 447 448
#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
#include "selftests/i915_active.c"
#endif
449

450
static void i915_global_active_shrink(void)
451
{
452
	kmem_cache_shrink(global.slab_cache);
453 454
}

455
static void i915_global_active_exit(void)
456
{
457
	kmem_cache_destroy(global.slab_cache);
458 459
}

460 461 462 463 464 465
static struct i915_global_active global = { {
	.shrink = i915_global_active_shrink,
	.exit = i915_global_active_exit,
} };

int __init i915_global_active_init(void)
466
{
467 468 469 470 471 472
	global.slab_cache = KMEM_CACHE(active_node, SLAB_HWCACHE_ALIGN);
	if (!global.slab_cache)
		return -ENOMEM;

	i915_global_register(&global.base);
	return 0;
473
}