intel_guc_submission.c 96.2 KB
Newer Older
1
// SPDX-License-Identifier: MIT
2 3 4 5
/*
 * Copyright © 2014 Intel Corporation
 */

6
#include <linux/circ_buf.h>
7

8
#include "gem/i915_gem_context.h"
9 10
#include "gt/gen8_engine_cs.h"
#include "gt/intel_breadcrumbs.h"
11 12
#include "gt/intel_context.h"
#include "gt/intel_engine_pm.h"
13
#include "gt/intel_engine_heartbeat.h"
14
#include "gt/intel_gt.h"
15
#include "gt/intel_gt_irq.h"
16
#include "gt/intel_gt_pm.h"
17
#include "gt/intel_gt_requests.h"
18
#include "gt/intel_lrc.h"
19
#include "gt/intel_lrc_reg.h"
20
#include "gt/intel_mocs.h"
21 22
#include "gt/intel_ring.h"

23
#include "intel_guc_submission.h"
24

25
#include "i915_drv.h"
26
#include "i915_trace.h"
27

28
/**
A
Alex Dai 已提交
29
 * DOC: GuC-based command submission
30 31 32 33 34 35 36 37 38
 *
 * The Scratch registers:
 * There are 16 MMIO-based registers start from 0xC180. The kernel driver writes
 * a value to the action register (SOFT_SCRATCH_0) along with any data. It then
 * triggers an interrupt on the GuC via another register write (0xC4C8).
 * Firmware writes a success/fail code back to the action register after
 * processes the request. The kernel driver polls waiting for this update and
 * then proceeds.
 *
M
Matthew Brost 已提交
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
 * Command Transport buffers (CTBs):
 * Covered in detail in other sections but CTBs (Host to GuC - H2G, GuC to Host
 * - G2H) are a message interface between the i915 and GuC.
 *
 * Context registration:
 * Before a context can be submitted it must be registered with the GuC via a
 * H2G. A unique guc_id is associated with each context. The context is either
 * registered at request creation time (normal operation) or at submission time
 * (abnormal operation, e.g. after a reset).
 *
 * Context submission:
 * The i915 updates the LRC tail value in memory. The i915 must enable the
 * scheduling of the context within the GuC for the GuC to actually consider it.
 * Therefore, the first time a disabled context is submitted we use a schedule
 * enable H2G, while follow up submissions are done via the context submit H2G,
 * which informs the GuC that a previously enabled context has new work
 * available.
 *
 * Context unpin:
 * To unpin a context a H2G is used to disable scheduling. When the
 * corresponding G2H returns indicating the scheduling disable operation has
 * completed it is safe to unpin the context. While a disable is in flight it
 * isn't safe to resubmit the context so a fence is used to stall all future
 * requests of that context until the G2H is returned.
 *
 * Context deregistration:
 * Before a context can be destroyed or if we steal its guc_id we must
 * deregister the context with the GuC via H2G. If stealing the guc_id it isn't
 * safe to submit anything to this guc_id until the deregister completes so a
 * fence is used to stall all requests associated with this guc_id until the
 * corresponding G2H returns indicating the guc_id has been deregistered.
 *
71
 * submission_state.guc_ids:
M
Matthew Brost 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
 * Unique number associated with private GuC context data passed in during
 * context registration / submission / deregistration. 64k available. Simple ida
 * is used for allocation.
 *
 * Stealing guc_ids:
 * If no guc_ids are available they can be stolen from another context at
 * request creation time if that context is unpinned. If a guc_id can't be found
 * we punt this problem to the user as we believe this is near impossible to hit
 * during normal use cases.
 *
 * Locking:
 * In the GuC submission code we have 3 basic spin locks which protect
 * everything. Details about each below.
 *
 * sched_engine->lock
 * This is the submission lock for all contexts that share an i915 schedule
 * engine (sched_engine), thus only one of the contexts which share a
 * sched_engine can be submitting at a time. Currently only one sched_engine is
 * used for all of GuC submission but that could change in the future.
 *
92
 * guc->submission_state.lock
93 94
 * Global lock for GuC submission state. Protects guc_ids and destroyed contexts
 * list.
M
Matthew Brost 已提交
95 96 97 98 99 100 101 102 103 104 105
 *
 * ce->guc_state.lock
 * Protects everything under ce->guc_state. Ensures that a context is in the
 * correct state before issuing a H2G. e.g. We don't issue a schedule disable
 * on a disabled context (bad idea), we don't issue a schedule enable when a
 * schedule disable is in flight, etc... Also protects list of inflight requests
 * on the context and the priority management state. Lock is individual to each
 * context.
 *
 * Lock ordering rules:
 * sched_engine->lock -> ce->guc_state.lock
106
 * guc->submission_state.lock -> ce->guc_state.lock
107
 *
M
Matthew Brost 已提交
108 109 110 111 112 113 114 115 116 117
 * Reset races:
 * When a full GT reset is triggered it is assumed that some G2H responses to
 * H2Gs can be lost as the GuC is also reset. Losing these G2H can prove to be
 * fatal as we do certain operations upon receiving a G2H (e.g. destroy
 * contexts, release guc_ids, etc...). When this occurs we can scrub the
 * context state and cleanup appropriately, however this is quite racey.
 * To avoid races, the reset code must disable submission before scrubbing for
 * the missing G2H, while the submission code must check for submission being
 * disabled and skip sending H2Gs and updating context states when it is. Both
 * sides must also make sure to hold the relevant locks.
118 119
 */

120 121 122 123 124 125 126 127 128
/* GuC Virtual Engine */
struct guc_virtual_engine {
	struct intel_engine_cs base;
	struct intel_context context;
};

static struct intel_context *
guc_create_virtual(struct intel_engine_cs **siblings, unsigned int count);

129 130
#define GUC_REQUEST_SIZE 64 /* bytes */

131 132 133 134 135 136 137 138 139 140
/*
 * We reserve 1/16 of the guc_ids for multi-lrc as these need to be contiguous
 * per the GuC submission interface. A different allocation algorithm is used
 * (bitmap vs. ida) between multi-lrc and single-lrc hence the reason to
 * partition the guc_id space. We believe the number of multi-lrc contexts in
 * use should be low and 1/16 should be sufficient. Minimum of 32 guc_ids for
 * multi-lrc.
 */
#define NUMBER_MULTI_LRC_GUC_ID		(GUC_MAX_LRC_DESCRIPTORS / 16)

141 142
/*
 * Below is a set of functions which control the GuC scheduling state which
143
 * require a lock.
144 145 146
 */
#define SCHED_STATE_WAIT_FOR_DEREGISTER_TO_REGISTER	BIT(0)
#define SCHED_STATE_DESTROYED				BIT(1)
147
#define SCHED_STATE_PENDING_DISABLE			BIT(2)
148
#define SCHED_STATE_BANNED				BIT(3)
149 150 151 152
#define SCHED_STATE_ENABLED				BIT(4)
#define SCHED_STATE_PENDING_ENABLE			BIT(5)
#define SCHED_STATE_REGISTERED				BIT(6)
#define SCHED_STATE_BLOCKED_SHIFT			7
153 154
#define SCHED_STATE_BLOCKED		BIT(SCHED_STATE_BLOCKED_SHIFT)
#define SCHED_STATE_BLOCKED_MASK	(0xfff << SCHED_STATE_BLOCKED_SHIFT)
155

156 157
static inline void init_sched_state(struct intel_context *ce)
{
158
	lockdep_assert_held(&ce->guc_state.lock);
159
	ce->guc_state.sched_state &= SCHED_STATE_BLOCKED_MASK;
160 161
}

162 163 164 165 166 167 168
__maybe_unused
static bool sched_state_is_init(struct intel_context *ce)
{
	/*
	 * XXX: Kernel contexts can have SCHED_STATE_NO_LOCK_REGISTERED after
	 * suspend.
	 */
169 170
	return !(ce->guc_state.sched_state &=
		 ~(SCHED_STATE_BLOCKED_MASK | SCHED_STATE_REGISTERED));
171 172
}

173 174 175 176 177 178 179 180 181 182
static inline bool
context_wait_for_deregister_to_register(struct intel_context *ce)
{
	return ce->guc_state.sched_state &
		SCHED_STATE_WAIT_FOR_DEREGISTER_TO_REGISTER;
}

static inline void
set_context_wait_for_deregister_to_register(struct intel_context *ce)
{
183
	lockdep_assert_held(&ce->guc_state.lock);
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
	ce->guc_state.sched_state |=
		SCHED_STATE_WAIT_FOR_DEREGISTER_TO_REGISTER;
}

static inline void
clr_context_wait_for_deregister_to_register(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state &=
		~SCHED_STATE_WAIT_FOR_DEREGISTER_TO_REGISTER;
}

static inline bool
context_destroyed(struct intel_context *ce)
{
	return ce->guc_state.sched_state & SCHED_STATE_DESTROYED;
}

static inline void
set_context_destroyed(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state |= SCHED_STATE_DESTROYED;
}

209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
static inline bool context_pending_disable(struct intel_context *ce)
{
	return ce->guc_state.sched_state & SCHED_STATE_PENDING_DISABLE;
}

static inline void set_context_pending_disable(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state |= SCHED_STATE_PENDING_DISABLE;
}

static inline void clr_context_pending_disable(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state &= ~SCHED_STATE_PENDING_DISABLE;
}

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
static inline bool context_banned(struct intel_context *ce)
{
	return ce->guc_state.sched_state & SCHED_STATE_BANNED;
}

static inline void set_context_banned(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state |= SCHED_STATE_BANNED;
}

static inline void clr_context_banned(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state &= ~SCHED_STATE_BANNED;
}

243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
static inline bool context_enabled(struct intel_context *ce)
{
	return ce->guc_state.sched_state & SCHED_STATE_ENABLED;
}

static inline void set_context_enabled(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state |= SCHED_STATE_ENABLED;
}

static inline void clr_context_enabled(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state &= ~SCHED_STATE_ENABLED;
}

static inline bool context_pending_enable(struct intel_context *ce)
{
	return ce->guc_state.sched_state & SCHED_STATE_PENDING_ENABLE;
}

static inline void set_context_pending_enable(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state |= SCHED_STATE_PENDING_ENABLE;
}

static inline void clr_context_pending_enable(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state &= ~SCHED_STATE_PENDING_ENABLE;
}

static inline bool context_registered(struct intel_context *ce)
{
	return ce->guc_state.sched_state & SCHED_STATE_REGISTERED;
}

static inline void set_context_registered(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state |= SCHED_STATE_REGISTERED;
}

static inline void clr_context_registered(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	ce->guc_state.sched_state &= ~SCHED_STATE_REGISTERED;
}

294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
static inline u32 context_blocked(struct intel_context *ce)
{
	return (ce->guc_state.sched_state & SCHED_STATE_BLOCKED_MASK) >>
		SCHED_STATE_BLOCKED_SHIFT;
}

static inline void incr_context_blocked(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);

	ce->guc_state.sched_state += SCHED_STATE_BLOCKED;

	GEM_BUG_ON(!context_blocked(ce));	/* Overflow check */
}

static inline void decr_context_blocked(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);

	GEM_BUG_ON(!context_blocked(ce));	/* Underflow check */

	ce->guc_state.sched_state -= SCHED_STATE_BLOCKED;
}

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
static inline bool context_has_committed_requests(struct intel_context *ce)
{
	return !!ce->guc_state.number_committed_requests;
}

static inline void incr_context_committed_requests(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	++ce->guc_state.number_committed_requests;
	GEM_BUG_ON(ce->guc_state.number_committed_requests < 0);
}

static inline void decr_context_committed_requests(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
	--ce->guc_state.number_committed_requests;
	GEM_BUG_ON(ce->guc_state.number_committed_requests < 0);
}

337 338 339 340 341 342
static struct intel_context *
request_to_scheduling_context(struct i915_request *rq)
{
	return intel_context_to_parent(rq->context);
}

343 344
static inline bool context_guc_id_invalid(struct intel_context *ce)
{
345
	return ce->guc_id.id == GUC_INVALID_LRC_ID;
346 347 348 349
}

static inline void set_context_guc_id_invalid(struct intel_context *ce)
{
350
	ce->guc_id.id = GUC_INVALID_LRC_ID;
351 352 353 354 355 356 357
}

static inline struct intel_guc *ce_to_guc(struct intel_context *ce)
{
	return &ce->engine->gt->uc.guc;
}

358 359 360 361 362
static inline struct i915_priolist *to_priolist(struct rb_node *rb)
{
	return rb_entry(rb, struct i915_priolist, node);
}

363 364 365 366 367 368 369 370 371 372 373 374 375 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
/*
 * When using multi-lrc submission a scratch memory area is reserved in the
 * parent's context state for the process descriptor and work queue. Currently
 * the scratch area is sized to a page.
 *
 * The layout of this scratch area is below:
 * 0						guc_process_desc
 * ...						unused
 * PARENT_SCRATCH_SIZE / 2			work queue start
 * ...						work queue
 * PARENT_SCRATCH_SIZE - 1			work queue end
 */
#define WQ_SIZE			(PARENT_SCRATCH_SIZE / 2)
#define WQ_OFFSET		(PARENT_SCRATCH_SIZE - WQ_SIZE)
static u32 __get_process_desc_offset(struct intel_context *ce)
{
	GEM_BUG_ON(!ce->parallel.guc.parent_page);

	return ce->parallel.guc.parent_page * PAGE_SIZE;
}

static u32 __get_wq_offset(struct intel_context *ce)
{
	return __get_process_desc_offset(ce) + WQ_OFFSET;
}

static struct guc_process_desc *
__get_process_desc(struct intel_context *ce)
{
	/*
	 * Need to subtract LRC_STATE_OFFSET here as the
	 * parallel.guc.parent_page is the offset into ce->state while
	 * ce->lrc_reg_reg is ce->state + LRC_STATE_OFFSET.
	 */
	return (struct guc_process_desc *)
		(ce->lrc_reg_state +
		 ((__get_process_desc_offset(ce) -
		   LRC_STATE_OFFSET) / sizeof(u32)));
}

403
static struct guc_lrc_desc *__get_lrc_desc(struct intel_guc *guc, u32 index)
404
{
405
	struct guc_lrc_desc *base = guc->lrc_desc_pool_vaddr;
406

407
	GEM_BUG_ON(index >= GUC_MAX_LRC_DESCRIPTORS);
408

409
	return &base[index];
410 411
}

412 413 414 415 416 417 418 419 420
static inline struct intel_context *__get_context(struct intel_guc *guc, u32 id)
{
	struct intel_context *ce = xa_load(&guc->context_lookup, id);

	GEM_BUG_ON(id >= GUC_MAX_LRC_DESCRIPTORS);

	return ce;
}

421
static int guc_lrc_desc_pool_create(struct intel_guc *guc)
422
{
423 424
	u32 size;
	int ret;
425

426 427 428 429 430 431
	size = PAGE_ALIGN(sizeof(struct guc_lrc_desc) *
			  GUC_MAX_LRC_DESCRIPTORS);
	ret = intel_guc_allocate_and_map_vma(guc, size, &guc->lrc_desc_pool,
					     (void **)&guc->lrc_desc_pool_vaddr);
	if (ret)
		return ret;
432

433
	return 0;
434 435
}

436
static void guc_lrc_desc_pool_destroy(struct intel_guc *guc)
437
{
438
	guc->lrc_desc_pool_vaddr = NULL;
439
	i915_vma_unpin_and_release(&guc->lrc_desc_pool, I915_VMA_RELEASE_MAP);
440 441
}

442 443 444 445 446
static inline bool guc_submission_initialized(struct intel_guc *guc)
{
	return !!guc->lrc_desc_pool_vaddr;
}

447 448
static inline void reset_lrc_desc(struct intel_guc *guc, u32 id)
{
449 450 451
	if (likely(guc_submission_initialized(guc))) {
		struct guc_lrc_desc *desc = __get_lrc_desc(guc, id);
		unsigned long flags;
452

453 454 455 456 457 458 459 460 461 462
		memset(desc, 0, sizeof(*desc));

		/*
		 * xarray API doesn't have xa_erase_irqsave wrapper, so calling
		 * the lower level functions directly.
		 */
		xa_lock_irqsave(&guc->context_lookup, flags);
		__xa_erase(&guc->context_lookup, id);
		xa_unlock_irqrestore(&guc->context_lookup, flags);
	}
463 464 465 466 467 468 469 470 471 472
}

static inline bool lrc_desc_registered(struct intel_guc *guc, u32 id)
{
	return __get_context(guc, id);
}

static inline void set_lrc_desc_registered(struct intel_guc *guc, u32 id,
					   struct intel_context *ce)
{
473 474 475 476 477 478 479 480 481
	unsigned long flags;

	/*
	 * xarray API doesn't have xa_save_irqsave wrapper, so calling the
	 * lower level functions directly.
	 */
	xa_lock_irqsave(&guc->context_lookup, flags);
	__xa_store(&guc->context_lookup, id, ce, GFP_ATOMIC);
	xa_unlock_irqrestore(&guc->context_lookup, flags);
482 483
}

484 485 486 487 488 489
static void decr_outstanding_submission_g2h(struct intel_guc *guc)
{
	if (atomic_dec_and_test(&guc->outstanding_submission_g2h))
		wake_up_all(&guc->ct.wq);
}

490 491 492 493 494 495
static int guc_submission_send_busy_loop(struct intel_guc *guc,
					 const u32 *action,
					 u32 len,
					 u32 g2h_len_dw,
					 bool loop)
{
496 497 498 499 500 501
	/*
	 * We always loop when a send requires a reply (i.e. g2h_len_dw > 0),
	 * so we don't handle the case where we don't get a reply because we
	 * aborted the send due to the channel being busy.
	 */
	GEM_BUG_ON(g2h_len_dw && !loop);
502

503
	if (g2h_len_dw)
504 505
		atomic_inc(&guc->outstanding_submission_g2h);

506
	return intel_guc_send_busy_loop(guc, action, len, g2h_len_dw, loop);
507 508
}

509 510 511 512
int intel_guc_wait_for_pending_msg(struct intel_guc *guc,
				   atomic_t *wait_var,
				   bool interruptible,
				   long timeout)
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
{
	const int state = interruptible ?
		TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
	DEFINE_WAIT(wait);

	might_sleep();
	GEM_BUG_ON(timeout < 0);

	if (!atomic_read(wait_var))
		return 0;

	if (!timeout)
		return -ETIME;

	for (;;) {
		prepare_to_wait(&guc->ct.wq, &wait, state);

		if (!atomic_read(wait_var))
			break;

		if (signal_pending_state(state, current)) {
			timeout = -EINTR;
			break;
		}

		if (!timeout) {
			timeout = -ETIME;
			break;
		}

		timeout = io_schedule_timeout(timeout);
	}
	finish_wait(&guc->ct.wq, &wait);

	return (timeout < 0) ? timeout : 0;
}

int intel_guc_wait_for_idle(struct intel_guc *guc, long timeout)
{
	if (!intel_uc_uses_guc_submission(&guc_to_gt(guc)->uc))
		return 0;

555 556 557
	return intel_guc_wait_for_pending_msg(guc,
					      &guc->outstanding_submission_g2h,
					      true, timeout);
558 559
}

560 561
static int guc_lrc_desc_pin(struct intel_context *ce, bool loop);

562
static int guc_add_request(struct intel_guc *guc, struct i915_request *rq)
563
{
564
	int err = 0;
565 566 567
	struct intel_context *ce = rq->context;
	u32 action[3];
	int len = 0;
568
	u32 g2h_len_dw = 0;
569
	bool enabled;
570

571 572
	lockdep_assert_held(&rq->engine->sched_engine->lock);

573 574 575 576 577 578 579
	/*
	 * Corner case where requests were sitting in the priority list or a
	 * request resubmitted after the context was banned.
	 */
	if (unlikely(intel_context_is_banned(ce))) {
		i915_request_put(i915_request_mark_eio(rq));
		intel_engine_signal_breadcrumbs(ce->engine);
580
		return 0;
581 582
	}

583
	GEM_BUG_ON(!atomic_read(&ce->guc_id.ref));
584 585
	GEM_BUG_ON(context_guc_id_invalid(ce));

586 587 588 589
	/*
	 * Corner case where the GuC firmware was blown away and reloaded while
	 * this context was pinned.
	 */
590
	if (unlikely(!lrc_desc_registered(guc, ce->guc_id.id))) {
591 592
		err = guc_lrc_desc_pin(ce, false);
		if (unlikely(err))
593
			return err;
594
	}
595

596 597
	spin_lock(&ce->guc_state.lock);

598 599 600 601 602 603 604
	/*
	 * The request / context will be run on the hardware when scheduling
	 * gets enabled in the unblock.
	 */
	if (unlikely(context_blocked(ce)))
		goto out;

605 606
	enabled = context_enabled(ce);

607 608
	if (!enabled) {
		action[len++] = INTEL_GUC_ACTION_SCHED_CONTEXT_MODE_SET;
609
		action[len++] = ce->guc_id.id;
610
		action[len++] = GUC_CONTEXT_ENABLE;
611 612
		set_context_pending_enable(ce);
		intel_context_get(ce);
613
		g2h_len_dw = G2H_LEN_DW_SCHED_CONTEXT_MODE_SET;
614 615
	} else {
		action[len++] = INTEL_GUC_ACTION_SCHED_CONTEXT;
616
		action[len++] = ce->guc_id.id;
617
	}
618

619
	err = intel_guc_send_nb(guc, action, len, g2h_len_dw);
620
	if (!enabled && !err) {
621
		trace_intel_context_sched_enable(ce);
622
		atomic_inc(&guc->outstanding_submission_g2h);
623
		set_context_enabled(ce);
624 625 626 627
	} else if (!enabled) {
		clr_context_pending_enable(ce);
		intel_context_put(ce);
	}
628 629
	if (likely(!err))
		trace_i915_request_guc_submit(rq);
630

631
out:
632
	spin_unlock(&ce->guc_state.lock);
633
	return err;
634 635
}

636 637 638 639 640 641
static inline void guc_set_lrc_tail(struct i915_request *rq)
{
	rq->context->lrc_reg_state[CTX_RING_TAIL] =
		intel_ring_set_tail(rq->ring, rq->tail);
}

642
static inline int rq_prio(const struct i915_request *rq)
643
{
644
	return rq->sched.attr.priority;
645 646
}

647
static int guc_dequeue_one_context(struct intel_guc *guc)
648
{
649 650
	struct i915_sched_engine * const sched_engine = guc->sched_engine;
	struct i915_request *last = NULL;
651
	bool submit = false;
652
	struct rb_node *rb;
653
	int ret;
654

655
	lockdep_assert_held(&sched_engine->lock);
656

657 658 659 660
	if (guc->stalled_request) {
		submit = true;
		last = guc->stalled_request;
		goto resubmit;
661 662
	}

663
	while ((rb = rb_first_cached(&sched_engine->queue))) {
664
		struct i915_priolist *p = to_priolist(rb);
665
		struct i915_request *rq, *rn;
666

667
		priolist_for_each_request_consume(rq, rn, p) {
668 669
			if (last && rq->context != last->context)
				goto done;
670

671
			list_del_init(&rq->sched.link);
672

673
			__i915_request_submit(rq);
674 675

			trace_i915_request_in(rq, 0);
676
			last = rq;
677
			submit = true;
678 679
		}

680
		rb_erase_cached(&p->node, &sched_engine->queue);
681
		i915_priolist_free(p);
682
	}
683
done:
684
	if (submit) {
685
		guc_set_lrc_tail(last);
686 687
resubmit:
		ret = guc_add_request(guc, last);
688 689 690
		if (unlikely(ret == -EPIPE))
			goto deadlk;
		else if (ret == -EBUSY) {
691 692 693 694
			tasklet_schedule(&sched_engine->tasklet);
			guc->stalled_request = last;
			return false;
		}
695
	}
696 697 698

	guc->stalled_request = NULL;
	return submit;
699 700 701 702 703

deadlk:
	sched_engine->tasklet.callback = NULL;
	tasklet_disable_nosync(&sched_engine->tasklet);
	return false;
704 705
}

706
static void guc_submission_tasklet(struct tasklet_struct *t)
707
{
708 709
	struct i915_sched_engine *sched_engine =
		from_tasklet(sched_engine, t, tasklet);
710
	unsigned long flags;
711
	bool loop;
712

713
	spin_lock_irqsave(&sched_engine->lock, flags);
714

715 716 717
	do {
		loop = guc_dequeue_one_context(sched_engine->private_data);
	} while (loop);
718

719
	i915_sched_engine_reset_on_empty(sched_engine);
720

721
	spin_unlock_irqrestore(&sched_engine->lock, flags);
722 723
}

724 725
static void cs_irq_handler(struct intel_engine_cs *engine, u16 iir)
{
726
	if (iir & GT_RENDER_USER_INTERRUPT)
727 728 729
		intel_engine_signal_breadcrumbs(engine);
}

730 731 732
static void __guc_context_destroy(struct intel_context *ce);
static void release_guc_id(struct intel_guc *guc, struct intel_context *ce);
static void guc_signal_context_fence(struct intel_context *ce);
733
static void guc_cancel_context_requests(struct intel_context *ce);
734
static void guc_blocked_fence_complete(struct intel_context *ce);
735 736 737 738 739

static void scrub_guc_desc_for_outstanding_g2h(struct intel_guc *guc)
{
	struct intel_context *ce;
	unsigned long index, flags;
740
	bool pending_disable, pending_enable, deregister, destroyed, banned;
741

742
	xa_lock_irqsave(&guc->context_lookup, flags);
743
	xa_for_each(&guc->context_lookup, index, ce) {
744 745 746 747 748 749 750 751 752 753
		/*
		 * Corner case where the ref count on the object is zero but and
		 * deregister G2H was lost. In this case we don't touch the ref
		 * count and finish the destroy of the context.
		 */
		bool do_put = kref_get_unless_zero(&ce->ref);

		xa_unlock(&guc->context_lookup);

		spin_lock(&ce->guc_state.lock);
754 755 756 757 758 759 760 761 762 763 764 765

		/*
		 * Once we are at this point submission_disabled() is guaranteed
		 * to be visible to all callers who set the below flags (see above
		 * flush and flushes in reset_prepare). If submission_disabled()
		 * is set, the caller shouldn't set these flags.
		 */

		destroyed = context_destroyed(ce);
		pending_enable = context_pending_enable(ce);
		pending_disable = context_pending_disable(ce);
		deregister = context_wait_for_deregister_to_register(ce);
766
		banned = context_banned(ce);
767 768
		init_sched_state(ce);

769 770 771
		spin_unlock(&ce->guc_state.lock);

		GEM_BUG_ON(!do_put && !destroyed);
772

773
		if (pending_enable || destroyed || deregister) {
774
			decr_outstanding_submission_g2h(guc);
775 776 777
			if (deregister)
				guc_signal_context_fence(ce);
			if (destroyed) {
778
				intel_gt_pm_put_async(guc_to_gt(guc));
779 780 781 782 783 784 785 786 787 788
				release_guc_id(guc, ce);
				__guc_context_destroy(ce);
			}
			if (pending_enable || deregister)
				intel_context_put(ce);
		}

		/* Not mutualy exclusive with above if statement. */
		if (pending_disable) {
			guc_signal_context_fence(ce);
789 790 791 792
			if (banned) {
				guc_cancel_context_requests(ce);
				intel_engine_signal_breadcrumbs(ce->engine);
			}
793
			intel_context_sched_disable_unpin(ce);
794
			decr_outstanding_submission_g2h(guc);
795 796

			spin_lock(&ce->guc_state.lock);
797
			guc_blocked_fence_complete(ce);
798
			spin_unlock(&ce->guc_state.lock);
799

800 801
			intel_context_put(ce);
		}
802 803 804 805

		if (do_put)
			intel_context_put(ce);
		xa_lock(&guc->context_lookup);
806
	}
807
	xa_unlock_irqrestore(&guc->context_lookup, flags);
808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
}

static inline bool
submission_disabled(struct intel_guc *guc)
{
	struct i915_sched_engine * const sched_engine = guc->sched_engine;

	return unlikely(!sched_engine ||
			!__tasklet_is_enabled(&sched_engine->tasklet));
}

static void disable_submission(struct intel_guc *guc)
{
	struct i915_sched_engine * const sched_engine = guc->sched_engine;

	if (__tasklet_is_enabled(&sched_engine->tasklet)) {
		GEM_BUG_ON(!guc->ct.enabled);
		__tasklet_disable_sync_once(&sched_engine->tasklet);
		sched_engine->tasklet.callback = NULL;
	}
}

static void enable_submission(struct intel_guc *guc)
{
	struct i915_sched_engine * const sched_engine = guc->sched_engine;
	unsigned long flags;

	spin_lock_irqsave(&guc->sched_engine->lock, flags);
	sched_engine->tasklet.callback = guc_submission_tasklet;
	wmb();	/* Make sure callback visible */
	if (!__tasklet_is_enabled(&sched_engine->tasklet) &&
	    __tasklet_enable(&sched_engine->tasklet)) {
		GEM_BUG_ON(!guc->ct.enabled);

		/* And kick in case we missed a new request submission. */
		tasklet_hi_schedule(&sched_engine->tasklet);
	}
	spin_unlock_irqrestore(&guc->sched_engine->lock, flags);
}

static void guc_flush_submissions(struct intel_guc *guc)
{
	struct i915_sched_engine * const sched_engine = guc->sched_engine;
	unsigned long flags;

	spin_lock_irqsave(&sched_engine->lock, flags);
	spin_unlock_irqrestore(&sched_engine->lock, flags);
}

857 858
static void guc_flush_destroyed_contexts(struct intel_guc *guc);

859
void intel_guc_submission_reset_prepare(struct intel_guc *guc)
860
{
861 862 863 864 865 866 867
	int i;

	if (unlikely(!guc_submission_initialized(guc))) {
		/* Reset called during driver load? GuC not yet initialised! */
		return;
	}

868
	intel_gt_park_heartbeats(guc_to_gt(guc));
869 870 871 872 873 874 875 876
	disable_submission(guc);
	guc->interrupts.disable(guc);

	/* Flush IRQ handler */
	spin_lock_irq(&guc_to_gt(guc)->irq_lock);
	spin_unlock_irq(&guc_to_gt(guc)->irq_lock);

	guc_flush_submissions(guc);
877
	guc_flush_destroyed_contexts(guc);
878 879

	/*
880 881 882 883
	 * Handle any outstanding G2Hs before reset. Call IRQ handler directly
	 * each pass as interrupt have been disabled. We always scrub for
	 * outstanding G2H as it is possible for outstanding_submission_g2h to
	 * be incremented after the context state update.
884
	 */
885 886 887
	for (i = 0; i < 4 && atomic_read(&guc->outstanding_submission_g2h); ++i) {
		intel_guc_to_host_event_handler(guc);
#define wait_for_reset(guc, wait_var) \
888
		intel_guc_wait_for_pending_msg(guc, wait_var, false, (HZ / 20))
889 890 891 892
		do {
			wait_for_reset(guc, &guc->outstanding_submission_g2h);
		} while (!list_empty(&guc->ct.requests.incoming));
	}
893

894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919
	scrub_guc_desc_for_outstanding_g2h(guc);
}

static struct intel_engine_cs *
guc_virtual_get_sibling(struct intel_engine_cs *ve, unsigned int sibling)
{
	struct intel_engine_cs *engine;
	intel_engine_mask_t tmp, mask = ve->mask;
	unsigned int num_siblings = 0;

	for_each_engine_masked(engine, ve->gt, mask, tmp)
		if (num_siblings++ == sibling)
			return engine;

	return NULL;
}

static inline struct intel_engine_cs *
__context_to_physical_engine(struct intel_context *ce)
{
	struct intel_engine_cs *engine = ce->engine;

	if (intel_engine_is_virtual(engine))
		engine = guc_virtual_get_sibling(engine, 0);

	return engine;
920 921
}

922
static void guc_reset_state(struct intel_context *ce, u32 head, bool scrub)
923
{
924 925
	struct intel_engine_cs *engine = __context_to_physical_engine(ce);

926 927 928
	if (intel_context_is_banned(ce))
		return;

929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
	GEM_BUG_ON(!intel_context_is_pinned(ce));

	/*
	 * We want a simple context + ring to execute the breadcrumb update.
	 * We cannot rely on the context being intact across the GPU hang,
	 * so clear it and rebuild just what we need for the breadcrumb.
	 * All pending requests for this context will be zapped, and any
	 * future request will be after userspace has had the opportunity
	 * to recreate its own state.
	 */
	if (scrub)
		lrc_init_regs(ce, engine, true);

	/* Rerun the request; its payload has been neutered (if guilty). */
	lrc_update_regs(ce, engine, head);
}

946
static void guc_reset_nop(struct intel_engine_cs *engine)
947
{
948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964
}

static void guc_rewind_nop(struct intel_engine_cs *engine, bool stalled)
{
}

static void
__unwind_incomplete_requests(struct intel_context *ce)
{
	struct i915_request *rq, *rn;
	struct list_head *pl;
	int prio = I915_PRIORITY_INVALID;
	struct i915_sched_engine * const sched_engine =
		ce->engine->sched_engine;
	unsigned long flags;

	spin_lock_irqsave(&sched_engine->lock, flags);
965
	spin_lock(&ce->guc_state.lock);
966
	list_for_each_entry_safe_reverse(rq, rn,
967
					 &ce->guc_state.requests,
968
					 sched.link) {
969 970 971 972 973 974 975 976 977 978 979 980 981 982
		if (i915_request_completed(rq))
			continue;

		list_del_init(&rq->sched.link);
		__i915_request_unsubmit(rq);

		/* Push the request back into the queue for later resubmission. */
		GEM_BUG_ON(rq_prio(rq) == I915_PRIORITY_INVALID);
		if (rq_prio(rq) != prio) {
			prio = rq_prio(rq);
			pl = i915_sched_lookup_priolist(sched_engine, prio);
		}
		GEM_BUG_ON(i915_sched_engine_is_empty(sched_engine));

983
		list_add(&rq->sched.link, pl);
984 985
		set_bit(I915_FENCE_FLAG_PQUEUE, &rq->fence.flags);
	}
986
	spin_unlock(&ce->guc_state.lock);
987 988 989 990 991 992
	spin_unlock_irqrestore(&sched_engine->lock, flags);
}

static void __guc_reset_context(struct intel_context *ce, bool stalled)
{
	struct i915_request *rq;
993
	unsigned long flags;
994
	u32 head;
995
	bool skip = false;
996

997 998
	intel_context_get(ce);

999
	/*
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
	 * GuC will implicitly mark the context as non-schedulable when it sends
	 * the reset notification. Make sure our state reflects this change. The
	 * context will be marked enabled on resubmission.
	 *
	 * XXX: If the context is reset as a result of the request cancellation
	 * this G2H is received after the schedule disable complete G2H which is
	 * wrong as this creates a race between the request cancellation code
	 * re-submitting the context and this G2H handler. This is a bug in the
	 * GuC but can be worked around in the meantime but converting this to a
	 * NOP if a pending enable is in flight as this indicates that a request
	 * cancellation has occurred.
1011
	 */
1012 1013 1014 1015 1016 1017 1018 1019
	spin_lock_irqsave(&ce->guc_state.lock, flags);
	if (likely(!context_pending_enable(ce)))
		clr_context_enabled(ce);
	else
		skip = true;
	spin_unlock_irqrestore(&ce->guc_state.lock, flags);
	if (unlikely(skip))
		goto out_put;
1020

1021
	rq = intel_context_find_active_request(ce);
1022 1023 1024 1025 1026
	if (!rq) {
		head = ce->ring->tail;
		stalled = false;
		goto out_replay;
	}
1027 1028 1029 1030

	if (!i915_request_started(rq))
		stalled = false;

1031 1032
	GEM_BUG_ON(i915_active_is_idle(&ce->active));
	head = intel_ring_wrap(ce->ring, rq->head);
1033
	__i915_request_reset(rq, stalled);
1034

1035 1036 1037
out_replay:
	guc_reset_state(ce, head, stalled);
	__unwind_incomplete_requests(ce);
1038
out_put:
1039
	intel_context_put(ce);
1040 1041 1042 1043 1044 1045
}

void intel_guc_submission_reset(struct intel_guc *guc, bool stalled)
{
	struct intel_context *ce;
	unsigned long index;
1046
	unsigned long flags;
1047 1048 1049 1050 1051 1052

	if (unlikely(!guc_submission_initialized(guc))) {
		/* Reset called during driver load? GuC not yet initialised! */
		return;
	}

1053 1054 1055 1056 1057 1058 1059
	xa_lock_irqsave(&guc->context_lookup, flags);
	xa_for_each(&guc->context_lookup, index, ce) {
		if (!kref_get_unless_zero(&ce->ref))
			continue;

		xa_unlock(&guc->context_lookup);

1060 1061 1062
		if (intel_context_is_pinned(ce))
			__guc_reset_context(ce, stalled);

1063 1064 1065 1066 1067 1068
		intel_context_put(ce);

		xa_lock(&guc->context_lookup);
	}
	xa_unlock_irqrestore(&guc->context_lookup, flags);

1069 1070
	/* GuC is blown away, drop all references to contexts */
	xa_destroy(&guc->context_lookup);
1071 1072
}

1073 1074 1075 1076 1077 1078 1079 1080
static void guc_cancel_context_requests(struct intel_context *ce)
{
	struct i915_sched_engine *sched_engine = ce_to_guc(ce)->sched_engine;
	struct i915_request *rq;
	unsigned long flags;

	/* Mark all executing requests as skipped. */
	spin_lock_irqsave(&sched_engine->lock, flags);
1081 1082
	spin_lock(&ce->guc_state.lock);
	list_for_each_entry(rq, &ce->guc_state.requests, sched.link)
1083
		i915_request_put(i915_request_mark_eio(rq));
1084
	spin_unlock(&ce->guc_state.lock);
1085 1086 1087 1088 1089
	spin_unlock_irqrestore(&sched_engine->lock, flags);
}

static void
guc_cancel_sched_engine_requests(struct i915_sched_engine *sched_engine)
1090 1091 1092 1093 1094
{
	struct i915_request *rq, *rn;
	struct rb_node *rb;
	unsigned long flags;

1095
	/* Can be called during boot if GuC fails to load */
1096
	if (!sched_engine)
1097 1098
		return;

1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
	/*
	 * Before we call engine->cancel_requests(), we should have exclusive
	 * access to the submission state. This is arranged for us by the
	 * caller disabling the interrupt generation, the tasklet and other
	 * threads that may then access the same state, giving us a free hand
	 * to reset state. However, we still need to let lockdep be aware that
	 * we know this state may be accessed in hardirq context, so we
	 * disable the irq around this manipulation and we want to keep
	 * the spinlock focused on its duties and not accidentally conflate
	 * coverage to the submission's irq state. (Similarly, although we
	 * shouldn't need to disable irq around the manipulation of the
	 * submission's irq state, we also wish to remind ourselves that
	 * it is irq state.)
	 */
1113
	spin_lock_irqsave(&sched_engine->lock, flags);
1114 1115

	/* Flush the queued requests to the timeline list (for retiring). */
1116
	while ((rb = rb_first_cached(&sched_engine->queue))) {
1117 1118
		struct i915_priolist *p = to_priolist(rb);

1119
		priolist_for_each_request_consume(rq, rn, p) {
1120
			list_del_init(&rq->sched.link);
1121

1122
			__i915_request_submit(rq);
1123 1124

			i915_request_put(i915_request_mark_eio(rq));
1125 1126
		}

1127
		rb_erase_cached(&p->node, &sched_engine->queue);
1128 1129 1130 1131 1132
		i915_priolist_free(p);
	}

	/* Remaining _unready_ requests will be nop'ed when submitted */

1133 1134
	sched_engine->queue_priority_hint = INT_MIN;
	sched_engine->queue = RB_ROOT_CACHED;
1135

1136
	spin_unlock_irqrestore(&sched_engine->lock, flags);
1137 1138
}

1139
void intel_guc_submission_cancel_requests(struct intel_guc *guc)
1140
{
1141 1142
	struct intel_context *ce;
	unsigned long index;
1143 1144 1145 1146 1147 1148 1149 1150
	unsigned long flags;

	xa_lock_irqsave(&guc->context_lookup, flags);
	xa_for_each(&guc->context_lookup, index, ce) {
		if (!kref_get_unless_zero(&ce->ref))
			continue;

		xa_unlock(&guc->context_lookup);
1151 1152 1153 1154

		if (intel_context_is_pinned(ce))
			guc_cancel_context_requests(ce);

1155 1156 1157 1158 1159 1160
		intel_context_put(ce);

		xa_lock(&guc->context_lookup);
	}
	xa_unlock_irqrestore(&guc->context_lookup, flags);

1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
	guc_cancel_sched_engine_requests(guc->sched_engine);

	/* GuC is blown away, drop all references to contexts */
	xa_destroy(&guc->context_lookup);
}

void intel_guc_submission_reset_finish(struct intel_guc *guc)
{
	/* Reset called during driver load or during wedge? */
	if (unlikely(!guc_submission_initialized(guc) ||
		     test_bit(I915_WEDGED, &guc_to_gt(guc)->reset.flags))) {
		return;
	}
1174

1175 1176 1177 1178 1179 1180 1181 1182 1183
	/*
	 * Technically possible for either of these values to be non-zero here,
	 * but very unlikely + harmless. Regardless let's add a warn so we can
	 * see in CI if this happens frequently / a precursor to taking down the
	 * machine.
	 */
	GEM_WARN_ON(atomic_read(&guc->outstanding_submission_g2h));
	atomic_set(&guc->outstanding_submission_g2h, 0);

1184
	intel_guc_global_policies_update(guc);
1185
	enable_submission(guc);
1186
	intel_gt_unpark_heartbeats(guc_to_gt(guc));
1187 1188
}

1189 1190
static void destroyed_worker_func(struct work_struct *w);

1191
/*
1192 1193
 * Set up the memory resources to be shared with the GuC (via the GGTT)
 * at firmware loading time.
1194
 */
1195
int intel_guc_submission_init(struct intel_guc *guc)
1196
{
1197
	int ret;
1198

1199
	if (guc->lrc_desc_pool)
1200
		return 0;
1201

1202
	ret = guc_lrc_desc_pool_create(guc);
1203 1204
	if (ret)
		return ret;
1205 1206 1207 1208
	/*
	 * Keep static analysers happy, let them know that we allocated the
	 * vma after testing that it didn't exist earlier.
	 */
1209
	GEM_BUG_ON(!guc->lrc_desc_pool);
1210

1211 1212
	xa_init_flags(&guc->context_lookup, XA_FLAGS_LOCK_IRQ);

1213 1214 1215
	spin_lock_init(&guc->submission_state.lock);
	INIT_LIST_HEAD(&guc->submission_state.guc_id_list);
	ida_init(&guc->submission_state.guc_ids);
1216 1217 1218
	INIT_LIST_HEAD(&guc->submission_state.destroyed_contexts);
	INIT_WORK(&guc->submission_state.destroyed_worker,
		  destroyed_worker_func);
1219

1220 1221 1222 1223 1224
	guc->submission_state.guc_ids_bitmap =
		bitmap_zalloc(NUMBER_MULTI_LRC_GUC_ID, GFP_KERNEL);
	if (!guc->submission_state.guc_ids_bitmap)
		return -ENOMEM;

1225
	return 0;
1226 1227
}

1228
void intel_guc_submission_fini(struct intel_guc *guc)
1229
{
1230 1231 1232
	if (!guc->lrc_desc_pool)
		return;

1233
	guc_flush_destroyed_contexts(guc);
1234 1235
	guc_lrc_desc_pool_destroy(guc);
	i915_sched_engine_put(guc->sched_engine);
1236
	bitmap_free(guc->submission_state.guc_ids_bitmap);
1237 1238
}

1239 1240 1241
static inline void queue_request(struct i915_sched_engine *sched_engine,
				 struct i915_request *rq,
				 int prio)
1242
{
1243 1244 1245 1246
	GEM_BUG_ON(!list_empty(&rq->sched.link));
	list_add_tail(&rq->sched.link,
		      i915_sched_lookup_priolist(sched_engine, prio));
	set_bit(I915_FENCE_FLAG_PQUEUE, &rq->fence.flags);
1247
	tasklet_hi_schedule(&sched_engine->tasklet);
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
}

static int guc_bypass_tasklet_submit(struct intel_guc *guc,
				     struct i915_request *rq)
{
	int ret;

	__i915_request_submit(rq);

	trace_i915_request_in(rq, 0);

	guc_set_lrc_tail(rq);
	ret = guc_add_request(guc, rq);
	if (ret == -EBUSY)
		guc->stalled_request = rq;

1264 1265 1266
	if (unlikely(ret == -EPIPE))
		disable_submission(guc);

1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278
	return ret;
}

static void guc_submit_request(struct i915_request *rq)
{
	struct i915_sched_engine *sched_engine = rq->engine->sched_engine;
	struct intel_guc *guc = &rq->engine->gt->uc.guc;
	unsigned long flags;

	/* Will be called from irq-context when using foreign fences. */
	spin_lock_irqsave(&sched_engine->lock, flags);

1279 1280
	if (submission_disabled(guc) || guc->stalled_request ||
	    !i915_sched_engine_is_empty(sched_engine))
1281 1282 1283 1284 1285 1286 1287
		queue_request(sched_engine, rq, rq_prio(rq));
	else if (guc_bypass_tasklet_submit(guc, rq) == -EBUSY)
		tasklet_hi_schedule(&sched_engine->tasklet);

	spin_unlock_irqrestore(&sched_engine->lock, flags);
}

1288
static int new_guc_id(struct intel_guc *guc, struct intel_context *ce)
1289
{
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309
	int ret;

	GEM_BUG_ON(intel_context_is_child(ce));

	if (intel_context_is_parent(ce))
		ret = bitmap_find_free_region(guc->submission_state.guc_ids_bitmap,
					      NUMBER_MULTI_LRC_GUC_ID,
					      order_base_2(ce->parallel.number_children
							   + 1));
	else
		ret = ida_simple_get(&guc->submission_state.guc_ids,
				     NUMBER_MULTI_LRC_GUC_ID,
				     GUC_MAX_LRC_DESCRIPTORS,
				     GFP_KERNEL | __GFP_RETRY_MAYFAIL |
				     __GFP_NOWARN);
	if (unlikely(ret < 0))
		return ret;

	ce->guc_id.id = ret;
	return 0;
1310 1311 1312 1313
}

static void __release_guc_id(struct intel_guc *guc, struct intel_context *ce)
{
1314 1315
	GEM_BUG_ON(intel_context_is_child(ce));

1316
	if (!context_guc_id_invalid(ce)) {
1317 1318 1319 1320 1321 1322 1323 1324
		if (intel_context_is_parent(ce))
			bitmap_release_region(guc->submission_state.guc_ids_bitmap,
					      ce->guc_id.id,
					      order_base_2(ce->parallel.number_children
							   + 1));
		else
			ida_simple_remove(&guc->submission_state.guc_ids,
					  ce->guc_id.id);
1325
		reset_lrc_desc(guc, ce->guc_id.id);
1326 1327
		set_context_guc_id_invalid(ce);
	}
1328 1329
	if (!list_empty(&ce->guc_id.link))
		list_del_init(&ce->guc_id.link);
1330 1331 1332 1333 1334 1335
}

static void release_guc_id(struct intel_guc *guc, struct intel_context *ce)
{
	unsigned long flags;

1336
	spin_lock_irqsave(&guc->submission_state.lock, flags);
1337
	__release_guc_id(guc, ce);
1338
	spin_unlock_irqrestore(&guc->submission_state.lock, flags);
1339 1340
}

1341
static int steal_guc_id(struct intel_guc *guc, struct intel_context *ce)
1342
{
1343
	struct intel_context *cn;
1344

1345
	lockdep_assert_held(&guc->submission_state.lock);
1346 1347
	GEM_BUG_ON(intel_context_is_child(ce));
	GEM_BUG_ON(intel_context_is_parent(ce));
1348

1349
	if (!list_empty(&guc->submission_state.guc_id_list)) {
1350
		cn = list_first_entry(&guc->submission_state.guc_id_list,
1351
				      struct intel_context,
1352
				      guc_id.link);
1353

1354 1355 1356 1357
		GEM_BUG_ON(atomic_read(&cn->guc_id.ref));
		GEM_BUG_ON(context_guc_id_invalid(cn));
		GEM_BUG_ON(intel_context_is_child(cn));
		GEM_BUG_ON(intel_context_is_parent(cn));
1358

1359 1360
		list_del_init(&cn->guc_id.link);
		ce->guc_id = cn->guc_id;
1361 1362

		spin_lock(&ce->guc_state.lock);
1363
		clr_context_registered(cn);
1364 1365
		spin_unlock(&ce->guc_state.lock);

1366 1367 1368
		set_context_guc_id_invalid(cn);

		return 0;
1369 1370 1371 1372 1373
	} else {
		return -EAGAIN;
	}
}

1374
static int assign_guc_id(struct intel_guc *guc, struct intel_context *ce)
1375 1376 1377
{
	int ret;

1378
	lockdep_assert_held(&guc->submission_state.lock);
1379
	GEM_BUG_ON(intel_context_is_child(ce));
1380

1381
	ret = new_guc_id(guc, ce);
1382
	if (unlikely(ret < 0)) {
1383 1384 1385 1386
		if (intel_context_is_parent(ce))
			return -ENOSPC;

		ret = steal_guc_id(guc, ce);
1387 1388 1389 1390
		if (ret < 0)
			return ret;
	}

1391 1392 1393 1394 1395 1396 1397 1398
	if (intel_context_is_parent(ce)) {
		struct intel_context *child;
		int i = 1;

		for_each_child(ce, child)
			child->guc_id.id = ce->guc_id.id + i++;
	}

1399 1400 1401 1402 1403 1404 1405 1406 1407
	return 0;
}

#define PIN_GUC_ID_TRIES	4
static int pin_guc_id(struct intel_guc *guc, struct intel_context *ce)
{
	int ret = 0;
	unsigned long flags, tries = PIN_GUC_ID_TRIES;

1408
	GEM_BUG_ON(atomic_read(&ce->guc_id.ref));
1409 1410

try_again:
1411
	spin_lock_irqsave(&guc->submission_state.lock, flags);
1412

1413 1414
	might_lock(&ce->guc_state.lock);

1415
	if (context_guc_id_invalid(ce)) {
1416
		ret = assign_guc_id(guc, ce);
1417 1418 1419 1420
		if (ret)
			goto out_unlock;
		ret = 1;	/* Indidcates newly assigned guc_id */
	}
1421 1422 1423
	if (!list_empty(&ce->guc_id.link))
		list_del_init(&ce->guc_id.link);
	atomic_inc(&ce->guc_id.ref);
1424 1425

out_unlock:
1426
	spin_unlock_irqrestore(&guc->submission_state.lock, flags);
1427 1428

	/*
1429
	 * -EAGAIN indicates no guc_id are available, let's retire any
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
	 * outstanding requests to see if that frees up a guc_id. If the first
	 * retire didn't help, insert a sleep with the timeslice duration before
	 * attempting to retire more requests. Double the sleep period each
	 * subsequent pass before finally giving up. The sleep period has max of
	 * 100ms and minimum of 1ms.
	 */
	if (ret == -EAGAIN && --tries) {
		if (PIN_GUC_ID_TRIES - tries > 1) {
			unsigned int timeslice_shifted =
				ce->engine->props.timeslice_duration_ms <<
				(PIN_GUC_ID_TRIES - tries - 2);
			unsigned int max = min_t(unsigned int, 100,
						 timeslice_shifted);

			msleep(max_t(unsigned int, max, 1));
		}
		intel_gt_retire_requests(guc_to_gt(guc));
		goto try_again;
	}

	return ret;
}

static void unpin_guc_id(struct intel_guc *guc, struct intel_context *ce)
{
	unsigned long flags;

1457
	GEM_BUG_ON(atomic_read(&ce->guc_id.ref) < 0);
1458
	GEM_BUG_ON(intel_context_is_child(ce));
1459

1460 1461
	if (unlikely(context_guc_id_invalid(ce) ||
		     intel_context_is_parent(ce)))
1462 1463
		return;

1464
	spin_lock_irqsave(&guc->submission_state.lock, flags);
1465 1466
	if (!context_guc_id_invalid(ce) && list_empty(&ce->guc_id.link) &&
	    !atomic_read(&ce->guc_id.ref))
1467 1468 1469
		list_add_tail(&ce->guc_id.link,
			      &guc->submission_state.guc_id_list);
	spin_unlock_irqrestore(&guc->submission_state.lock, flags);
1470 1471
}

1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
static int __guc_action_register_multi_lrc(struct intel_guc *guc,
					   struct intel_context *ce,
					   u32 guc_id,
					   u32 offset,
					   bool loop)
{
	struct intel_context *child;
	u32 action[4 + MAX_ENGINE_INSTANCE];
	int len = 0;

	GEM_BUG_ON(ce->parallel.number_children > MAX_ENGINE_INSTANCE);

	action[len++] = INTEL_GUC_ACTION_REGISTER_CONTEXT_MULTI_LRC;
	action[len++] = guc_id;
	action[len++] = ce->parallel.number_children + 1;
	action[len++] = offset;
	for_each_child(ce, child) {
		offset += sizeof(struct guc_lrc_desc);
		action[len++] = offset;
	}

	return guc_submission_send_busy_loop(guc, action, len, 0, loop);
}

1496 1497
static int __guc_action_register_context(struct intel_guc *guc,
					 u32 guc_id,
1498 1499
					 u32 offset,
					 bool loop)
1500 1501 1502 1503 1504 1505 1506
{
	u32 action[] = {
		INTEL_GUC_ACTION_REGISTER_CONTEXT,
		guc_id,
		offset,
	};

1507
	return guc_submission_send_busy_loop(guc, action, ARRAY_SIZE(action),
1508
					     0, loop);
1509 1510
}

1511
static int register_context(struct intel_context *ce, bool loop)
1512 1513 1514
{
	struct intel_guc *guc = ce_to_guc(ce);
	u32 offset = intel_guc_ggtt_offset(guc, guc->lrc_desc_pool) +
1515
		ce->guc_id.id * sizeof(struct guc_lrc_desc);
1516
	int ret;
1517

1518
	GEM_BUG_ON(intel_context_is_child(ce));
1519 1520
	trace_intel_context_register(ce);

1521 1522 1523 1524 1525 1526
	if (intel_context_is_parent(ce))
		ret = __guc_action_register_multi_lrc(guc, ce, ce->guc_id.id,
						      offset, loop);
	else
		ret = __guc_action_register_context(guc, ce->guc_id.id, offset,
						    loop);
1527 1528 1529 1530
	if (likely(!ret)) {
		unsigned long flags;

		spin_lock_irqsave(&ce->guc_state.lock, flags);
1531
		set_context_registered(ce);
1532 1533
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);
	}
1534 1535

	return ret;
1536 1537 1538
}

static int __guc_action_deregister_context(struct intel_guc *guc,
1539
					   u32 guc_id)
1540 1541 1542 1543 1544 1545
{
	u32 action[] = {
		INTEL_GUC_ACTION_DEREGISTER_CONTEXT,
		guc_id,
	};

1546 1547
	return guc_submission_send_busy_loop(guc, action, ARRAY_SIZE(action),
					     G2H_LEN_DW_DEREGISTER_CONTEXT,
1548
					     true);
1549 1550
}

1551
static int deregister_context(struct intel_context *ce, u32 guc_id)
1552 1553 1554
{
	struct intel_guc *guc = ce_to_guc(ce);

1555
	GEM_BUG_ON(intel_context_is_child(ce));
1556 1557
	trace_intel_context_deregister(ce);

1558
	return __guc_action_deregister_context(guc, guc_id);
1559 1560 1561 1562 1563 1564 1565
}

static void guc_context_policy_init(struct intel_engine_cs *engine,
				    struct guc_lrc_desc *desc)
{
	desc->policy_flags = 0;

1566 1567 1568
	if (engine->flags & I915_ENGINE_WANT_FORCED_PREEMPTION)
		desc->policy_flags |= CONTEXT_POLICY_FLAG_PREEMPT_TO_IDLE;

1569 1570 1571
	/* NB: For both of these, zero means disabled. */
	desc->execution_quantum = engine->props.timeslice_duration_ms * 1000;
	desc->preemption_timeout = engine->props.preempt_timeout_ms * 1000;
1572 1573
}

1574
static int guc_lrc_desc_pin(struct intel_context *ce, bool loop)
1575 1576 1577 1578
{
	struct intel_engine_cs *engine = ce->engine;
	struct intel_runtime_pm *runtime_pm = engine->uncore->rpm;
	struct intel_guc *guc = &engine->gt->uc.guc;
1579
	u32 desc_idx = ce->guc_id.id;
1580 1581 1582
	struct guc_lrc_desc *desc;
	bool context_registered;
	intel_wakeref_t wakeref;
1583
	struct intel_context *child;
1584 1585 1586
	int ret = 0;

	GEM_BUG_ON(!engine->mask);
1587
	GEM_BUG_ON(!sched_state_is_init(ce));
1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602

	/*
	 * Ensure LRC + CT vmas are is same region as write barrier is done
	 * based on CT vma region.
	 */
	GEM_BUG_ON(i915_gem_object_is_lmem(guc->ct.vma->obj) !=
		   i915_gem_object_is_lmem(ce->ring->vma->obj));

	context_registered = lrc_desc_registered(guc, desc_idx);

	reset_lrc_desc(guc, desc_idx);
	set_lrc_desc_registered(guc, desc_idx, ce);

	desc = __get_lrc_desc(guc, desc_idx);
	desc->engine_class = engine_class_to_guc_class(engine->class);
1603
	desc->engine_submit_mask = engine->logical_mask;
1604
	desc->hw_context_desc = ce->lrc.lrca;
1605
	desc->priority = ce->guc_state.prio;
1606 1607 1608
	desc->context_flags = CONTEXT_REGISTRATION_FLAG_KMD;
	guc_context_policy_init(engine, desc);

1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
	/*
	 * If context is a parent, we need to register a process descriptor
	 * describing a work queue and register all child contexts.
	 */
	if (intel_context_is_parent(ce)) {
		struct guc_process_desc *pdesc;

		ce->parallel.guc.wqi_tail = 0;
		ce->parallel.guc.wqi_head = 0;

		desc->process_desc = i915_ggtt_offset(ce->state) +
			__get_process_desc_offset(ce);
		desc->wq_addr = i915_ggtt_offset(ce->state) +
			__get_wq_offset(ce);
		desc->wq_size = WQ_SIZE;

		pdesc = __get_process_desc(ce);
		memset(pdesc, 0, sizeof(*(pdesc)));
		pdesc->stage_id = ce->guc_id.id;
		pdesc->wq_base_addr = desc->wq_addr;
		pdesc->wq_size_bytes = desc->wq_size;
		pdesc->wq_status = WQ_STATUS_ACTIVE;

		for_each_child(ce, child) {
			desc = __get_lrc_desc(guc, child->guc_id.id);

			desc->engine_class =
				engine_class_to_guc_class(engine->class);
			desc->hw_context_desc = child->lrc.lrca;
			desc->priority = ce->guc_state.prio;
			desc->context_flags = CONTEXT_REGISTRATION_FLAG_KMD;
			guc_context_policy_init(engine, desc);
		}
	}

1644 1645 1646 1647 1648 1649 1650 1651 1652
	/*
	 * The context_lookup xarray is used to determine if the hardware
	 * context is currently registered. There are two cases in which it
	 * could be registered either the guc_id has been stolen from another
	 * context or the lrc descriptor address of this context has changed. In
	 * either case the context needs to be deregistered with the GuC before
	 * registering this context.
	 */
	if (context_registered) {
1653 1654 1655
		bool disabled;
		unsigned long flags;

1656
		trace_intel_context_steal_guc_id(ce);
1657 1658 1659 1660 1661 1662
		GEM_BUG_ON(!loop);

		/* Seal race with Reset */
		spin_lock_irqsave(&ce->guc_state.lock, flags);
		disabled = submission_disabled(guc);
		if (likely(!disabled)) {
1663 1664
			set_context_wait_for_deregister_to_register(ce);
			intel_context_get(ce);
1665 1666 1667 1668 1669
		}
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);
		if (unlikely(disabled)) {
			reset_lrc_desc(guc, desc_idx);
			return 0;	/* Will get registered later */
1670
		}
1671 1672 1673 1674 1675 1676

		/*
		 * If stealing the guc_id, this ce has the same guc_id as the
		 * context whose guc_id was stolen.
		 */
		with_intel_runtime_pm(runtime_pm, wakeref)
1677
			ret = deregister_context(ce, ce->guc_id.id);
1678
		if (unlikely(ret == -ENODEV))
1679
			ret = 0;	/* Will get registered later */
1680 1681
	} else {
		with_intel_runtime_pm(runtime_pm, wakeref)
1682
			ret = register_context(ce, loop);
1683 1684 1685
		if (unlikely(ret == -EBUSY)) {
			reset_lrc_desc(guc, desc_idx);
		} else if (unlikely(ret == -ENODEV)) {
1686 1687
			reset_lrc_desc(guc, desc_idx);
			ret = 0;	/* Will get registered later */
1688
		}
1689 1690 1691
	}

	return ret;
1692 1693
}

1694 1695 1696 1697
static int __guc_context_pre_pin(struct intel_context *ce,
				 struct intel_engine_cs *engine,
				 struct i915_gem_ww_ctx *ww,
				 void **vaddr)
1698
{
1699
	return lrc_pre_pin(ce, engine, ww, vaddr);
1700 1701
}

1702 1703 1704
static int __guc_context_pin(struct intel_context *ce,
			     struct intel_engine_cs *engine,
			     void *vaddr)
1705
{
1706 1707 1708 1709 1710 1711 1712 1713 1714
	if (i915_ggtt_offset(ce->state) !=
	    (ce->lrc.lrca & CTX_GTT_ADDRESS_MASK))
		set_bit(CONTEXT_LRCA_DIRTY, &ce->flags);

	/*
	 * GuC context gets pinned in guc_request_alloc. See that function for
	 * explaination of why.
	 */

1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
	return lrc_pin(ce, engine, vaddr);
}

static int guc_context_pre_pin(struct intel_context *ce,
			       struct i915_gem_ww_ctx *ww,
			       void **vaddr)
{
	return __guc_context_pre_pin(ce, ce->engine, ww, vaddr);
}

static int guc_context_pin(struct intel_context *ce, void *vaddr)
{
1727 1728 1729 1730 1731 1732
	int ret = __guc_context_pin(ce, ce->engine, vaddr);

	if (likely(!ret && !intel_context_is_barrier(ce)))
		intel_engine_pm_get(ce->engine);

	return ret;
1733 1734
}

1735 1736 1737 1738 1739 1740
static void guc_context_unpin(struct intel_context *ce)
{
	struct intel_guc *guc = ce_to_guc(ce);

	unpin_guc_id(guc, ce);
	lrc_unpin(ce);
1741 1742 1743

	if (likely(!intel_context_is_barrier(ce)))
		intel_engine_pm_put_async(ce->engine);
1744 1745 1746 1747 1748 1749 1750
}

static void guc_context_post_unpin(struct intel_context *ce)
{
	lrc_post_unpin(ce);
}

1751 1752 1753 1754 1755
static void __guc_context_sched_enable(struct intel_guc *guc,
				       struct intel_context *ce)
{
	u32 action[] = {
		INTEL_GUC_ACTION_SCHED_CONTEXT_MODE_SET,
1756
		ce->guc_id.id,
1757 1758 1759 1760 1761 1762 1763 1764 1765
		GUC_CONTEXT_ENABLE
	};

	trace_intel_context_sched_enable(ce);

	guc_submission_send_busy_loop(guc, action, ARRAY_SIZE(action),
				      G2H_LEN_DW_SCHED_CONTEXT_MODE_SET, true);
}

1766 1767 1768 1769 1770 1771
static void __guc_context_sched_disable(struct intel_guc *guc,
					struct intel_context *ce,
					u16 guc_id)
{
	u32 action[] = {
		INTEL_GUC_ACTION_SCHED_CONTEXT_MODE_SET,
1772
		guc_id,	/* ce->guc_id.id not stable */
1773 1774 1775 1776 1777
		GUC_CONTEXT_DISABLE
	};

	GEM_BUG_ON(guc_id == GUC_INVALID_LRC_ID);

1778
	GEM_BUG_ON(intel_context_is_child(ce));
1779
	trace_intel_context_sched_disable(ce);
1780

1781 1782
	guc_submission_send_busy_loop(guc, action, ARRAY_SIZE(action),
				      G2H_LEN_DW_SCHED_CONTEXT_MODE_SET, true);
1783 1784
}

1785 1786 1787 1788
static void guc_blocked_fence_complete(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);

1789 1790
	if (!i915_sw_fence_done(&ce->guc_state.blocked))
		i915_sw_fence_complete(&ce->guc_state.blocked);
1791 1792 1793 1794 1795
}

static void guc_blocked_fence_reinit(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);
1796
	GEM_BUG_ON(!i915_sw_fence_done(&ce->guc_state.blocked));
1797 1798 1799 1800 1801 1802

	/*
	 * This fence is always complete unless a pending schedule disable is
	 * outstanding. We arm the fence here and complete it when we receive
	 * the pending schedule disable complete message.
	 */
1803 1804 1805 1806
	i915_sw_fence_fini(&ce->guc_state.blocked);
	i915_sw_fence_reinit(&ce->guc_state.blocked);
	i915_sw_fence_await(&ce->guc_state.blocked);
	i915_sw_fence_commit(&ce->guc_state.blocked);
1807 1808
}

1809 1810 1811 1812 1813 1814
static u16 prep_context_pending_disable(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);

	set_context_pending_disable(ce);
	clr_context_enabled(ce);
1815
	guc_blocked_fence_reinit(ce);
1816
	intel_context_get(ce);
1817

1818
	return ce->guc_id.id;
1819 1820
}

1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
static struct i915_sw_fence *guc_context_block(struct intel_context *ce)
{
	struct intel_guc *guc = ce_to_guc(ce);
	unsigned long flags;
	struct intel_runtime_pm *runtime_pm = ce->engine->uncore->rpm;
	intel_wakeref_t wakeref;
	u16 guc_id;
	bool enabled;

	spin_lock_irqsave(&ce->guc_state.lock, flags);

	incr_context_blocked(ce);

	enabled = context_enabled(ce);
	if (unlikely(!enabled || submission_disabled(guc))) {
		if (enabled)
			clr_context_enabled(ce);
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);
1839
		return &ce->guc_state.blocked;
1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
	}

	/*
	 * We add +2 here as the schedule disable complete CTB handler calls
	 * intel_context_sched_disable_unpin (-2 to pin_count).
	 */
	atomic_add(2, &ce->pin_count);

	guc_id = prep_context_pending_disable(ce);

	spin_unlock_irqrestore(&ce->guc_state.lock, flags);

	with_intel_runtime_pm(runtime_pm, wakeref)
		__guc_context_sched_disable(guc, ce, guc_id);

1855
	return &ce->guc_state.blocked;
1856 1857
}

1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870
#define SCHED_STATE_MULTI_BLOCKED_MASK \
	(SCHED_STATE_BLOCKED_MASK & ~SCHED_STATE_BLOCKED)
#define SCHED_STATE_NO_UNBLOCK \
	(SCHED_STATE_MULTI_BLOCKED_MASK | \
	 SCHED_STATE_PENDING_DISABLE | \
	 SCHED_STATE_BANNED)

static bool context_cant_unblock(struct intel_context *ce)
{
	lockdep_assert_held(&ce->guc_state.lock);

	return (ce->guc_state.sched_state & SCHED_STATE_NO_UNBLOCK) ||
		context_guc_id_invalid(ce) ||
1871
		!lrc_desc_registered(ce_to_guc(ce), ce->guc_id.id) ||
1872 1873 1874
		!intel_context_is_pinned(ce);
}

1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887
static void guc_context_unblock(struct intel_context *ce)
{
	struct intel_guc *guc = ce_to_guc(ce);
	unsigned long flags;
	struct intel_runtime_pm *runtime_pm = ce->engine->uncore->rpm;
	intel_wakeref_t wakeref;
	bool enable;

	GEM_BUG_ON(context_enabled(ce));

	spin_lock_irqsave(&ce->guc_state.lock, flags);

	if (unlikely(submission_disabled(guc) ||
1888
		     context_cant_unblock(ce))) {
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
		enable = false;
	} else {
		enable = true;
		set_context_pending_enable(ce);
		set_context_enabled(ce);
		intel_context_get(ce);
	}

	decr_context_blocked(ce);

	spin_unlock_irqrestore(&ce->guc_state.lock, flags);

	if (enable) {
		with_intel_runtime_pm(runtime_pm, wakeref)
			__guc_context_sched_enable(guc, ce);
	}
}

static void guc_context_cancel_request(struct intel_context *ce,
				       struct i915_request *rq)
{
	if (i915_sw_fence_signaled(&rq->submit)) {
1911
		struct i915_sw_fence *fence;
1912

1913 1914
		intel_context_get(ce);
		fence = guc_context_block(ce);
1915 1916 1917 1918 1919 1920
		i915_sw_fence_wait(fence);
		if (!i915_request_completed(rq)) {
			__i915_request_skip(rq);
			guc_reset_state(ce, intel_ring_wrap(ce->ring, rq->head),
					true);
		}
1921 1922 1923 1924 1925 1926 1927

		/*
		 * XXX: Racey if context is reset, see comment in
		 * __guc_reset_context().
		 */
		flush_work(&ce_to_guc(ce)->ct.requests.worker);

1928
		guc_context_unblock(ce);
1929
		intel_context_put(ce);
1930 1931 1932
	}
}

1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
static void __guc_context_set_preemption_timeout(struct intel_guc *guc,
						 u16 guc_id,
						 u32 preemption_timeout)
{
	u32 action[] = {
		INTEL_GUC_ACTION_SET_CONTEXT_PREEMPTION_TIMEOUT,
		guc_id,
		preemption_timeout
	};

	intel_guc_send_busy_loop(guc, action, ARRAY_SIZE(action), 0, true);
}

static void guc_context_ban(struct intel_context *ce, struct i915_request *rq)
{
	struct intel_guc *guc = ce_to_guc(ce);
	struct intel_runtime_pm *runtime_pm =
		&ce->engine->gt->i915->runtime_pm;
	intel_wakeref_t wakeref;
	unsigned long flags;

	guc_flush_submissions(guc);

	spin_lock_irqsave(&ce->guc_state.lock, flags);
	set_context_banned(ce);

	if (submission_disabled(guc) ||
	    (!context_enabled(ce) && !context_pending_disable(ce))) {
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);

		guc_cancel_context_requests(ce);
		intel_engine_signal_breadcrumbs(ce->engine);
	} else if (!context_pending_disable(ce)) {
		u16 guc_id;

		/*
		 * We add +2 here as the schedule disable complete CTB handler
		 * calls intel_context_sched_disable_unpin (-2 to pin_count).
		 */
		atomic_add(2, &ce->pin_count);

		guc_id = prep_context_pending_disable(ce);
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);

		/*
		 * In addition to disabling scheduling, set the preemption
		 * timeout to the minimum value (1 us) so the banned context
		 * gets kicked off the HW ASAP.
		 */
		with_intel_runtime_pm(runtime_pm, wakeref) {
			__guc_context_set_preemption_timeout(guc, guc_id, 1);
			__guc_context_sched_disable(guc, ce, guc_id);
		}
	} else {
		if (!context_guc_id_invalid(ce))
			with_intel_runtime_pm(runtime_pm, wakeref)
				__guc_context_set_preemption_timeout(guc,
1990
								     ce->guc_id.id,
1991 1992 1993 1994 1995
								     1);
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);
	}
}

1996 1997 1998 1999
static void guc_context_sched_disable(struct intel_context *ce)
{
	struct intel_guc *guc = ce_to_guc(ce);
	unsigned long flags;
2000
	struct intel_runtime_pm *runtime_pm = &ce->engine->gt->i915->runtime_pm;
2001
	intel_wakeref_t wakeref;
2002
	u16 guc_id;
2003

2004 2005
	GEM_BUG_ON(intel_context_is_child(ce));

2006
	spin_lock_irqsave(&ce->guc_state.lock, flags);
2007 2008

	/*
2009 2010 2011 2012 2013
	 * We have to check if the context has been disabled by another thread,
	 * check if submssion has been disabled to seal a race with reset and
	 * finally check if any more requests have been committed to the
	 * context ensursing that a request doesn't slip through the
	 * 'context_pending_disable' fence.
2014
	 */
2015 2016
	if (unlikely(!context_enabled(ce) || submission_disabled(guc) ||
		     context_has_committed_requests(ce))) {
2017
		clr_context_enabled(ce);
2018 2019 2020
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);
		goto unpin;
	}
2021
	guc_id = prep_context_pending_disable(ce);
2022

2023 2024 2025 2026 2027 2028 2029 2030 2031 2032
	spin_unlock_irqrestore(&ce->guc_state.lock, flags);

	with_intel_runtime_pm(runtime_pm, wakeref)
		__guc_context_sched_disable(guc, ce, guc_id);

	return;
unpin:
	intel_context_sched_disable_unpin(ce);
}

2033 2034 2035
static inline void guc_lrc_desc_unpin(struct intel_context *ce)
{
	struct intel_guc *guc = ce_to_guc(ce);
2036 2037 2038
	struct intel_gt *gt = guc_to_gt(guc);
	unsigned long flags;
	bool disabled;
2039

2040
	GEM_BUG_ON(!intel_gt_pm_is_awake(gt));
2041 2042
	GEM_BUG_ON(!lrc_desc_registered(guc, ce->guc_id.id));
	GEM_BUG_ON(ce != __get_context(guc, ce->guc_id.id));
2043
	GEM_BUG_ON(context_enabled(ce));
2044

2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059
	/* Seal race with Reset */
	spin_lock_irqsave(&ce->guc_state.lock, flags);
	disabled = submission_disabled(guc);
	if (likely(!disabled)) {
		__intel_gt_pm_get(gt);
		set_context_destroyed(ce);
		clr_context_registered(ce);
	}
	spin_unlock_irqrestore(&ce->guc_state.lock, flags);
	if (unlikely(disabled)) {
		release_guc_id(guc, ce);
		__guc_context_destroy(ce);
		return;
	}

2060
	deregister_context(ce, ce->guc_id.id);
2061 2062
}

2063 2064
static void __guc_context_destroy(struct intel_context *ce)
{
2065 2066 2067 2068
	GEM_BUG_ON(ce->guc_state.prio_count[GUC_CLIENT_PRIORITY_KMD_HIGH] ||
		   ce->guc_state.prio_count[GUC_CLIENT_PRIORITY_HIGH] ||
		   ce->guc_state.prio_count[GUC_CLIENT_PRIORITY_KMD_NORMAL] ||
		   ce->guc_state.prio_count[GUC_CLIENT_PRIORITY_NORMAL]);
2069
	GEM_BUG_ON(ce->guc_state.number_committed_requests);
2070

2071 2072 2073 2074 2075 2076 2077
	lrc_fini(ce);
	intel_context_fini(ce);

	if (intel_engine_is_virtual(ce->engine)) {
		struct guc_virtual_engine *ve =
			container_of(ce, typeof(*ve), context);

2078 2079 2080
		if (ve->base.breadcrumbs)
			intel_breadcrumbs_put(ve->base.breadcrumbs);

2081 2082 2083 2084 2085 2086
		kfree(ve);
	} else {
		intel_context_free(ce);
	}
}

2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131
static void guc_flush_destroyed_contexts(struct intel_guc *guc)
{
	struct intel_context *ce, *cn;
	unsigned long flags;

	GEM_BUG_ON(!submission_disabled(guc) &&
		   guc_submission_initialized(guc));

	spin_lock_irqsave(&guc->submission_state.lock, flags);
	list_for_each_entry_safe(ce, cn,
				 &guc->submission_state.destroyed_contexts,
				 destroyed_link) {
		list_del_init(&ce->destroyed_link);
		__release_guc_id(guc, ce);
		__guc_context_destroy(ce);
	}
	spin_unlock_irqrestore(&guc->submission_state.lock, flags);
}

static void deregister_destroyed_contexts(struct intel_guc *guc)
{
	struct intel_context *ce, *cn;
	unsigned long flags;

	spin_lock_irqsave(&guc->submission_state.lock, flags);
	list_for_each_entry_safe(ce, cn,
				 &guc->submission_state.destroyed_contexts,
				 destroyed_link) {
		list_del_init(&ce->destroyed_link);
		guc_lrc_desc_unpin(ce);
	}
	spin_unlock_irqrestore(&guc->submission_state.lock, flags);
}

static void destroyed_worker_func(struct work_struct *w)
{
	struct intel_guc *guc = container_of(w, struct intel_guc,
					     submission_state.destroyed_worker);
	struct intel_gt *gt = guc_to_gt(guc);
	int tmp;

	with_intel_gt_pm(gt, tmp)
		deregister_destroyed_contexts(guc);
}

2132 2133 2134 2135 2136
static void guc_context_destroy(struct kref *kref)
{
	struct intel_context *ce = container_of(kref, typeof(*ce), ref);
	struct intel_guc *guc = ce_to_guc(ce);
	unsigned long flags;
2137
	bool destroy;
2138 2139 2140 2141

	/*
	 * If the guc_id is invalid this context has been stolen and we can free
	 * it immediately. Also can be freed immediately if the context is not
2142
	 * registered with the GuC or the GuC is in the middle of a reset.
2143
	 */
2144
	spin_lock_irqsave(&guc->submission_state.lock, flags);
2145 2146 2147 2148 2149 2150 2151 2152 2153
	destroy = submission_disabled(guc) || context_guc_id_invalid(ce) ||
		!lrc_desc_registered(guc, ce->guc_id.id);
	if (likely(!destroy)) {
		if (!list_empty(&ce->guc_id.link))
			list_del_init(&ce->guc_id.link);
		list_add_tail(&ce->destroyed_link,
			      &guc->submission_state.destroyed_contexts);
	} else {
		__release_guc_id(guc, ce);
2154
	}
2155
	spin_unlock_irqrestore(&guc->submission_state.lock, flags);
2156
	if (unlikely(destroy)) {
2157 2158 2159 2160
		__guc_context_destroy(ce);
		return;
	}

2161
	/*
2162 2163 2164
	 * We use a worker to issue the H2G to deregister the context as we can
	 * take the GT PM for the first time which isn't allowed from an atomic
	 * context.
2165
	 */
2166
	queue_work(system_unbound_wq, &guc->submission_state.destroyed_worker);
2167 2168 2169 2170 2171 2172 2173
}

static int guc_context_alloc(struct intel_context *ce)
{
	return lrc_alloc(ce, ce->engine);
}

2174 2175 2176 2177 2178 2179
static void guc_context_set_prio(struct intel_guc *guc,
				 struct intel_context *ce,
				 u8 prio)
{
	u32 action[] = {
		INTEL_GUC_ACTION_SET_CONTEXT_PRIORITY,
2180
		ce->guc_id.id,
2181 2182 2183 2184 2185
		prio,
	};

	GEM_BUG_ON(prio < GUC_CLIENT_PRIORITY_KMD_HIGH ||
		   prio > GUC_CLIENT_PRIORITY_NORMAL);
2186
	lockdep_assert_held(&ce->guc_state.lock);
2187

2188
	if (ce->guc_state.prio == prio || submission_disabled(guc) ||
2189
	    !context_registered(ce)) {
2190
		ce->guc_state.prio = prio;
2191
		return;
2192
	}
2193 2194 2195

	guc_submission_send_busy_loop(guc, action, ARRAY_SIZE(action), 0, true);

2196
	ce->guc_state.prio = prio;
2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214
	trace_intel_context_set_prio(ce);
}

static inline u8 map_i915_prio_to_guc_prio(int prio)
{
	if (prio == I915_PRIORITY_NORMAL)
		return GUC_CLIENT_PRIORITY_KMD_NORMAL;
	else if (prio < I915_PRIORITY_NORMAL)
		return GUC_CLIENT_PRIORITY_NORMAL;
	else if (prio < I915_PRIORITY_DISPLAY)
		return GUC_CLIENT_PRIORITY_HIGH;
	else
		return GUC_CLIENT_PRIORITY_KMD_HIGH;
}

static inline void add_context_inflight_prio(struct intel_context *ce,
					     u8 guc_prio)
{
2215 2216
	lockdep_assert_held(&ce->guc_state.lock);
	GEM_BUG_ON(guc_prio >= ARRAY_SIZE(ce->guc_state.prio_count));
2217

2218
	++ce->guc_state.prio_count[guc_prio];
2219 2220

	/* Overflow protection */
2221
	GEM_WARN_ON(!ce->guc_state.prio_count[guc_prio]);
2222 2223 2224 2225 2226
}

static inline void sub_context_inflight_prio(struct intel_context *ce,
					     u8 guc_prio)
{
2227 2228
	lockdep_assert_held(&ce->guc_state.lock);
	GEM_BUG_ON(guc_prio >= ARRAY_SIZE(ce->guc_state.prio_count));
2229 2230

	/* Underflow protection */
2231
	GEM_WARN_ON(!ce->guc_state.prio_count[guc_prio]);
2232

2233
	--ce->guc_state.prio_count[guc_prio];
2234 2235 2236 2237 2238 2239 2240 2241 2242 2243
}

static inline void update_context_prio(struct intel_context *ce)
{
	struct intel_guc *guc = &ce->engine->gt->uc.guc;
	int i;

	BUILD_BUG_ON(GUC_CLIENT_PRIORITY_KMD_HIGH != 0);
	BUILD_BUG_ON(GUC_CLIENT_PRIORITY_KMD_HIGH > GUC_CLIENT_PRIORITY_NORMAL);

2244
	lockdep_assert_held(&ce->guc_state.lock);
2245

2246 2247
	for (i = 0; i < ARRAY_SIZE(ce->guc_state.prio_count); ++i) {
		if (ce->guc_state.prio_count[i]) {
2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259
			guc_context_set_prio(guc, ce, i);
			break;
		}
	}
}

static inline bool new_guc_prio_higher(u8 old_guc_prio, u8 new_guc_prio)
{
	/* Lower value is higher priority */
	return new_guc_prio < old_guc_prio;
}

2260 2261 2262
static void add_to_context(struct i915_request *rq)
{
	struct intel_context *ce = rq->context;
2263 2264 2265
	u8 new_guc_prio = map_i915_prio_to_guc_prio(rq_prio(rq));

	GEM_BUG_ON(rq->guc_prio == GUC_PRIO_FINI);
2266

2267 2268
	spin_lock(&ce->guc_state.lock);
	list_move_tail(&rq->sched.link, &ce->guc_state.requests);
2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279

	if (rq->guc_prio == GUC_PRIO_INIT) {
		rq->guc_prio = new_guc_prio;
		add_context_inflight_prio(ce, rq->guc_prio);
	} else if (new_guc_prio_higher(rq->guc_prio, new_guc_prio)) {
		sub_context_inflight_prio(ce, rq->guc_prio);
		rq->guc_prio = new_guc_prio;
		add_context_inflight_prio(ce, rq->guc_prio);
	}
	update_context_prio(ce);

2280
	spin_unlock(&ce->guc_state.lock);
2281 2282
}

2283 2284
static void guc_prio_fini(struct i915_request *rq, struct intel_context *ce)
{
2285
	lockdep_assert_held(&ce->guc_state.lock);
2286 2287 2288 2289 2290 2291 2292 2293 2294

	if (rq->guc_prio != GUC_PRIO_INIT &&
	    rq->guc_prio != GUC_PRIO_FINI) {
		sub_context_inflight_prio(ce, rq->guc_prio);
		update_context_prio(ce);
	}
	rq->guc_prio = GUC_PRIO_FINI;
}

2295 2296 2297 2298
static void remove_from_context(struct i915_request *rq)
{
	struct intel_context *ce = rq->context;

2299
	spin_lock_irq(&ce->guc_state.lock);
2300 2301 2302 2303 2304 2305 2306

	list_del_init(&rq->sched.link);
	clear_bit(I915_FENCE_FLAG_PQUEUE, &rq->fence.flags);

	/* Prevent further __await_execution() registering a cb, then flush */
	set_bit(I915_FENCE_FLAG_ACTIVE, &rq->fence.flags);

2307 2308
	guc_prio_fini(rq, ce);

2309
	decr_context_committed_requests(ce);
2310

2311 2312
	spin_unlock_irq(&ce->guc_state.lock);

2313
	atomic_dec(&ce->guc_id.ref);
2314 2315 2316
	i915_request_notify_execute_cb_imm(rq);
}

2317 2318 2319 2320 2321
static const struct intel_context_ops guc_context_ops = {
	.alloc = guc_context_alloc,

	.pre_pin = guc_context_pre_pin,
	.pin = guc_context_pin,
2322 2323
	.unpin = guc_context_unpin,
	.post_unpin = guc_context_post_unpin,
2324

2325 2326
	.ban = guc_context_ban,

2327 2328
	.cancel_request = guc_context_cancel_request,

2329 2330 2331
	.enter = intel_context_enter_engine,
	.exit = intel_context_exit_engine,

2332 2333
	.sched_disable = guc_context_sched_disable,

2334
	.reset = lrc_reset,
2335
	.destroy = guc_context_destroy,
2336 2337

	.create_virtual = guc_create_virtual,
2338 2339
};

2340 2341 2342 2343 2344 2345 2346 2347
static void submit_work_cb(struct irq_work *wrk)
{
	struct i915_request *rq = container_of(wrk, typeof(*rq), submit_work);

	might_lock(&rq->engine->sched_engine->lock);
	i915_sw_fence_complete(&rq->submit);
}

2348 2349
static void __guc_signal_context_fence(struct intel_context *ce)
{
2350
	struct i915_request *rq, *rn;
2351 2352 2353

	lockdep_assert_held(&ce->guc_state.lock);

2354 2355 2356
	if (!list_empty(&ce->guc_state.fences))
		trace_intel_context_fence_release(ce);

2357 2358 2359 2360 2361 2362 2363 2364 2365
	/*
	 * Use an IRQ to ensure locking order of sched_engine->lock ->
	 * ce->guc_state.lock is preserved.
	 */
	list_for_each_entry_safe(rq, rn, &ce->guc_state.fences,
				 guc_fence_link) {
		list_del(&rq->guc_fence_link);
		irq_work_queue(&rq->submit_work);
	}
2366 2367 2368 2369 2370 2371 2372 2373

	INIT_LIST_HEAD(&ce->guc_state.fences);
}

static void guc_signal_context_fence(struct intel_context *ce)
{
	unsigned long flags;

2374 2375
	GEM_BUG_ON(intel_context_is_child(ce));

2376 2377 2378 2379 2380 2381
	spin_lock_irqsave(&ce->guc_state.lock, flags);
	clr_context_wait_for_deregister_to_register(ce);
	__guc_signal_context_fence(ce);
	spin_unlock_irqrestore(&ce->guc_state.lock, flags);
}

2382 2383
static bool context_needs_register(struct intel_context *ce, bool new_guc_id)
{
2384
	return (new_guc_id || test_bit(CONTEXT_LRCA_DIRTY, &ce->flags) ||
2385
		!lrc_desc_registered(ce_to_guc(ce), ce->guc_id.id)) &&
2386
		!submission_disabled(ce_to_guc(ce));
2387 2388
}

2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
static void guc_context_init(struct intel_context *ce)
{
	const struct i915_gem_context *ctx;
	int prio = I915_CONTEXT_DEFAULT_PRIORITY;

	rcu_read_lock();
	ctx = rcu_dereference(ce->gem_context);
	if (ctx)
		prio = ctx->sched.priority;
	rcu_read_unlock();

2400
	ce->guc_state.prio = map_i915_prio_to_guc_prio(prio);
2401 2402 2403
	set_bit(CONTEXT_GUC_INIT, &ce->flags);
}

2404
static int guc_request_alloc(struct i915_request *rq)
2405
{
2406
	struct intel_context *ce = request_to_scheduling_context(rq);
2407
	struct intel_guc *guc = ce_to_guc(ce);
2408
	unsigned long flags;
2409 2410
	int ret;

2411
	GEM_BUG_ON(!intel_context_is_pinned(rq->context));
2412 2413 2414 2415 2416 2417

	/*
	 * Flush enough space to reduce the likelihood of waiting after
	 * we start building the request - in which case we will just
	 * have to repeat work.
	 */
2418
	rq->reserved_space += GUC_REQUEST_SIZE;
2419 2420 2421 2422 2423 2424 2425 2426 2427 2428

	/*
	 * Note that after this point, we have committed to using
	 * this request as it is being used to both track the
	 * state of engine initialisation and liveness of the
	 * golden renderstate above. Think twice before you try
	 * to cancel/unwind this request now.
	 */

	/* Unconditionally invalidate GPU caches and TLBs. */
2429
	ret = rq->engine->emit_flush(rq, EMIT_INVALIDATE);
2430 2431 2432
	if (ret)
		return ret;

2433
	rq->reserved_space -= GUC_REQUEST_SIZE;
2434

2435 2436 2437
	if (unlikely(!test_bit(CONTEXT_GUC_INIT, &ce->flags)))
		guc_context_init(ce);

2438 2439 2440
	/*
	 * Call pin_guc_id here rather than in the pinning step as with
	 * dma_resv, contexts can be repeatedly pinned / unpinned trashing the
2441 2442
	 * guc_id and creating horrible race conditions. This is especially bad
	 * when guc_id are being stolen due to over subscription. By the time
2443 2444
	 * this function is reached, it is guaranteed that the guc_id will be
	 * persistent until the generated request is retired. Thus, sealing these
2445
	 * race conditions. It is still safe to fail here if guc_id are
2446 2447 2448 2449 2450 2451 2452 2453 2454
	 * exhausted and return -EAGAIN to the user indicating that they can try
	 * again in the future.
	 *
	 * There is no need for a lock here as the timeline mutex ensures at
	 * most one context can be executing this code path at once. The
	 * guc_id_ref is incremented once for every request in flight and
	 * decremented on each retire. When it is zero, a lock around the
	 * increment (in pin_guc_id) is needed to seal a race with unpin_guc_id.
	 */
2455
	if (atomic_add_unless(&ce->guc_id.ref, 1, 0))
2456
		goto out;
2457

2458 2459 2460 2461
	ret = pin_guc_id(guc, ce);	/* returns 1 if new guc_id assigned */
	if (unlikely(ret < 0))
		return ret;
	if (context_needs_register(ce, !!ret)) {
2462
		ret = guc_lrc_desc_pin(ce, true);
2463
		if (unlikely(ret)) {	/* unwind */
2464 2465 2466 2467
			if (ret == -EPIPE) {
				disable_submission(guc);
				goto out;	/* GPU will be reset */
			}
2468
			atomic_dec(&ce->guc_id.ref);
2469 2470 2471 2472
			unpin_guc_id(guc, ce);
			return ret;
		}
	}
2473

2474
	clear_bit(CONTEXT_LRCA_DIRTY, &ce->flags);
2475

2476 2477 2478
out:
	/*
	 * We block all requests on this context if a G2H is pending for a
2479 2480 2481 2482
	 * schedule disable or context deregistration as the GuC will fail a
	 * schedule enable or context registration if either G2H is pending
	 * respectfully. Once a G2H returns, the fence is released that is
	 * blocking these requests (see guc_signal_context_fence).
2483 2484
	 */
	spin_lock_irqsave(&ce->guc_state.lock, flags);
2485 2486
	if (context_wait_for_deregister_to_register(ce) ||
	    context_pending_disable(ce)) {
2487
		init_irq_work(&rq->submit_work, submit_work_cb);
2488 2489 2490 2491
		i915_sw_fence_await(&rq->submit);

		list_add_tail(&rq->guc_fence_link, &ce->guc_state.fences);
	}
2492
	incr_context_committed_requests(ce);
2493 2494
	spin_unlock_irqrestore(&ce->guc_state.lock, flags);

2495
	return 0;
2496 2497
}

2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509
static int guc_virtual_context_pre_pin(struct intel_context *ce,
				       struct i915_gem_ww_ctx *ww,
				       void **vaddr)
{
	struct intel_engine_cs *engine = guc_virtual_get_sibling(ce->engine, 0);

	return __guc_context_pre_pin(ce, engine, ww, vaddr);
}

static int guc_virtual_context_pin(struct intel_context *ce, void *vaddr)
{
	struct intel_engine_cs *engine = guc_virtual_get_sibling(ce->engine, 0);
2510 2511 2512 2513 2514 2515
	int ret = __guc_context_pin(ce, engine, vaddr);
	intel_engine_mask_t tmp, mask = ce->engine->mask;

	if (likely(!ret))
		for_each_engine_masked(engine, ce->engine->gt, mask, tmp)
			intel_engine_pm_get(engine);
2516

2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
	return ret;
}

static void guc_virtual_context_unpin(struct intel_context *ce)
{
	intel_engine_mask_t tmp, mask = ce->engine->mask;
	struct intel_engine_cs *engine;
	struct intel_guc *guc = ce_to_guc(ce);

	GEM_BUG_ON(context_enabled(ce));
	GEM_BUG_ON(intel_context_is_barrier(ce));

	unpin_guc_id(guc, ce);
	lrc_unpin(ce);

	for_each_engine_masked(engine, ce->engine->gt, mask, tmp)
		intel_engine_pm_put_async(engine);
2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569
}

static void guc_virtual_context_enter(struct intel_context *ce)
{
	intel_engine_mask_t tmp, mask = ce->engine->mask;
	struct intel_engine_cs *engine;

	for_each_engine_masked(engine, ce->engine->gt, mask, tmp)
		intel_engine_pm_get(engine);

	intel_timeline_enter(ce->timeline);
}

static void guc_virtual_context_exit(struct intel_context *ce)
{
	intel_engine_mask_t tmp, mask = ce->engine->mask;
	struct intel_engine_cs *engine;

	for_each_engine_masked(engine, ce->engine->gt, mask, tmp)
		intel_engine_pm_put(engine);

	intel_timeline_exit(ce->timeline);
}

static int guc_virtual_context_alloc(struct intel_context *ce)
{
	struct intel_engine_cs *engine = guc_virtual_get_sibling(ce->engine, 0);

	return lrc_alloc(ce, engine);
}

static const struct intel_context_ops virtual_guc_context_ops = {
	.alloc = guc_virtual_context_alloc,

	.pre_pin = guc_virtual_context_pre_pin,
	.pin = guc_virtual_context_pin,
2570
	.unpin = guc_virtual_context_unpin,
2571 2572
	.post_unpin = guc_context_post_unpin,

2573 2574
	.ban = guc_context_ban,

2575 2576
	.cancel_request = guc_context_cancel_request,

2577 2578 2579 2580 2581 2582 2583 2584 2585 2586
	.enter = guc_virtual_context_enter,
	.exit = guc_virtual_context_exit,

	.sched_disable = guc_context_sched_disable,

	.destroy = guc_context_destroy,

	.get_sibling = guc_virtual_get_sibling,
};

2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656
/* Future patches will use this function */
__maybe_unused
static int guc_parent_context_pin(struct intel_context *ce, void *vaddr)
{
	struct intel_engine_cs *engine = guc_virtual_get_sibling(ce->engine, 0);
	struct intel_guc *guc = ce_to_guc(ce);
	int ret;

	GEM_BUG_ON(!intel_context_is_parent(ce));
	GEM_BUG_ON(!intel_engine_is_virtual(ce->engine));

	ret = pin_guc_id(guc, ce);
	if (unlikely(ret < 0))
		return ret;

	return __guc_context_pin(ce, engine, vaddr);
}

/* Future patches will use this function */
__maybe_unused
static int guc_child_context_pin(struct intel_context *ce, void *vaddr)
{
	struct intel_engine_cs *engine = guc_virtual_get_sibling(ce->engine, 0);

	GEM_BUG_ON(!intel_context_is_child(ce));
	GEM_BUG_ON(!intel_engine_is_virtual(ce->engine));

	__intel_context_pin(ce->parallel.parent);
	return __guc_context_pin(ce, engine, vaddr);
}

/* Future patches will use this function */
__maybe_unused
static void guc_parent_context_unpin(struct intel_context *ce)
{
	struct intel_guc *guc = ce_to_guc(ce);

	GEM_BUG_ON(context_enabled(ce));
	GEM_BUG_ON(intel_context_is_barrier(ce));
	GEM_BUG_ON(!intel_context_is_parent(ce));
	GEM_BUG_ON(!intel_engine_is_virtual(ce->engine));

	unpin_guc_id(guc, ce);
	lrc_unpin(ce);
}

/* Future patches will use this function */
__maybe_unused
static void guc_child_context_unpin(struct intel_context *ce)
{
	GEM_BUG_ON(context_enabled(ce));
	GEM_BUG_ON(intel_context_is_barrier(ce));
	GEM_BUG_ON(!intel_context_is_child(ce));
	GEM_BUG_ON(!intel_engine_is_virtual(ce->engine));

	lrc_unpin(ce);
}

/* Future patches will use this function */
__maybe_unused
static void guc_child_context_post_unpin(struct intel_context *ce)
{
	GEM_BUG_ON(!intel_context_is_child(ce));
	GEM_BUG_ON(!intel_context_is_pinned(ce->parallel.parent));
	GEM_BUG_ON(!intel_engine_is_virtual(ce->engine));

	lrc_post_unpin(ce);
	intel_context_unpin(ce->parallel.parent);
}

2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712
static bool
guc_irq_enable_breadcrumbs(struct intel_breadcrumbs *b)
{
	struct intel_engine_cs *sibling;
	intel_engine_mask_t tmp, mask = b->engine_mask;
	bool result = false;

	for_each_engine_masked(sibling, b->irq_engine->gt, mask, tmp)
		result |= intel_engine_irq_enable(sibling);

	return result;
}

static void
guc_irq_disable_breadcrumbs(struct intel_breadcrumbs *b)
{
	struct intel_engine_cs *sibling;
	intel_engine_mask_t tmp, mask = b->engine_mask;

	for_each_engine_masked(sibling, b->irq_engine->gt, mask, tmp)
		intel_engine_irq_disable(sibling);
}

static void guc_init_breadcrumbs(struct intel_engine_cs *engine)
{
	int i;

	/*
	 * In GuC submission mode we do not know which physical engine a request
	 * will be scheduled on, this creates a problem because the breadcrumb
	 * interrupt is per physical engine. To work around this we attach
	 * requests and direct all breadcrumb interrupts to the first instance
	 * of an engine per class. In addition all breadcrumb interrupts are
	 * enabled / disabled across an engine class in unison.
	 */
	for (i = 0; i < MAX_ENGINE_INSTANCE; ++i) {
		struct intel_engine_cs *sibling =
			engine->gt->engine_class[engine->class][i];

		if (sibling) {
			if (engine->breadcrumbs != sibling->breadcrumbs) {
				intel_breadcrumbs_put(engine->breadcrumbs);
				engine->breadcrumbs =
					intel_breadcrumbs_get(sibling->breadcrumbs);
			}
			break;
		}
	}

	if (engine->breadcrumbs) {
		engine->breadcrumbs->engine_mask |= engine->mask;
		engine->breadcrumbs->irq_enable = guc_irq_enable_breadcrumbs;
		engine->breadcrumbs->irq_disable = guc_irq_disable_breadcrumbs;
	}
}

2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725
static void guc_bump_inflight_request_prio(struct i915_request *rq,
					   int prio)
{
	struct intel_context *ce = rq->context;
	u8 new_guc_prio = map_i915_prio_to_guc_prio(prio);

	/* Short circuit function */
	if (prio < I915_PRIORITY_NORMAL ||
	    rq->guc_prio == GUC_PRIO_FINI ||
	    (rq->guc_prio != GUC_PRIO_INIT &&
	     !new_guc_prio_higher(rq->guc_prio, new_guc_prio)))
		return;

2726
	spin_lock(&ce->guc_state.lock);
2727 2728 2729 2730 2731 2732 2733
	if (rq->guc_prio != GUC_PRIO_FINI) {
		if (rq->guc_prio != GUC_PRIO_INIT)
			sub_context_inflight_prio(ce, rq->guc_prio);
		rq->guc_prio = new_guc_prio;
		add_context_inflight_prio(ce, rq->guc_prio);
		update_context_prio(ce);
	}
2734
	spin_unlock(&ce->guc_state.lock);
2735 2736 2737 2738 2739 2740
}

static void guc_retire_inflight_request_prio(struct i915_request *rq)
{
	struct intel_context *ce = rq->context;

2741
	spin_lock(&ce->guc_state.lock);
2742
	guc_prio_fini(rq, ce);
2743
	spin_unlock(&ce->guc_state.lock);
2744 2745
}

2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776
static void sanitize_hwsp(struct intel_engine_cs *engine)
{
	struct intel_timeline *tl;

	list_for_each_entry(tl, &engine->status_page.timelines, engine_link)
		intel_timeline_reset_seqno(tl);
}

static void guc_sanitize(struct intel_engine_cs *engine)
{
	/*
	 * Poison residual state on resume, in case the suspend didn't!
	 *
	 * We have to assume that across suspend/resume (or other loss
	 * of control) that the contents of our pinned buffers has been
	 * lost, replaced by garbage. Since this doesn't always happen,
	 * let's poison such state so that we more quickly spot when
	 * we falsely assume it has been preserved.
	 */
	if (IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM))
		memset(engine->status_page.addr, POISON_INUSE, PAGE_SIZE);

	/*
	 * The kernel_context HWSP is stored in the status_page. As above,
	 * that may be lost on resume/initialisation, and so we need to
	 * reset the value in the HWSP.
	 */
	sanitize_hwsp(engine);

	/* And scrub the dirty cachelines for the HWSP */
	clflush_cache_range(engine->status_page.addr, PAGE_SIZE);
2777 2778

	intel_engine_reset_pinned_contexts(engine);
2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813
}

static void setup_hwsp(struct intel_engine_cs *engine)
{
	intel_engine_set_hwsp_writemask(engine, ~0u); /* HWSTAM */

	ENGINE_WRITE_FW(engine,
			RING_HWS_PGA,
			i915_ggtt_offset(engine->status_page.vma));
}

static void start_engine(struct intel_engine_cs *engine)
{
	ENGINE_WRITE_FW(engine,
			RING_MODE_GEN7,
			_MASKED_BIT_ENABLE(GEN11_GFX_DISABLE_LEGACY_MODE));

	ENGINE_WRITE_FW(engine, RING_MI_MODE, _MASKED_BIT_DISABLE(STOP_RING));
	ENGINE_POSTING_READ(engine, RING_MI_MODE);
}

static int guc_resume(struct intel_engine_cs *engine)
{
	assert_forcewakes_active(engine->uncore, FORCEWAKE_ALL);

	intel_mocs_init_engine(engine);

	intel_breadcrumbs_reset(engine->breadcrumbs);

	setup_hwsp(engine);
	start_engine(engine);

	return 0;
}

2814 2815 2816 2817 2818
static bool guc_sched_engine_disabled(struct i915_sched_engine *sched_engine)
{
	return !sched_engine->tasklet.callback;
}

2819 2820
static void guc_set_default_submission(struct intel_engine_cs *engine)
{
2821
	engine->submit_request = guc_submit_request;
2822 2823
}

2824 2825 2826 2827 2828
static inline void guc_kernel_context_pin(struct intel_guc *guc,
					  struct intel_context *ce)
{
	if (context_guc_id_invalid(ce))
		pin_guc_id(guc, ce);
2829
	guc_lrc_desc_pin(ce, true);
2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853
}

static inline void guc_init_lrc_mapping(struct intel_guc *guc)
{
	struct intel_gt *gt = guc_to_gt(guc);
	struct intel_engine_cs *engine;
	enum intel_engine_id id;

	/* make sure all descriptors are clean... */
	xa_destroy(&guc->context_lookup);

	/*
	 * Some contexts might have been pinned before we enabled GuC
	 * submission, so we need to add them to the GuC bookeeping.
	 * Also, after a reset the of the GuC we want to make sure that the
	 * information shared with GuC is properly reset. The kernel LRCs are
	 * not attached to the gem_context, so they need to be added separately.
	 *
	 * Note: we purposefully do not check the return of guc_lrc_desc_pin,
	 * because that function can only fail if a reset is just starting. This
	 * is at the end of reset so presumably another reset isn't happening
	 * and even it did this code would be run again.
	 */

2854 2855 2856 2857 2858 2859 2860
	for_each_engine(engine, gt, id) {
		struct intel_context *ce;

		list_for_each_entry(ce, &engine->pinned_contexts_list,
				    pinned_contexts_link)
			guc_kernel_context_pin(guc, ce);
	}
2861 2862
}

2863
static void guc_release(struct intel_engine_cs *engine)
2864
{
2865
	engine->sanitize = NULL; /* no longer in control, nothing to sanitize */
2866

2867 2868 2869 2870
	intel_engine_cleanup_common(engine);
	lrc_fini_wa_ctx(engine);
}

2871 2872 2873 2874 2875 2876 2877 2878 2879
static void virtual_guc_bump_serial(struct intel_engine_cs *engine)
{
	struct intel_engine_cs *e;
	intel_engine_mask_t tmp, mask = engine->mask;

	for_each_engine_masked(e, engine->gt, mask, tmp)
		e->serial++;
}

2880 2881 2882 2883 2884 2885 2886 2887
static void guc_default_vfuncs(struct intel_engine_cs *engine)
{
	/* Default vfuncs which can be overridden by each engine. */

	engine->resume = guc_resume;

	engine->cops = &guc_context_ops;
	engine->request_alloc = guc_request_alloc;
2888 2889
	engine->add_active_request = add_to_context;
	engine->remove_active_request = remove_from_context;
2890

2891
	engine->sched_engine->schedule = i915_schedule;
2892

2893 2894 2895 2896
	engine->reset.prepare = guc_reset_nop;
	engine->reset.rewind = guc_rewind_nop;
	engine->reset.cancel = guc_reset_nop;
	engine->reset.finish = guc_reset_nop;
2897

2898 2899 2900
	engine->emit_flush = gen8_emit_flush_xcs;
	engine->emit_init_breadcrumb = gen8_emit_init_breadcrumb;
	engine->emit_fini_breadcrumb = gen8_emit_fini_breadcrumb_xcs;
2901
	if (GRAPHICS_VER(engine->i915) >= 12) {
2902 2903 2904 2905
		engine->emit_fini_breadcrumb = gen12_emit_fini_breadcrumb_xcs;
		engine->emit_flush = gen12_emit_flush_xcs;
	}
	engine->set_default_submission = guc_set_default_submission;
2906 2907

	engine->flags |= I915_ENGINE_HAS_PREEMPTION;
2908
	engine->flags |= I915_ENGINE_HAS_TIMESLICES;
2909 2910 2911 2912 2913 2914 2915 2916 2917 2918

	/*
	 * TODO: GuC supports timeslicing and semaphores as well, but they're
	 * handled by the firmware so some minor tweaks are required before
	 * enabling.
	 *
	 * engine->flags |= I915_ENGINE_HAS_SEMAPHORES;
	 */

	engine->emit_bb_start = gen8_emit_bb_start;
2919
}
2920

2921 2922
static void rcs_submission_override(struct intel_engine_cs *engine)
{
2923
	switch (GRAPHICS_VER(engine->i915)) {
2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935
	case 12:
		engine->emit_flush = gen12_emit_flush_rcs;
		engine->emit_fini_breadcrumb = gen12_emit_fini_breadcrumb_rcs;
		break;
	case 11:
		engine->emit_flush = gen11_emit_flush_rcs;
		engine->emit_fini_breadcrumb = gen11_emit_fini_breadcrumb_rcs;
		break;
	default:
		engine->emit_flush = gen8_emit_flush_rcs;
		engine->emit_fini_breadcrumb = gen8_emit_fini_breadcrumb_rcs;
		break;
2936
	}
2937 2938
}

2939 2940 2941
static inline void guc_default_irqs(struct intel_engine_cs *engine)
{
	engine->irq_keep_mask = GT_RENDER_USER_INTERRUPT;
2942
	intel_engine_set_irq_handler(engine, cs_irq_handler);
2943 2944
}

2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955
static void guc_sched_engine_destroy(struct kref *kref)
{
	struct i915_sched_engine *sched_engine =
		container_of(kref, typeof(*sched_engine), ref);
	struct intel_guc *guc = sched_engine->private_data;

	guc->sched_engine = NULL;
	tasklet_kill(&sched_engine->tasklet); /* flush the callback */
	kfree(sched_engine);
}

2956 2957 2958
int intel_guc_submission_setup(struct intel_engine_cs *engine)
{
	struct drm_i915_private *i915 = engine->i915;
2959
	struct intel_guc *guc = &engine->gt->uc.guc;
2960 2961 2962 2963 2964

	/*
	 * The setup relies on several assumptions (e.g. irqs always enabled)
	 * that are only valid on gen11+
	 */
2965
	GEM_BUG_ON(GRAPHICS_VER(i915) < 11);
2966

2967 2968 2969 2970 2971 2972
	if (!guc->sched_engine) {
		guc->sched_engine = i915_sched_engine_create(ENGINE_VIRTUAL);
		if (!guc->sched_engine)
			return -ENOMEM;

		guc->sched_engine->schedule = i915_schedule;
2973
		guc->sched_engine->disabled = guc_sched_engine_disabled;
2974
		guc->sched_engine->private_data = guc;
2975
		guc->sched_engine->destroy = guc_sched_engine_destroy;
2976 2977 2978 2979
		guc->sched_engine->bump_inflight_request_prio =
			guc_bump_inflight_request_prio;
		guc->sched_engine->retire_inflight_request_prio =
			guc_retire_inflight_request_prio;
2980 2981 2982 2983 2984
		tasklet_setup(&guc->sched_engine->tasklet,
			      guc_submission_tasklet);
	}
	i915_sched_engine_put(engine->sched_engine);
	engine->sched_engine = i915_sched_engine_get(guc->sched_engine);
2985 2986 2987

	guc_default_vfuncs(engine);
	guc_default_irqs(engine);
2988
	guc_init_breadcrumbs(engine);
2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003

	if (engine->class == RENDER_CLASS)
		rcs_submission_override(engine);

	lrc_init_wa_ctx(engine);

	/* Finally, take ownership and responsibility for cleanup! */
	engine->sanitize = guc_sanitize;
	engine->release = guc_release;

	return 0;
}

void intel_guc_submission_enable(struct intel_guc *guc)
{
3004
	guc_init_lrc_mapping(guc);
3005 3006
}

3007
void intel_guc_submission_disable(struct intel_guc *guc)
3008
{
3009
	/* Note: By the time we're here, GuC may have already been reset */
3010
}
3011

3012 3013 3014 3015 3016 3017 3018
static bool __guc_submission_supported(struct intel_guc *guc)
{
	/* GuC submission is unavailable for pre-Gen11 */
	return intel_guc_is_supported(guc) &&
	       GRAPHICS_VER(guc_to_gt(guc)->i915) >= 11;
}

3019
static bool __guc_submission_selected(struct intel_guc *guc)
3020
{
3021 3022
	struct drm_i915_private *i915 = guc_to_gt(guc)->i915;

3023
	if (!intel_guc_submission_is_supported(guc))
3024 3025
		return false;

3026
	return i915->params.enable_guc & ENABLE_GUC_SUBMISSION;
3027 3028 3029 3030
}

void intel_guc_submission_init_early(struct intel_guc *guc)
{
3031
	guc->submission_supported = __guc_submission_supported(guc);
3032
	guc->submission_selected = __guc_submission_selected(guc);
3033
}
3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052

static inline struct intel_context *
g2h_context_lookup(struct intel_guc *guc, u32 desc_idx)
{
	struct intel_context *ce;

	if (unlikely(desc_idx >= GUC_MAX_LRC_DESCRIPTORS)) {
		drm_err(&guc_to_gt(guc)->i915->drm,
			"Invalid desc_idx %u", desc_idx);
		return NULL;
	}

	ce = __get_context(guc, desc_idx);
	if (unlikely(!ce)) {
		drm_err(&guc_to_gt(guc)->i915->drm,
			"Context is NULL, desc_idx %u", desc_idx);
		return NULL;
	}

3053 3054 3055 3056 3057 3058
	if (unlikely(intel_context_is_child(ce))) {
		drm_err(&guc_to_gt(guc)->i915->drm,
			"Context is child, desc_idx %u", desc_idx);
		return NULL;
	}

3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077
	return ce;
}

int intel_guc_deregister_done_process_msg(struct intel_guc *guc,
					  const u32 *msg,
					  u32 len)
{
	struct intel_context *ce;
	u32 desc_idx = msg[0];

	if (unlikely(len < 1)) {
		drm_err(&guc_to_gt(guc)->i915->drm, "Invalid length %u", len);
		return -EPROTO;
	}

	ce = g2h_context_lookup(guc, desc_idx);
	if (unlikely(!ce))
		return -EPROTO;

3078 3079
	trace_intel_context_deregister_done(ce);

3080 3081 3082 3083 3084 3085 3086
#ifdef CONFIG_DRM_I915_SELFTEST
	if (unlikely(ce->drop_deregister)) {
		ce->drop_deregister = false;
		return 0;
	}
#endif

3087 3088 3089 3090 3091 3092 3093 3094 3095 3096
	if (context_wait_for_deregister_to_register(ce)) {
		struct intel_runtime_pm *runtime_pm =
			&ce->engine->gt->i915->runtime_pm;
		intel_wakeref_t wakeref;

		/*
		 * Previous owner of this guc_id has been deregistered, now safe
		 * register this context.
		 */
		with_intel_runtime_pm(runtime_pm, wakeref)
3097
			register_context(ce, true);
3098
		guc_signal_context_fence(ce);
3099 3100 3101
		intel_context_put(ce);
	} else if (context_destroyed(ce)) {
		/* Context has been destroyed */
3102
		intel_gt_pm_put_async(guc_to_gt(guc));
3103
		release_guc_id(guc, ce);
3104
		__guc_context_destroy(ce);
3105 3106
	}

3107 3108
	decr_outstanding_submission_g2h(guc);

3109 3110
	return 0;
}
3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132

int intel_guc_sched_done_process_msg(struct intel_guc *guc,
				     const u32 *msg,
				     u32 len)
{
	struct intel_context *ce;
	unsigned long flags;
	u32 desc_idx = msg[0];

	if (unlikely(len < 2)) {
		drm_err(&guc_to_gt(guc)->i915->drm, "Invalid length %u", len);
		return -EPROTO;
	}

	ce = g2h_context_lookup(guc, desc_idx);
	if (unlikely(!ce))
		return -EPROTO;

	if (unlikely(context_destroyed(ce) ||
		     (!context_pending_enable(ce) &&
		     !context_pending_disable(ce)))) {
		drm_err(&guc_to_gt(guc)->i915->drm,
3133
			"Bad context sched_state 0x%x, desc_idx %u",
3134 3135 3136 3137
			ce->guc_state.sched_state, desc_idx);
		return -EPROTO;
	}

3138 3139
	trace_intel_context_sched_done(ce);

3140
	if (context_pending_enable(ce)) {
3141 3142 3143 3144 3145 3146 3147
#ifdef CONFIG_DRM_I915_SELFTEST
		if (unlikely(ce->drop_schedule_enable)) {
			ce->drop_schedule_enable = false;
			return 0;
		}
#endif

3148
		spin_lock_irqsave(&ce->guc_state.lock, flags);
3149
		clr_context_pending_enable(ce);
3150
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);
3151
	} else if (context_pending_disable(ce)) {
3152 3153
		bool banned;

3154 3155 3156 3157 3158 3159 3160
#ifdef CONFIG_DRM_I915_SELFTEST
		if (unlikely(ce->drop_schedule_disable)) {
			ce->drop_schedule_disable = false;
			return 0;
		}
#endif

3161 3162 3163 3164 3165 3166 3167
		/*
		 * Unpin must be done before __guc_signal_context_fence,
		 * otherwise a race exists between the requests getting
		 * submitted + retired before this unpin completes resulting in
		 * the pin_count going to zero and the context still being
		 * enabled.
		 */
3168 3169 3170
		intel_context_sched_disable_unpin(ce);

		spin_lock_irqsave(&ce->guc_state.lock, flags);
3171 3172
		banned = context_banned(ce);
		clr_context_banned(ce);
3173
		clr_context_pending_disable(ce);
3174
		__guc_signal_context_fence(ce);
3175
		guc_blocked_fence_complete(ce);
3176
		spin_unlock_irqrestore(&ce->guc_state.lock, flags);
3177 3178 3179 3180 3181

		if (banned) {
			guc_cancel_context_requests(ce);
			intel_engine_signal_breadcrumbs(ce->engine);
		}
3182 3183
	}

3184
	decr_outstanding_submission_g2h(guc);
3185 3186 3187 3188
	intel_context_put(ce);

	return 0;
}
3189

3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203
static void capture_error_state(struct intel_guc *guc,
				struct intel_context *ce)
{
	struct intel_gt *gt = guc_to_gt(guc);
	struct drm_i915_private *i915 = gt->i915;
	struct intel_engine_cs *engine = __context_to_physical_engine(ce);
	intel_wakeref_t wakeref;

	intel_engine_set_hung_context(engine, ce);
	with_intel_runtime_pm(&i915->runtime_pm, wakeref)
		i915_capture_error_state(gt, engine->mask);
	atomic_inc(&i915->gpu_error.reset_engine_count[engine->uabi_class]);
}

3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215
static void guc_context_replay(struct intel_context *ce)
{
	struct i915_sched_engine *sched_engine = ce->engine->sched_engine;

	__guc_reset_context(ce, true);
	tasklet_hi_schedule(&sched_engine->tasklet);
}

static void guc_handle_context_reset(struct intel_guc *guc,
				     struct intel_context *ce)
{
	trace_intel_context_reset(ce);
3216

3217 3218 3219 3220 3221 3222
	/*
	 * XXX: Racey if request cancellation has occurred, see comment in
	 * __guc_reset_context().
	 */
	if (likely(!intel_context_is_banned(ce) &&
		   !context_blocked(ce))) {
3223 3224 3225
		capture_error_state(guc, ce);
		guc_context_replay(ce);
	}
3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248
}

int intel_guc_context_reset_process_msg(struct intel_guc *guc,
					const u32 *msg, u32 len)
{
	struct intel_context *ce;
	int desc_idx;

	if (unlikely(len != 1)) {
		drm_err(&guc_to_gt(guc)->i915->drm, "Invalid length %u", len);
		return -EPROTO;
	}

	desc_idx = msg[0];
	ce = g2h_context_lookup(guc, desc_idx);
	if (unlikely(!ce))
		return -EPROTO;

	guc_handle_context_reset(guc, ce);

	return 0;
}

3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291
static struct intel_engine_cs *
guc_lookup_engine(struct intel_guc *guc, u8 guc_class, u8 instance)
{
	struct intel_gt *gt = guc_to_gt(guc);
	u8 engine_class = guc_class_to_engine_class(guc_class);

	/* Class index is checked in class converter */
	GEM_BUG_ON(instance > MAX_ENGINE_INSTANCE);

	return gt->engine_class[engine_class][instance];
}

int intel_guc_engine_failure_process_msg(struct intel_guc *guc,
					 const u32 *msg, u32 len)
{
	struct intel_engine_cs *engine;
	u8 guc_class, instance;
	u32 reason;

	if (unlikely(len != 3)) {
		drm_err(&guc_to_gt(guc)->i915->drm, "Invalid length %u", len);
		return -EPROTO;
	}

	guc_class = msg[0];
	instance = msg[1];
	reason = msg[2];

	engine = guc_lookup_engine(guc, guc_class, instance);
	if (unlikely(!engine)) {
		drm_err(&guc_to_gt(guc)->i915->drm,
			"Invalid engine %d:%d", guc_class, instance);
		return -EPROTO;
	}

	intel_gt_handle_error(guc_to_gt(guc), engine->mask,
			      I915_ERROR_CAPTURE,
			      "GuC failed to reset %s (reason=0x%08x)\n",
			      engine->name, reason);

	return 0;
}

3292 3293 3294 3295 3296 3297
void intel_guc_find_hung_context(struct intel_engine_cs *engine)
{
	struct intel_guc *guc = &engine->gt->uc.guc;
	struct intel_context *ce;
	struct i915_request *rq;
	unsigned long index;
3298
	unsigned long flags;
3299 3300 3301 3302 3303

	/* Reset called during driver load? GuC not yet initialised! */
	if (unlikely(!guc_submission_initialized(guc)))
		return;

3304
	xa_lock_irqsave(&guc->context_lookup, flags);
3305
	xa_for_each(&guc->context_lookup, index, ce) {
3306
		if (!kref_get_unless_zero(&ce->ref))
3307 3308
			continue;

3309 3310 3311 3312 3313
		xa_unlock(&guc->context_lookup);

		if (!intel_context_is_pinned(ce))
			goto next;

3314 3315
		if (intel_engine_is_virtual(ce->engine)) {
			if (!(ce->engine->mask & engine->mask))
3316
				goto next;
3317 3318
		} else {
			if (ce->engine != engine)
3319
				goto next;
3320 3321
		}

3322
		list_for_each_entry(rq, &ce->guc_state.requests, sched.link) {
3323 3324 3325 3326 3327 3328
			if (i915_test_request_state(rq) != I915_REQUEST_ACTIVE)
				continue;

			intel_engine_set_hung_context(engine, ce);

			/* Can only cope with one hang at a time... */
3329 3330 3331
			intel_context_put(ce);
			xa_lock(&guc->context_lookup);
			goto done;
3332
		}
3333 3334 3335
next:
		intel_context_put(ce);
		xa_lock(&guc->context_lookup);
3336
	}
3337 3338
done:
	xa_unlock_irqrestore(&guc->context_lookup, flags);
3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353
}

void intel_guc_dump_active_requests(struct intel_engine_cs *engine,
				    struct i915_request *hung_rq,
				    struct drm_printer *m)
{
	struct intel_guc *guc = &engine->gt->uc.guc;
	struct intel_context *ce;
	unsigned long index;
	unsigned long flags;

	/* Reset called during driver load? GuC not yet initialised! */
	if (unlikely(!guc_submission_initialized(guc)))
		return;

3354
	xa_lock_irqsave(&guc->context_lookup, flags);
3355
	xa_for_each(&guc->context_lookup, index, ce) {
3356
		if (!kref_get_unless_zero(&ce->ref))
3357 3358
			continue;

3359 3360 3361 3362 3363
		xa_unlock(&guc->context_lookup);

		if (!intel_context_is_pinned(ce))
			goto next;

3364 3365
		if (intel_engine_is_virtual(ce->engine)) {
			if (!(ce->engine->mask & engine->mask))
3366
				goto next;
3367 3368
		} else {
			if (ce->engine != engine)
3369
				goto next;
3370 3371
		}

3372 3373
		spin_lock(&ce->guc_state.lock);
		intel_engine_dump_active_requests(&ce->guc_state.requests,
3374
						  hung_rq, m);
3375
		spin_unlock(&ce->guc_state.lock);
3376 3377 3378 3379

next:
		intel_context_put(ce);
		xa_lock(&guc->context_lookup);
3380
	}
3381
	xa_unlock_irqrestore(&guc->context_lookup, flags);
3382 3383
}

3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406
void intel_guc_submission_print_info(struct intel_guc *guc,
				     struct drm_printer *p)
{
	struct i915_sched_engine *sched_engine = guc->sched_engine;
	struct rb_node *rb;
	unsigned long flags;

	if (!sched_engine)
		return;

	drm_printf(p, "GuC Number Outstanding Submission G2H: %u\n",
		   atomic_read(&guc->outstanding_submission_g2h));
	drm_printf(p, "GuC tasklet count: %u\n\n",
		   atomic_read(&sched_engine->tasklet.count));

	spin_lock_irqsave(&sched_engine->lock, flags);
	drm_printf(p, "Requests in GuC submit tasklet:\n");
	for (rb = rb_first_cached(&sched_engine->queue); rb; rb = rb_next(rb)) {
		struct i915_priolist *pl = to_priolist(rb);
		struct i915_request *rq;

		priolist_for_each_request(rq, pl)
			drm_printf(p, "guc_id=%u, seqno=%llu\n",
3407
				   rq->context->guc_id.id,
3408 3409 3410 3411 3412 3413
				   rq->fence.seqno);
	}
	spin_unlock_irqrestore(&sched_engine->lock, flags);
	drm_printf(p, "\n");
}

3414 3415 3416 3417 3418
static inline void guc_log_context_priority(struct drm_printer *p,
					    struct intel_context *ce)
{
	int i;

3419
	drm_printf(p, "\t\tPriority: %d\n", ce->guc_state.prio);
3420 3421 3422 3423
	drm_printf(p, "\t\tNumber Requests (lower index == higher priority)\n");
	for (i = GUC_CLIENT_PRIORITY_KMD_HIGH;
	     i < GUC_CLIENT_PRIORITY_NUM; ++i) {
		drm_printf(p, "\t\tNumber requests in priority band[%d]: %d\n",
3424
			   i, ce->guc_state.prio_count[i]);
3425 3426 3427 3428
	}
	drm_printf(p, "\n");
}

3429 3430 3431 3432 3433
void intel_guc_submission_print_context_info(struct intel_guc *guc,
					     struct drm_printer *p)
{
	struct intel_context *ce;
	unsigned long index;
3434
	unsigned long flags;
3435

3436
	xa_lock_irqsave(&guc->context_lookup, flags);
3437
	xa_for_each(&guc->context_lookup, index, ce) {
3438
		drm_printf(p, "GuC lrc descriptor %u:\n", ce->guc_id.id);
3439 3440 3441 3442 3443 3444 3445 3446 3447 3448
		drm_printf(p, "\tHW Context Desc: 0x%08x\n", ce->lrc.lrca);
		drm_printf(p, "\t\tLRC Head: Internal %u, Memory %u\n",
			   ce->ring->head,
			   ce->lrc_reg_state[CTX_RING_HEAD]);
		drm_printf(p, "\t\tLRC Tail: Internal %u, Memory %u\n",
			   ce->ring->tail,
			   ce->lrc_reg_state[CTX_RING_TAIL]);
		drm_printf(p, "\t\tContext Pin Count: %u\n",
			   atomic_read(&ce->pin_count));
		drm_printf(p, "\t\tGuC ID Ref Count: %u\n",
3449
			   atomic_read(&ce->guc_id.ref));
3450 3451
		drm_printf(p, "\t\tSchedule State: 0x%x\n\n",
			   ce->guc_state.sched_state);
3452 3453

		guc_log_context_priority(p, ce);
3454
	}
3455
	xa_unlock_irqrestore(&guc->context_lookup, flags);
3456
}
3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487

static struct intel_context *
guc_create_virtual(struct intel_engine_cs **siblings, unsigned int count)
{
	struct guc_virtual_engine *ve;
	struct intel_guc *guc;
	unsigned int n;
	int err;

	ve = kzalloc(sizeof(*ve), GFP_KERNEL);
	if (!ve)
		return ERR_PTR(-ENOMEM);

	guc = &siblings[0]->gt->uc.guc;

	ve->base.i915 = siblings[0]->i915;
	ve->base.gt = siblings[0]->gt;
	ve->base.uncore = siblings[0]->uncore;
	ve->base.id = -1;

	ve->base.uabi_class = I915_ENGINE_CLASS_INVALID;
	ve->base.instance = I915_ENGINE_CLASS_INVALID_VIRTUAL;
	ve->base.uabi_instance = I915_ENGINE_CLASS_INVALID_VIRTUAL;
	ve->base.saturated = ALL_ENGINES;

	snprintf(ve->base.name, sizeof(ve->base.name), "virtual");

	ve->base.sched_engine = i915_sched_engine_get(guc->sched_engine);

	ve->base.cops = &virtual_guc_context_ops;
	ve->base.request_alloc = guc_request_alloc;
3488
	ve->base.bump_serial = virtual_guc_bump_serial;
3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507

	ve->base.submit_request = guc_submit_request;

	ve->base.flags = I915_ENGINE_IS_VIRTUAL;

	intel_context_init(&ve->context, &ve->base);

	for (n = 0; n < count; n++) {
		struct intel_engine_cs *sibling = siblings[n];

		GEM_BUG_ON(!is_power_of_2(sibling->mask));
		if (sibling->mask & ve->base.mask) {
			DRM_DEBUG("duplicate %s entry in load balancer\n",
				  sibling->name);
			err = -EINVAL;
			goto err_put;
		}

		ve->base.mask |= sibling->mask;
3508
		ve->base.logical_mask |= sibling->logical_mask;
3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521

		if (n != 0 && ve->base.class != sibling->class) {
			DRM_DEBUG("invalid mixing of engine class, sibling %d, already %d\n",
				  sibling->class, ve->base.class);
			err = -EINVAL;
			goto err_put;
		} else if (n == 0) {
			ve->base.class = sibling->class;
			ve->base.uabi_class = sibling->uabi_class;
			snprintf(ve->base.name, sizeof(ve->base.name),
				 "v%dx%d", ve->base.class, count);
			ve->base.context_size = sibling->context_size;

3522 3523 3524 3525
			ve->base.add_active_request =
				sibling->add_active_request;
			ve->base.remove_active_request =
				sibling->remove_active_request;
3526 3527 3528 3529 3530 3531 3532 3533
			ve->base.emit_bb_start = sibling->emit_bb_start;
			ve->base.emit_flush = sibling->emit_flush;
			ve->base.emit_init_breadcrumb =
				sibling->emit_init_breadcrumb;
			ve->base.emit_fini_breadcrumb =
				sibling->emit_fini_breadcrumb;
			ve->base.emit_fini_breadcrumb_dw =
				sibling->emit_fini_breadcrumb_dw;
3534 3535
			ve->base.breadcrumbs =
				intel_breadcrumbs_get(sibling->breadcrumbs);
3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563

			ve->base.flags |= sibling->flags;

			ve->base.props.timeslice_duration_ms =
				sibling->props.timeslice_duration_ms;
			ve->base.props.preempt_timeout_ms =
				sibling->props.preempt_timeout_ms;
		}
	}

	return &ve->context;

err_put:
	intel_context_put(&ve->context);
	return ERR_PTR(err);
}

bool intel_guc_virtual_engine_has_heartbeat(const struct intel_engine_cs *ve)
{
	struct intel_engine_cs *engine;
	intel_engine_mask_t tmp, mask = ve->mask;

	for_each_engine_masked(engine, ve->gt, mask, tmp)
		if (READ_ONCE(engine->props.heartbeat_interval_ms))
			return true;

	return false;
}
3564 3565 3566 3567

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